Bump version
This commit is contained in:
parent
05f2bf3055
commit
8c9d2a8c5a
3 changed files with 22 additions and 3 deletions
|
@ -2,6 +2,14 @@
|
||||||
|
|
||||||
An Android Xposed module to remove sponsored messages of Telegram
|
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
|
## License
|
||||||
|
|
||||||
This project is licensed under the [GNU General Public Licence, version 3](https://choosealicense.com/licenses/gpl-3.0/).
|
This project is licensed under the [GNU General Public Licence, version 3](https://choosealicense.com/licenses/gpl-3.0/).
|
||||||
|
|
|
@ -9,8 +9,16 @@ android {
|
||||||
applicationId "com.shatyuka.killergram"
|
applicationId "com.shatyuka.killergram"
|
||||||
minSdk 16
|
minSdk 16
|
||||||
targetSdk 31
|
targetSdk 31
|
||||||
versionCode 1
|
versionCode appVerCode.toInteger()
|
||||||
versionName "1.0"
|
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 {
|
buildTypes {
|
||||||
|
|
|
@ -16,4 +16,7 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
||||||
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
# Automatically convert third-party libraries to use AndroidX
|
# Automatically convert third-party libraries to use AndroidX
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
|
||||||
|
appVerName=21.11.10
|
||||||
|
appVerCode=202111100
|
||||||
|
|
Loading…
Add table
Reference in a new issue