i ran proguard on my project but it doesnt obfuscate my activity name. i have tried several rules and it is not working. i dont know what exactly it means for example the rule below:
-keep public class models.* {
*;
}
and whats the difference between
-keepclassmembers class * {
}
and
-keepclasseswithmembers class * {
}
i am having difficulty on how these rules work. please help.