2016-08-13 06:11:29 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2018-02-23 19:37:09 +00:00
|
|
|
google()
|
2018-04-11 03:08:42 +00:00
|
|
|
jcenter()
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-11-11 21:41:35 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
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'
|
|
|
|
|
2020-12-11 18:17:43 +00:00
|
|
|
appVersionCode = 498
|
|
|
|
appVersionName = '0.9.1'
|
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()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|