Android:无需root手机即可直接访问内核模块吗?
Android 应用程序可以在不 root 设备的情况下访问 /dev 或 /sys 吗?
从活动中执行此操作时,我遇到权限问题。 它能和native层一起工作吗?
Can Android apps access /dev or /sys without rooting the device?
I have permission problems when doing this from an Activity.
Can it work and the native layer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,不。
如果您的意思是“我可以编写一个 NDK 库来访问
/dev/
或/sys/
吗?”,那么您编写代码所用的语言并不重要。这是一个进程、用户和权限的问题。AFAIK, no.
If you mean, "can I write an NDK library to access
/dev/
or/sys/
?", the language in which you write the code will not matter. It is a matter of processes, users, and permissions.