Skip to content

Commit

Permalink
Taskbar 6.2.1 (release 2)
Browse files Browse the repository at this point in the history
* Recompile 6.2.1 without ProGuard optimizations, to fix crashes from users upgrading from previous versions
  • Loading branch information
farmerbb committed Sep 19, 2024
1 parent de6eac2 commit 0fc156e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ android {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
// NOTE: Do not use 'proguard-android-optimize.txt' as it breaks the mapping overrides
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
manifestPlaceholders = [appName: "@string/tb_app_name"]

Expand Down
2 changes: 1 addition & 1 deletion app/src/androidx86/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* HomeActivity is enabled by default
* Certain activities and receivers are not exposed
-->
<manifest android:versionCode="205"
<manifest android:versionCode="206"
android:versionName="6.2.1"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
allprojects {
ext {
// TODO keep version name and version code in sync with Android-x86 manifest
VERSION_CODE = 205
VERSION_CODE = 206
VERSION_NAME = "6.2.1"

MIN_SDK_VERSION = 21
Expand Down

0 comments on commit 0fc156e

Please sign in to comment.