37 lines
771 B
Groovy
37 lines
771 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
//FIXME the version of R8 coming with gradle plugin 4.0.0 causes serious problems
|
|
//noinspection GradleDependency
|
|
classpath 'com.android.tools.build:gradle:3.6.4'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
|
|
ext {
|
|
appName = 'Shattered Pixel Dungeon'
|
|
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
|
|
|
|
appVersionCode = 448
|
|
appVersionName = '0.8.2'
|
|
|
|
appJavaCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
appAndroidCompileSDK = 30
|
|
appAndroidMinSDK = 9
|
|
appAndroidTargetSDK = 30
|
|
|
|
gdxVersion = '1.9.10'
|
|
}
|
|
version = appVersionName
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
} |