| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- google()
- jcenter()
-
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.4.0'
- classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
- }
- allprojects {
- repositories {
- google()
- jcenter()
- mavenCentral()
- maven {url "https://jitpack.io"}
- maven {url 'https://maven.google.com'}
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
- ext {
- // Sdk and tools
- targetSdkVersion = 28
- compileSdkVersion = 28
- buildToolsVersion = '28.0.3'
- // Google Support
- supportLibraryVersion = '28.0.0'
- constraintLayoutVersion = '1.1.3'
- junitVersion = '4.12'
- }
|