10

使用什么语法注释掉 Proguard.cfg 中的 proguard 规则?谢谢

4

2 回答 2

24

哈希符号。

# This is a comment.  The 3 lines below are not.
-keepclassmembers class * extends android.app.Activity { 
       public void *(android.view.View); 
}
于 2012-05-10T22:48:20.283 回答
1

从手册

您可以在配置文件中添加注释,以 # 字符开始并一直持续到行尾。

例子

# This is a comment

手动链接在这里

http://proguard.sourceforge.net/manual/usage.html

于 2016-03-14T15:43:44.137 回答