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

@ -2,6 +2,14 @@
An Android Xposed module to remove sponsored messages of Telegram
### Support clients
- **Official** org.telegram.messenger
- **Official** org.telegram.messenger.web
- **NekoX** nekox.messenger
- **Nekogram** tw.nekomimi.nekogram
- **Plus Messenger** org.telegram.plus
## License
This project is licensed under the [GNU General Public Licence, version 3](https://choosealicense.com/licenses/gpl-3.0/).

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 {

View file

@ -17,3 +17,6 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
appVerName=21.11.10
appVerCode=202111100