Skip to content

Commit cd7b6e2

Browse files
committed
Disable minification and resource shrinking for release builds
- R8 minification is failing due to Hilt generated class issues - Disable temporarily to get working APK for testing - Can be re-enabled once code structure is more stable
1 parent d578221 commit cd7b6e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ android {
3131

3232
buildTypes {
3333
release {
34-
isMinifyEnabled = true
35-
isShrinkResources = true
34+
isMinifyEnabled = false
35+
isShrinkResources = false
3636
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
3737
// Use debug signing config for testing purposes
3838
// For Play Store releases, replace with an upload key

0 commit comments

Comments
 (0)