forked from mirror/monocles_chat_clean
Use proguard on release builds
We don't need obfuscation (it's an open source project), but proguard wil shrink the apk by stripping out unused code.
This commit is contained in:
parent
e4d64ecabb
commit
bcff15e8cc
2 changed files with 3 additions and 1 deletions
|
@ -50,7 +50,7 @@ android {
|
|||
}
|
||||
buildTypes {
|
||||
release {
|
||||
runProguard false
|
||||
runProguard true
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
# public *;
|
||||
#}
|
||||
|
||||
-dontwarn javax.naming.**
|
||||
|
||||
-keep class * extends java.util.ListResourceBundle {
|
||||
protected Object[][] getContents();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue