Skip to content

Commit 8b722cf

Browse files
authored
Enable minification and resource shrinking in release
Enable resource shrinking and code minification for release builds.
1 parent 204d1fb commit 8b722cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Reef/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ android {
2727
buildTypes {
2828
release {
2929
// Causing issues smh
30-
isMinifyEnabled = false
31-
isShrinkResources = false
30+
isMinifyEnabled = true
31+
isShrinkResources = true
3232
proguardFiles(
3333
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
3434
)

0 commit comments

Comments
 (0)