enable minifiy for release, but don't obfuscate

(shrinks apk size from 6.1 to 5.1MB)
This commit is contained in:
Andreas Shimokawa 2020-10-11 16:10:35 +02:00
parent 7f8d4ac92a
commit 8394928b94
2 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,7 @@ android {
} }
buildTypes { buildTypes {
release { release {
minifyEnabled false minifyEnabled true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
} }
} }

View File

@ -9,6 +9,8 @@
# Add any project specific keep options here: # Add any project specific keep options here:
-dontobfuscate
# Pebble BG-JS # Pebble BG-JS
-keepclassmembers class * { -keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>; @android.webkit.JavascriptInterface <methods>;