How do I restrict access to my ContentProvider to only my apps?

前端 未结 1 934
一个人的身影
一个人的身影 2021-02-10 08:20

I want to export a ContentProvider for use by another one of MY apps. How do I prevent other apps from accessing it? If I use an android:permission attribute, can\'t 3rd party a

相关标签:
1条回答
  • 2021-02-10 08:56

    If I use an android:permission attribute, can't 3rd party apps just apply that permission to their app?

    Well, you can use a signature-level custom permission (android:protectionLevel="signature"). Then, the app holding the permission and the app defending itself with the permission have to be signed by the same signing key.

    There's a bug/limitation in Android that can allow an attacker, installed before your app, to hold this permission even though the attacker is not signed by your signing key. I go into that in more detail in this report (as it's a bit complex for an SO answer) and have a PermissionUtils class to help you detect that case.

    0 讨论(0)
提交回复
热议问题