Reputation: 153
I'm working to create a dictionary for android. I have a csv file containing all the data, which I worker for few months to complete.
The problem is anybody can explode the apk and extract the csv file. I wish secure the file. How can I protect a file inside the apk by not breaking the application?
Thanks for reading.
Upvotes: 0
Views: 169
Reputation: 12339
You could save an encrypted version of the file, and decrypt it inside your application.
EDIT: for instance, this is a quick an simple solution for encrypting/decrypting data.
Upvotes: 1