Skip to content

Commit ce8ee29

Browse files
committed
- disable minify and shrink resources for release builds
- remove EditFolderActivity from AndroidManifest
1 parent 543453a commit ce8ee29

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

app/build.gradle.kts

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

8787
getByName("release") {
8888
signingConfig = signingConfigs.getByName("release")
89-
isMinifyEnabled = true
90-
isShrinkResources = true
89+
isMinifyEnabled = false
90+
isShrinkResources = false
9191
applicationIdSuffix = ".release"
9292
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
9393
}

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,6 @@
196196
android:taskAffinity=""
197197
android:theme="@style/SaveAppTheme.NoActionBar" />
198198

199-
<activity
200-
android:name=".features.settings.EditFolderActivity"
201-
android:taskAffinity=""
202-
android:theme="@style/SaveAppTheme.NoActionBar" />
203-
204199
<activity
205200
android:name=".features.settings.ConsentActivity"
206201
android:label="@string/health_checks"

0 commit comments

Comments
 (0)