Bump version

This commit is contained in:
Shatyuka 2021-11-10 14:55:41 +08:00
parent 05f2bf3055
commit 8c9d2a8c5a
3 changed files with 22 additions and 3 deletions

View file

@ -9,8 +9,16 @@ android {
applicationId "com.shatyuka.killergram"
minSdk 16
targetSdk 31
versionCode 1
versionName "1.0"
versionCode appVerCode.toInteger()
versionName appVerName
}
applicationVariants.all { variant ->
variant.resValue "string", "app_version", variant.versionName
variant.outputs.all { output ->
if (variant.buildType.name == 'release') {
outputFileName = "Killergram_${defaultConfig.versionName}.apk"
}
}
}
buildTypes {