Preliminary commits for synchronizing MagicLing to the latest version of SHPD 1.2.3 Although it's still a lot of work...
37 lines
698 B
Groovy
37 lines
698 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.0.4'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
|
|
ext {
|
|
appName = 'Magic Ling Pixel Dungeon'
|
|
appPackageName = 'com.ansdomagiclingpixeldungeon.ling'
|
|
|
|
appVersionCode =13030
|
|
appVersionName = '0.6.0.0-Beta1'
|
|
|
|
appJavaCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
appAndroidCompileSDK = 30
|
|
appAndroidMinSDK = 14
|
|
appAndroidTargetSDK = 30
|
|
|
|
gdxControllersVersion = '2.2.1'
|
|
|
|
gdxVersion = '1.10.0'
|
|
}
|
|
version = appVersionName
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
} |