Reputation: 6061
I want to force ProGuard not to obfuscate ANYTHING except only a few classes.
How can this be done? Please provide actual sample code as I've looked online and haven't found something similar.
Upvotes: 0
Views: 1065
Reputation: 6061
For those who care this is how its done:
-keep class !com.mypackage.classA, !com.mypackage.classB { *; }
etc...
Upvotes: 3