Fix crash when installing dictionaries (#1261)

This happens in release mode due to minification.
This commit is contained in:
Jules Aguillon
2026-05-03 12:55:27 +02:00
committed by GitHub
parent e2fdced765
commit 82d61d4406
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -69,6 +69,9 @@ android {
buildTypes {
named("release") {
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro")
isShrinkResources = true
isDebuggable = false
resValue("string", "app_name", "@string/app_name_release")
+3
View File
@@ -0,0 +1,3 @@
-keep public class juloo.cdict.* {
public protected private *;
}