Last active
May 1, 2018 13:00
-
-
Save shkschneider/a1c81780cd1f35a7037d to your computer and use it in GitHub Desktop.
ProGuard: obfuscate private fields with Android bug 78377
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# <https://code.google.com/p/android/issues/detail?id=78377#c188> | |
# <https://stackoverflow.com/questions/30526173> | |
-keepattributes ** | |
-keep class !android.support.v7.internal.view.menu.**, ** { | |
!private <fields>; | |
protected <fields>; | |
public <fields>; | |
<methods>; | |
} | |
#-dontpreverify | |
#-dontobfuscate | |
#-dontoptimize | |
#-dontshrink | |
-dontwarn ** | |
-dontnote ** |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From https://stackoverflow.com/questions/30526173/obfuscate-private-fields-using-proguard/30656737