Files
shattered-pixel-dungeon-web…/build.gradle
Evan Debenham 4f9bf8cc7f v3.2.3: last minute Android fixes and re-upped version code for Android:
- fixed crashes on Android 9 and 10 by swapping to 'shortEdges' cutout mode ('always' cutout display mode wasn't present in these versions)
- upped fullscreen check to Android 9+, assume navbar exists in prior versions
- fixed navbar inset always being ignored in Android 9-14
2025-09-01 00:19:01 -04:00

38 lines
920 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.11.1'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 867
appVersionName = '3.2.3'
appJavaCompatibility = JavaVersion.VERSION_11
appAndroidCompileSDK = 35 //Android 15
appAndroidMinSDK = 21 //Android 5.0
appAndroidTargetSDK = 35 //Android 15
gdxVersion = '1.13.6-SNAPSHOT' //using snapshot as 1.13.5 has issues with Android R8
gdxControllersVersion = '2.2.4'
robovmVersion = '2.3.23'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://central.sonatype.com/repository/maven-snapshots/' }
}
}