Neither user xxx nor current process has android.permission.REBOOT 的解决办法
最近碰到一个需要重启Android系统的需求,经过网络查询,使用如下代码进行系统级别的重启工作:private void rebootSystem(){
PowerManager pm = (PowerManager)getSystemService(Context.POWER_SERVICE);
pm.reboot(null);
}但运行了之后,抛出...