Android如何保护文档目录中的内容

6 security encryption android documents

我在这里问同样的问题:

对于Android.

在Android中是否有与此处所示内容相同的概念:

我的特殊要求是保护文件不受root设备的影响,并且只能通过应用程序和一定的生命周期使用它们.

谢谢

小智 0

Android 利用 Unix 权限来保护应用程序沙箱。每个应用程序都在唯一的用户下运行,并且只有该用户有权对/data/data/your.package.name文件夹进行操作。但是,如果目标设备已取得 root 权限,您的应用程序数据可能会受到损害。

一些链接:

http://source.android.com/tech/security/index.html

http://www.amazon.co.uk/dp/1430240628

http://developer.android.com/guide/topics/security/permissions.html