我如何更改我的应用程序的 uid 和 pid?
我试图用我的应用程序重新启动我的设备,但它抛出异常并显示错误消息“具有 xxxx uid 和 xxxx pid 的应用程序,您无法重新启动设备”。因此,如果我可以搜索 pid 或 uid 是什么,可能就像警报的 pid 或其他可以做到的那样,因为它们来自操作系统。谢谢大家
I was tryng to reboot my device with my app, but it throws an exception with Error message "The app with xxxx uid and with xxxx pid you can't reboot the device". So, if I can search what is the pid or uid that can, may be like a pid of alarm or other can do that, because are from the OS. Thanks for all
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是不可能的。
您不会“重新启动”“应用程序”。您重新启动设备。
只有被视为固件一部分的应用程序才能拥有重新启动设备所需的权限。如果您想重新启动设备,请构建您自己的自定义固件。
This is not possible.
You do not "reboot" an "app". You reboot a device.
Only applications considered part of the firmware can hold the necessary permissions to reboot a device. If you wish to reboot a device, build your own custom firmware.
您可以通过
su
命令请求 root 设备上的超级用户权限,并使用reboot
重新启动设备。You can request superuser privileges on rooted devices thru the
su
command and reboot the device withreboot
.