Magic_Ling_Pixel_Dungeon/build.gradle
Evan Debenham 7de9a8b207 v0.7.4: final commit
Sadly version info is no longer in the manifest, so it's 'final commit' now instead of 'manifest commit'.
2019-07-18 16:13:03 -04:00

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()
}
}