diff --git a/build.gradle b/build.gradle index 735b45326..798fe26b5 100644 --- a/build.gradle +++ b/build.gradle @@ -5,6 +5,7 @@ buildscript { } dependencies { //the R8 version bundled with AGP 8.1.0+ causes crashes on very old Android versions + //This affects ICS and Lollipop at least, maybe also KitKat classpath 'com.android.tools.build:gradle:8.0.2' } } @@ -20,9 +21,9 @@ allprojects { appJavaCompatibility = JavaVersion.VERSION_1_8 - appAndroidCompileSDK = 33 + appAndroidCompileSDK = 33 //compile SDK is still 33 atm as we're sticking with AGP 8.0.2 appAndroidMinSDK = 14 - appAndroidTargetSDK = 33 + appAndroidTargetSDK = 34 gdxVersion = '1.12.1' gdxControllersVersion = '2.2.4-SNAPSHOT'