Magic_Ling_Pixel_Dungeon/build.gradle
Evan Debenham 7b08b4d5bd v0.9.4: added iOS module!
Note that this commit includes several changes made iteratively over time, from TestFlight 1.0 to 1.5
2021-08-08 18:03:38 -04:00

38 lines
837 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.13'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 554
appVersionName = '0.9.3c'
appJavaCompatibility = JavaVersion.VERSION_1_8
appAndroidCompileSDK = 30
appAndroidMinSDK = 14
appAndroidTargetSDK = 30
gdxVersion = '1.10.0'
robovmVersion = '2.3.13'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}