I made a mobile application. On extracting the jar file, the resource files are visible ( text files and image files ). Is there someway to protect the content files? I am not worried about the reverse engineering of the bytecode. I need to protect the content.
Thanks 🙂
I made a mobile application. On extracting the jar file, the resource files are
Share
The only 100% secure way to protect the resource files is to omit them from the jar.
Seriously.
If your application needs to use your resources, you could store the resources encrypted, and then decrypt them as needed. But in the end, you’re still handing the data to an untrusted entity.