2016-08-13 06:11:29 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2018-02-23 19:37:09 +00:00
|
|
|
google()
|
2021-05-05 02:47:51 +00:00
|
|
|
mavenCentral()
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-05-05 02:47:51 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.0'
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-14 03:08:34 +00:00
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
|
|
|
ext {
|
2019-07-15 01:01:40 +00:00
|
|
|
appName = 'Shattered Pixel Dungeon'
|
|
|
|
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
|
|
|
|
|
2021-03-22 04:32:24 +00:00
|
|
|
appVersionCode = 532
|
2021-03-20 20:16:42 +00:00
|
|
|
appVersionName = '0.9.2b'
|
2019-07-14 19:50:20 +00:00
|
|
|
|
2020-06-05 20:09:24 +00:00
|
|
|
appJavaCompatibility = JavaVersion.VERSION_1_8
|
2019-10-26 17:21:05 +00:00
|
|
|
|
2020-08-16 17:16:33 +00:00
|
|
|
appAndroidCompileSDK = 30
|
2019-07-14 19:50:20 +00:00
|
|
|
appAndroidMinSDK = 9
|
2020-08-16 17:16:33 +00:00
|
|
|
appAndroidTargetSDK = 30
|
2019-07-30 20:50:40 +00:00
|
|
|
|
|
|
|
gdxVersion = '1.9.10'
|
2019-07-14 03:08:34 +00:00
|
|
|
}
|
|
|
|
version = appVersionName
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-05-05 02:47:51 +00:00
|
|
|
mavenCentral()
|
2019-07-14 03:08:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|