Skip to content

Commit 62a743d

Browse files
authored
Update build.gradle.kts
1 parent 5a38882 commit 62a743d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

android/app/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,17 @@ android {
6666
buildTypes {
6767
getByName("release") {
6868
signingConfig = signingConfigs.getByName("release")
69+
isMinifyEnabled = false
70+
isShrinkResources = false
6971
ndk {
7072
abiFilters.addAll(listOf("x86_64", "armeabi-v7a", "arm64-v8a"))
7173
debugSymbolLevel = "FULL"
7274
}
7375
}
7476
getByName("debug") {
7577
signingConfig = signingConfigs.getByName("debug")
78+
isMinifyEnabled = false
79+
isShrinkResources = false
7680
ndk {
7781
abiFilters.addAll(listOf("x86_64", "armeabi-v7a", "arm64-v8a"))
7882
debugSymbolLevel = "FULL"

0 commit comments

Comments
 (0)