7de9a8b207
Sadly version info is no longer in the manifest, so it's 'final commit' now instead of 'manifest commit'.
31 lines
554 B
Groovy
31 lines
554 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.4.1'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
|
|
ext {
|
|
appName = 'Shattered Pixel Dungeon'
|
|
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
|
|
|
|
appVersionCode = 356
|
|
appVersionName = '0.7.4'
|
|
|
|
appAndroidCompileSDK = 28
|
|
appAndroidMinSDK = 9
|
|
appAndroidTargetSDK = 28
|
|
}
|
|
version = appVersionName
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
} |