Grant ProGuard rules

Grant – a library that simplifying Android Permissions.

ProGuard rules for Grant

After ProGuard shrinks code, reading a code is difficult because the method names are obfuscated. ProGuard removes classes, methods in the shrinking step.

A ProGuard configuration is provided as part of the library:

# Remove all logging from production code
-assumenosideeffects class android.util.Log {
    public static boolean isLoggable(java.lang.String, int);
    public static int v(...);
    public static int i(...);
    public static int w(...);
    public static int d(...);
    public static int e(...);
}

For more information about Grant please see the website.

Related ProGuard rules

Static Gson ProGuard rules

Popular ProGuard rules