Skip to content

Commit

Permalink
[app] do not shrink res
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornaco committed Oct 10, 2022
1 parent fb342f7 commit 4adb862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ android {

getByName("release") {
isMinifyEnabled = !noMinify
isShrinkResources = !noMinify
isShrinkResources = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
Expand All @@ -53,7 +53,7 @@ android {

getByName("debug") {
isMinifyEnabled = !noMinify
isShrinkResources = !noMinify
isShrinkResources = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
Expand Down

0 comments on commit 4adb862

Please sign in to comment.