Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
shatyuka committed Nov 10, 2021
1 parent 05f2bf3 commit 8c9d2a8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
12 changes: 10 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
5 changes: 4 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
android.enableJetifier=true

appVerName=21.11.10
appVerCode=202111100

0 comments on commit 8c9d2a8

Please sign in to comment.