Mess
Mess copied to clipboard
Activities, Services, etc. are not being obfuscated.
I managed to obfuscate the resources, but couldn't find a way to obfuscate Activities, Services, custom Views, etc. How to make it work?
Did you add the following code to proguard-rules.pro
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Service
-keep public class * extends android.view.View
You should delete them
I tested your suggestion, but now the app crashes. Looks like the MainActivity class is moved to somewhere else but the AndroidManifest.xml dows not point to that new location. Same behavior to all those classes that are referenced in the manifest file, like another activities, services and the class that extends Application class.
Isn't this Mess plugin supposed to also handle the AndroidManifest.xml?