Magic_Ling_Pixel_Dungeon/build.gradle

35 lines
642 B
Groovy
Raw Normal View History

buildscript {
repositories {
google()
2018-04-11 03:08:42 +00:00
jcenter()
}
dependencies {
2021-02-13 17:47:39 +00:00
classpath 'com.android.tools.build:gradle:4.1.2'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
2021-03-10 23:18:41 +00:00
appVersionCode = 524
appVersionName = '0.9.2a'
appJavaCompatibility = JavaVersion.VERSION_1_8
appAndroidCompileSDK = 30
appAndroidMinSDK = 9
appAndroidTargetSDK = 30
gdxVersion = '1.9.10'
}
version = appVersionName
repositories {
google()
jcenter()
}
}