Reputation: 189
I am using proguard in my project . It is obfuscating all the java code . But it is not obfuscating anything in strings.xml .
I have some sensitive information in strings.xml .
How can I make proguard to obfuscate the content in strings.xml ? Do I need to write any specific rule ?
Upvotes: 1
Views: 2739
Reputation: 343
It will not obfuscate string.xml file. If you will rename your .apk file with .zip and extract the zip folder then you will get all the resources. There are a couple of ways to store sensitive data in Android.
Upvotes: 0