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-12-30 02:09:12 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.4'
|
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'
|
|
|
|
|
2022-04-01 05:20:40 +00:00
|
|
|
appVersionCode = 612
|
|
|
|
appVersionName = '1.2.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
|
|
|
|
2021-10-16 18:27:41 +00:00
|
|
|
appAndroidCompileSDK = 31
|
2021-06-24 00:29:13 +00:00
|
|
|
appAndroidMinSDK = 14
|
2021-07-22 19:45:58 +00:00
|
|
|
appAndroidTargetSDK = 31
|
2019-07-30 20:50:40 +00:00
|
|
|
|
2021-06-24 00:29:13 +00:00
|
|
|
gdxVersion = '1.10.0'
|
2022-02-18 17:08:27 +00:00
|
|
|
gdxControllersVersion = '2.2.1'
|
2021-09-03 20:45:58 +00:00
|
|
|
robovmVersion = '2.3.14'
|
2019-07-14 03:08:34 +00:00
|
|
|
}
|
|
|
|
version = appVersionName
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-05-05 02:47:51 +00:00
|
|
|
mavenCentral()
|
2021-06-26 02:45:09 +00:00
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
|
2019-07-14 03:08:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|