-1

I used ProGuard in android studio to protect my data resources because I have two files in it: res / raw / fiche.xml and res / raw / fiche1 .XML so I'd make the content of my unreadable files. My question is how to make these two files unreadable with Proguard.

thank you in advance.

Tala
  • 19
  • 1
  • 7

1 Answers1

1

ProGuard only affects Java code, not resources. You will need to research other tools, like DexGuard, that may offer resource obfuscation. Whether there is a tool that can obfuscate raw resources is another matter.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
  • Hi @CommonsWare, could you please take a look at my question [here](http://stackoverflow.com/q/37314760/3287204)? Thank you ... – Yash Sampat May 23 '16 at 12:37