Pregunta

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.

¿Fue útil?

Solución

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).

Otros consejos

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top