From 78357565f11f5b51fb39e7fbb59e1cfa42f2912b Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 20 Oct 2024 14:09:19 -0400 Subject: [PATCH] v3.0.0: updated AGP and removed explicit R8 version --- build.gradle | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index e9382f2f0..04381a2bb 100644 --- a/build.gradle +++ b/build.gradle @@ -7,10 +7,7 @@ buildscript { } } dependencies { - //gradle version packaged with AGP 8.5 causes crashes on Android 4.4- - //this won't be needed once the bundled R8 version is 8.7.11+ (should happen with AGP 8.6) - classpath 'com.android.tools:r8:8.7.11' - classpath 'com.android.tools.build:gradle:8.5.2' + classpath 'com.android.tools.build:gradle:8.7.1' } } @@ -25,7 +22,7 @@ allprojects { appJavaCompatibility = JavaVersion.VERSION_1_8 - appAndroidCompileSDK = 33 //compile SDK is still 33 atm as we're sticking with AGP 8.0.2 + appAndroidCompileSDK = 34 appAndroidMinSDK = 14 appAndroidTargetSDK = 34