2016-08-13 06:11:29 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2023-07-22 19:11:00 +00:00
|
|
|
mavenCentral()
|
|
|
|
google()
|
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'
|
2023-02-09 02:57:52 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.3.15'
|
2023-07-09 06:17:01 +00:00
|
|
|
|
2023-03-15 09:30:00 +00:00
|
|
|
//noinspection GradleDependency
|
2023-02-09 02:57:52 +00:00
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
|
2016-08-13 06:11:29 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-14 03:08:34 +00:00
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
|
|
|
ext {
|
2022-06-06 04:30:07 +00:00
|
|
|
appName = 'Magic Ling Pixel Dungeon'
|
|
|
|
appPackageName = 'com.ansdomagiclingpixeldungeon.ling'
|
2019-07-15 01:01:40 +00:00
|
|
|
|
2023-09-08 19:16:30 +00:00
|
|
|
appVersionCode =907000
|
|
|
|
appVersionName = '0.6.5.0-Alpha1'
|
2019-07-14 19:50:20 +00:00
|
|
|
|
2023-05-11 11:58:16 +00:00
|
|
|
appJavaCompatibility = JavaVersion.VERSION_11
|
2019-10-26 17:21:05 +00:00
|
|
|
|
2023-08-08 07:42:14 +00:00
|
|
|
appAndroidCompileSDK = 33
|
2022-08-18 14:20:37 +00:00
|
|
|
appAndroidMinSDK = 19
|
2023-08-08 07:42:14 +00:00
|
|
|
appAndroidTargetSDK = 33
|
2019-07-30 20:50:40 +00:00
|
|
|
|
2022-02-18 17:08:27 +00:00
|
|
|
gdxControllersVersion = '2.2.1'
|
2022-06-06 04:30:07 +00:00
|
|
|
|
|
|
|
gdxVersion = '1.10.0'
|
2019-07-14 03:08:34 +00:00
|
|
|
}
|
|
|
|
version = appVersionName
|
|
|
|
|
|
|
|
repositories {
|
2023-07-22 19:11:00 +00:00
|
|
|
mavenCentral()
|
|
|
|
google()
|
2019-07-14 03:08:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|