| 123456789101112131415161718192021222324252627282930313233 |
- allprojects {
- ext {
- compileSdkVersion = 34
- applicationId = "com.atmob.abroad_location"
- minSdkVersion = 23
- targetSdkVersion = 33
- }
- repositories {
- google()
- mavenCentral()
- maven {
- credentials {
- username "$atmob_maven_username"
- password "$atmob_maven_password"
- }
- allowInsecureProtocol = true
- url "$atmob_maven_url/repository/android-group/"
- }
- }
- }
- rootProject.buildDir = "../build"
- subprojects {
- project.buildDir = "${rootProject.buildDir}/${project.name}"
- }
- subprojects {
- project.evaluationDependsOn(":app")
- }
- tasks.register("clean", Delete) {
- delete rootProject.buildDir
- }
|