Magic_Ling_Pixel_Dungeon/build.gradle
Evan Debenham 7140736104 v0.9.4 is now v1.0.0, and Shattered will now use semantic versioning!
This is due to a requirement by Apple I just discovered, and because Shattered's impending release on iOS is a good milestone for v1.0.0.

Future updates will follow the major.minor.patch format, so next patch is 1.0.1, next minor update is 1.1.0, next major update is 2.0.0.
2021-08-15 19:47:20 -04:00

38 lines
882 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.13'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 563
appVersionName = '1.0.0'
appJavaCompatibility = JavaVersion.VERSION_1_8
appAndroidCompileSDK = 30 //TODO update to 31 once it is out of preview
appAndroidMinSDK = 14
appAndroidTargetSDK = 31
gdxVersion = '1.10.0'
robovmVersion = '2.3.13'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}