From aa8f87ed7346535f39d2bb2c8316d2b957f2f4cb Mon Sep 17 00:00:00 2001 From: Izzy Date: Mon, 8 Dec 2025 04:20:58 -0500 Subject: [PATCH] Update build.gradle.kts --- src/android/app/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index fa0cea90..5b993158 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -46,7 +46,7 @@ val cemuDataFilesFolder = "../../../bin" android { namespace = "com.izzy2lost.weeu" compileSdk = 36 - ndkVersion = "29.0.14206865" + ndkVersion = "28.2.13676358" defaultConfig { applicationId = "com.izzy2lost.weeu" minSdk = 31 @@ -102,8 +102,8 @@ android { } compileOptions { - sourceCompatibility(JavaVersion.VERSION_17) - targetCompatibility(JavaVersion.VERSION_17) + sourceCompatibility(JavaVersion.VERSION_21) + targetCompatibility(JavaVersion.VERSION_21) } externalNativeBuild { @@ -151,7 +151,7 @@ android { } kotlinOptions { - jvmTarget = "17" + jvmTarget = "21" } }