What syntax is used to comment out a proguard rule inside Proguard.cfg? Thanks
Hash symbols.
# This is a comment. The 3 lines below are not.
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
From the manual
You can add comments in a configuration file, starting with a # character and continuing until the end of the line.
Example
# This is a comment
Manual Link Here
http://proguard.sourceforge.net/manual/usage.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With