41 lines
1.0 KiB
Groovy
41 lines
1.0 KiB
Groovy
// 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:4.1.1"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
ext {
|
|
asnrt_version = "2020.07"
|
|
coregtdm_version = "0.9.1-SNAPSHOT"
|
|
// gtdm_version = "0.9.1-SNAPSHOT"
|
|
// commons_io_version = "2.6"
|
|
// commons_logging_version = "1.2"
|
|
// junit_version = "4.13.2"
|
|
lombok_Version = "1.18.22"
|
|
|
|
// adb = 'D:/Dev/Android/sdk/platform-tools/adb.exe'
|
|
// androidDataPath = '/sdcard/Android/data'
|
|
// localMavenRepo = new File(System.getProperty('user.home'), '.m2/repository').absolutePath
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|