2020-03-04 18:05:03 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2020-03-19 18:22:08 +08:00
|
|
|
mavenCentral()
|
2020-03-04 18:05:03 +08:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-02-01 15:57:50 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.2'
|
2020-08-05 16:06:16 +08:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
|
2020-10-21 21:15:02 +08:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.1"
|
2020-08-05 16:06:16 +08:00
|
|
|
classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0'
|
2020-03-04 18:05:03 +08:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2020-03-11 03:15:13 +08:00
|
|
|
maven { url 'https://jitpack.io' }
|
2020-03-04 18:05:03 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|