Files
shattered-pixel-dungeon-web…/build.gradle
Evan Debenham 22790c406e v2.0.1: updated changelog & version for (hopefully) final v2.0.1 release
v2.0.1 got so many re-releases because it sat in beta for a while, and various new issues kept popping up, only the final release of v2.0.1 actually went public. If I do this again in future I'll probably just assign proper beta version codes to the non-final releases.
2023-03-29 13:46:42 -04:00

38 lines
814 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 696
appVersionName = '2.0.1'
appJavaCompatibility = JavaVersion.VERSION_1_8
appAndroidCompileSDK = 33
appAndroidMinSDK = 14
appAndroidTargetSDK = 33
gdxVersion = '1.11.0'
gdxControllersVersion = '2.2.3-SNAPSHOT'
robovmVersion = '2.3.18'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}