标签: android proguard obfuscation
考虑这个proguard声明:
-keep public class * extends android.support.design.widget.CoordinatorLayout$Behavior { *; }
在此声明中添加{*;是什么意思?
它是否保留所有方法?所有领域?或者只是全班?
答案 0 :(得分:4)
它在ProGuard中用作通配符来表示all members and methods in the class。
all members and methods in the class
来源:ProGuard manual,Stack overflow