You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
Kotlin
52 lines
1.1 KiB
Kotlin
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
maven { url = uri("https://developer.huawei.com/repo/") }
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:8.9.1")
|
|
classpath("com.huawei.agconnect:agcp:1.9.1.304")
|
|
}
|
|
}
|
|
|
|
configurations.all {
|
|
resolutionStrategy.force("androidx.appcompat:appcompat:1.3.0")
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://developer.huawei.com/repo/") }
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = file("../build")
|
|
|
|
subprojects {
|
|
afterEvaluate {
|
|
if (plugins.hasPlugin("com.android.application") ||
|
|
plugins.hasPlugin("com.android.library")) {
|
|
extensions.configure<com.android.build.gradle.BaseExtension> {
|
|
compileSdkVersion(36)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
project.buildDir = file("${rootProject.buildDir}/${project.name}")
|
|
}
|
|
|
|
subprojects {
|
|
project.evaluationDependsOn(":app")
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|
|
|