summaryrefslogtreecommitdiff
path: root/src/android/build.gradle.kts
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.org>2025-01-17 15:16:15 +1000
committerZephyron <zephyron@citron-emu.org>2025-01-17 15:16:15 +1000
commit62de5aa9def7e8617b5c390fdce5f9a71d34df6a (patch)
tree891275d3531c19e7ec5b4ed35fd5eef57ad0eb3b /src/android/build.gradle.kts
parent43170513b6f28a81c14b4ff4a4f45b0aff739197 (diff)
Downgrade Android SDK and build tools
- Reduce compileSdkVersion and targetSdk from 35 to 34 - Change NDK version to 26.1.10909125 - Downgrade Android Gradle Plugin from 8.8.0 to 8.1.2 - Add androidx.constraintlayout dependency These changes improve compatibility with current Android development environment and add necessary layout support.
Diffstat (limited to 'src/android/build.gradle.kts')
-rw-r--r--src/android/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/android/build.gradle.kts b/src/android/build.gradle.kts
index b5ebbf59d..b77906ed6 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.8.0" apply false
- id("com.android.library") version "8.8.0" 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
}