ContentProvider android 权限
我希望比我更聪明的人可以回答这个问题。
默认情况下,所有 Android 数据库都可以通过 ContentProvider 访问,或者相关应用程序是否必须显式授予与 CP 共享数据库的权限,然后其他程序才能访问其数据库?
如果默认情况下它们不共享,则无法让应用程序开发人员包含更改,root 将是唯一的解决方法吗?
I'm hoping someone smarter then me can answer this question.
By default can all android databases be accessed through the ContentProvider, or does the application in question have to explicitly give permissions to share it with the CP before another program can access its db?
If they are not shared by default, short of getting the application developer to include the change, root would be the only way around it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,
ContentProvider
被导出,这意味着第三方可以对其执行 CRUD 操作。您可以通过以下方式更改此行为:
元素上的android:exported="false"
)Root 不会帮助您访问其他应用程序的内容提供程序。请尊重其他开发者的意愿。
By default, a
ContentProvider
is exported, meaning third parties can perform CRUD operations upon it. You can change this behavior either by:android:exported="false"
on the<provider>
element)Root will not help you access another applications' content provider. Please respect the wishes of the other developer.