v2.3.1: updated Android target SDK

This commit is contained in:
Evan Debenham
2024-01-23 15:25:20 -05:00
parent 4056c48545
commit be7f2dcc0e
+3 -2
View File
@@ -5,6 +5,7 @@ buildscript {
} }
dependencies { dependencies {
//the R8 version bundled with AGP 8.1.0+ causes crashes on very old Android versions //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' classpath 'com.android.tools.build:gradle:8.0.2'
} }
} }
@@ -20,9 +21,9 @@ allprojects {
appJavaCompatibility = JavaVersion.VERSION_1_8 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 appAndroidMinSDK = 14
appAndroidTargetSDK = 33 appAndroidTargetSDK = 34
gdxVersion = '1.12.1' gdxVersion = '1.12.1'
gdxControllersVersion = '2.2.4-SNAPSHOT' gdxControllersVersion = '2.2.4-SNAPSHOT'