Examples: Android: update to AGP 9.2.0 to support Gradle 9.6.0.

This commit is contained in:
ocornut
2026-07-02 14:26:46 +02:00
parent e9ea19086b
commit 6824e2c2e4
4 changed files with 8 additions and 10 deletions

View File

@@ -1,6 +1,5 @@
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
}
android {
@@ -25,9 +24,6 @@ android {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '11'
}
externalNativeBuild {
cmake {
path file('../../CMakeLists.txt')

View File

@@ -1,6 +1,6 @@
[versions]
agp = "8.12.0"
kotlin = "2.0.21"
agp = "9.2.0"
kotlin = "2.3.21"
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }