I have mp3 files in root folder of my app, but some users have root rights and they can play or copy.
I want to protect my files, use them just in my app.
How can I do this?
Archiving is not a option.

有帮助吗?

解决方案

There is no way to prevent users from copying, modifying or deleting files on the filesystem if they have root access.

Archiving would be the only way, because converting your files back to mp3 would take some effort (reversing your android application in order to retrieve the packing algorithm).

其他提示

You may encrypt your files to make extraction harder but that won't work against qualified person because you'll have to keep decryption key somewhere on device or inside app. You should accept the fact that any of your resource might be extracted and stop worrying.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top