Update Android API 35 (#3874)

This commit is contained in:
Dat Dang
2025-07-18 10:15:25 +07:00
committed by GitHub
parent 6f87058459
commit 78cb93ef1c
19 changed files with 191 additions and 128 deletions
+25
View File
@@ -3,6 +3,31 @@ allprojects {
google()
mavenCentral()
}
subprojects {
afterEvaluate { project ->
if (project.hasProperty('android')) {
project.android {
if (namespace == null) {
namespace project.group
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
compileSdk 35
}
}
}
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = "17"
}
}
}
rootProject.buildDir = '../build'