你如何评论Proguard.cfg中的规则?

时间:2012-05-10 22:45:08

标签: android proguard

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

2 个答案:

答案 0 :(得分:19)

哈希符号。

# This is a comment.  The 3 lines below are not.
-keepclassmembers class * extends android.app.Activity { 
       public void *(android.view.View); 
}

答案 1 :(得分:0)

来自手册

  

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

实施例

# This is a comment

手动链接

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