문제

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