diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-01-27 00:47:43 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-01-27 00:47:43 +1000 |
commit | c5a2689ceff33343a8be623bdd1687486db78123 (patch) | |
tree | 282b26bb9b367f5eebb7a27966759486b0781f7a /src/android/build.gradle.kts | |
parent | f380744c61bcce41c64bcc4c2b65b7aa07227a96 (diff) |
android: Update Gradle and Java version requirements
Updates Android build configuration to use newer versions:
- Upgrade Java/JVM target from 17 to 21
- Update Android Gradle Plugin from 8.1.2 to 8.8.0
These changes modernize the Android build system to use the latest LTS
version of Java and the most recent stable Android Gradle Plugin.
This enables access to newer language features and build optimizations
while maintaining compatibility with modern Android development tools.
Diffstat (limited to 'src/android/build.gradle.kts')
-rw-r--r-- | src/android/build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/android/build.gradle.kts b/src/android/build.gradle.kts index b77906ed6..b5ebbf59d 100644 --- a/src/android/build.gradle.kts +++ b/src/android/build.gradle.kts @@ -3,8 +3,8 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.1.2" apply false - id("com.android.library") version "8.1.2" apply false + id("com.android.application") version "8.8.0" apply false + id("com.android.library") version "8.8.0" apply false id("org.jetbrains.kotlin.android") version "1.9.20" apply false } |