From 9b0d2a12525a1a8b85d31b625e310909c4c495a3 Mon Sep 17 00:00:00 2001 From: Lokesh Jain Date: Fri, 19 Jul 2024 15:36:16 +0530 Subject: [PATCH] Update AGP version and Java compatibility The version of Android Gradle Plugin (AGP) has been updated from 7.4.2 to 8.5.1 in the gradle.properties file. Additionally, the source and target Java compatibility have been changed from version 17 to version 21 in the build.gradle file. --- android/build.gradle | 4 ++-- android/gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 83cccb8..f1a1755 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -20,8 +20,8 @@ android { compileSdkVersion 34 compileOptions { - sourceCompatibility JavaVersion.VERSION_17 - targetCompatibility JavaVersion.VERSION_17 + sourceCompatibility JavaVersion.VERSION_21 + targetCompatibility JavaVersion.VERSION_21 } sourceSets { diff --git a/android/gradle.properties b/android/gradle.properties index 6d30e1f..dc511a8 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true -AGPVersion=7.4.2 +AGPVersion=8.5.1 KotlinVersion=1.9.23 \ No newline at end of file