Search code examples
androidsecurityandroid-proguard

why proguard is only obfuscating the class which is not extending anything


i am trying to obfuscate my android application with proguard. But the problem is when i decompiled the apk it only shows the changed variable names but class names are same as in the source.Only one class's name is changed which is not extending the any other class.I have searched many options but nothing worked so i am posting my problem here.

Here is my gradle file code:-

 buildTypes {
    release {

        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'),
                'proguard-rules.pro'
    }
}

and in my proguard rules.pro file

-ignorewarnings

please help me with this Thanks:)


Solution

  • I don't know what exactly problem in your case but i had solved my problem by below proguard rules and their are various rules which help you to protect your application

    -dontskipnonpubliclibraryclassmembers
    -dontshrink
    -dontoptimize
    -printmapping build/libs/output/obfuscation.map
    -keepattributes
    -adaptclassstrings
    -dontnote
    -dontwarn
    
    # Keep Android classes
    -keep class ** extends android.** {
        <fields>;
        <methods>;
    }
    
    # Keep serializable classes & fields
    -keep class ** extends java.io.Serializable {
        <fields>;
    }
    
    # Keep - Applications. Keep all application classes, along with their 'main'
    # methods.
    -keepclasseswithmembers public class * {
        public static void main(java.lang.String[]);
    }
    
    # Also keep - Enumerations. Keep the special static methods that are required in
    # enumeration classes.
    -keepclassmembers enum  * {
        public static **[] values();
        public static ** valueOf(java.lang.String);
    }
    
    
    -assumenosideeffects class android.util.Log {
        public static *** d(...);
        public static *** e(...);
        public static *** w(...);
    }
    

    For More Information you can visit Proguard official site