Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用什么语法注释掉 Proguard.cfg 中的 proguard 规则?谢谢
哈希符号。
# This is a comment. The 3 lines below are not. -keepclassmembers class * extends android.app.Activity { public void *(android.view.View); }
从手册
您可以在配置文件中添加注释,以 # 字符开始并一直持续到行尾。
例子
# This is a comment
手动链接在这里
http://proguard.sourceforge.net/manual/usage.html