2019-02-12 03:13:16 -06:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2020-08-11 16:30:26 -05:00
|
|
|
buildDir = "@abs_top_builddir@/android/build"
|
2019-02-12 03:13:16 -06:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2023-08-22 01:53:53 -05:00
|
|
|
mavenCentral()
|
2019-02-12 03:13:16 -06:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-08-22 01:53:53 -05:00
|
|
|
// before updating make sure https://issuetracker.google.com/issues/293294923 is fixed
|
|
|
|
classpath 'com.android.tools.build:gradle:3.6.4'
|
2019-02-12 03:13:16 -06:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2023-08-22 01:53:53 -05:00
|
|
|
mavenCentral()
|
2019-02-12 03:13:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-22 01:58:06 -05:00
|
|
|
tasks.register('clean', Delete) {
|
2019-02-12 03:13:16 -06:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2020-06-01 16:40:21 -05:00
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
clean.dependsOn(':lib:clean')
|
|
|
|
}
|