Magic_Ling_Pixel_Dungeon/build.gradle

38 lines
882 B
Groovy
Raw Normal View History

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
2021-09-03 20:45:58 +00:00
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.13'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
2021-08-31 22:58:56 +00:00
appVersionCode = 574
appVersionName = '1.0.3'
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'
2021-09-03 20:45:58 +00:00
robovmVersion = '2.3.14'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}