summaryrefslogtreecommitdiff
path: root/src/android/build.gradle.kts
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.orgq>2025-03-03 16:34:35 +1000
committerZephyron <zephyron@citron-emu.orgq>2025-03-03 16:34:35 +1000
commitdc9fbcc893f8c0a9a33397479425c11fdee9e9c5 (patch)
tree04b658992c78503681a3db1053f8e37676e82402 /src/android/build.gradle.kts
parentb1d5d4e5be8306326196527320a56b3ccf095711 (diff)
Android: Downgrade build dependencies and SDK versions
- Revert Android Gradle plugin from 8.8.1 to 8.1.2 - Downgrade Kotlin version from 2.1.20-RC to 1.9.20 - Lower Java/JVM target from 21 to 17 - Reduce CMake version from 3.31.5 to 3.22.1 - Update various Android dependencies to stable versions: - Navigation Safe Args plugin to 2.6.0 - ktlint to 0.47.1 - Play Publisher plugin to 3.8.6 - Remove custom APK naming scheme - Fix CMake boolean arguments (OFF -> 0) - Remove citron copyright header
Diffstat (limited to 'src/android/build.gradle.kts')
-rw-r--r--src/android/build.gradle.kts9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/android/build.gradle.kts b/src/android/build.gradle.kts
index 88b32aaab..b77906ed6 100644
--- a/src/android/build.gradle.kts
+++ b/src/android/build.gradle.kts
@@ -1,12 +1,11 @@
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
-// SPDX-FileCopyrightText: 2025 citron Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
- id("com.android.application") version "8.8.1" apply false
- id("com.android.library") version "8.8.1" apply false
- id("org.jetbrains.kotlin.android") version "2.1.20-RC" apply false
+ id("com.android.application") version "8.1.2" apply false
+ id("com.android.library") version "8.1.2" apply false
+ id("org.jetbrains.kotlin.android") version "1.9.20" apply false
}
tasks.register("clean").configure {
@@ -18,6 +17,6 @@ buildscript {
google()
}
dependencies {
- classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.8.7")
+ classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0")
}
}