Fetched repo updates and use a newer gdx-teavm version

This commit is contained in:
2025-09-14 17:10:52 +03:00
360 changed files with 18615 additions and 5308 deletions

View File

@@ -2,12 +2,9 @@ buildscript {
repositories {
google()
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw")
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.9.1'
classpath 'com.android.tools.build:gradle:8.11.1'
}
}
@@ -17,30 +14,28 @@ allprojects {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 846
appVersionName = '3.1.0'
appVersionCode = 868
appVersionName = '3.2.3'
appJavaCompatibility = JavaVersion.VERSION_1_8
appJavaCompatibility = JavaVersion.VERSION_11
appAndroidCompileSDK = 35 //Android 15
appAndroidMinSDK = 14 //Android 4.0
//significant layout management changes required for API 35+ as edge-to-edge is forced on
//will do this at the same time as dropping support for Android 4.4- (later in 2025)
appAndroidTargetSDK = 34 //Android 14
appAndroidMinSDK = 21 //Android 5.0
appAndroidTargetSDK = 35 //Android 15
gdxVersion = '1.12.1'
gdxControllersVersion = '2.2.4-SNAPSHOT'
robovmVersion = '2.3.21'
gdxVersion = '1.13.5'
gdxControllersVersion = '2.2.4'
robovmVersion = '2.3.23'
gdxTeaVMVersion = '1.0.5'
teaVMVersion = '0.11.0'
gdxTeaVMVersion = '1.2.4'
teaVMVersion = '0.12.0'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://central.sonatype.com/repository/maven-snapshots/' }
}
}