Reputation: 9223
I want to obfuscate a class and its public method. I am using following code to obfuscate :
-keep class !com.supermentor.ApiService { *; }
but this doesn't work. Does anyone has idea? How to obfuscate only one class and its public methods.
Upvotes: 5
Views: 1984
Reputation: 7703
This worked for me:
-keep class !com.supermentor.ApiService,** { *; }
But be aware order is important, firs describe what you want to exclude and then what you want to keep. In this example, you want to obfuscate ApiService
and you want to everything else.
Upvotes: 1