From 62de5aa9def7e8617b5c390fdce5f9a71d34df6a Mon Sep 17 00:00:00 2001 From: Zephyron Date: Fri, 17 Jan 2025 15:16:15 +1000 Subject: 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. --- src/android/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/android/build.gradle.kts') 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 } -- cgit v1.2.3