diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/android/app/build.gradle.kts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index df0429489..ac1139677 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -106,10 +106,12 @@ android { resValue("string", "app_name_suffixed", "Citron") isDefault = true + isShrinkResources = true isMinifyEnabled = true + isJniDebuggable = false isDebuggable = false proguardFiles( - getDefaultProguardFile("proguard-android.txt"), + getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) } @@ -122,7 +124,7 @@ android { isMinifyEnabled = true isDebuggable = true proguardFiles( - getDefaultProguardFile("proguard-android.txt"), + getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) versionNameSuffix = "-relWithDebInfo" @@ -181,7 +183,7 @@ android { "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ) - abiFilters("arm64-v8a", "x86_64") + abiFilters("arm64-v8a") // , "x86_64") } } } @@ -250,8 +252,6 @@ dependencies { // Third Party Libraries implementation("io.coil-kt:coil:2.2.2") implementation("info.debatty:java-string-similarity:2.0.0") - -]] } fun runGitCommand(command: List<String>): String { |