0
我已設置權限:重新啓動Android設備清單中的運行4.0
<uses-permission android:name="android.permission.REBOOT" />
我撥打以下行來重啓動設備:
Intent intent = new Intent(Intent.ACTION_REBOOT);
sendBroadcast(intent);
因爲我在模擬器root權限,我好奇我爲什麼遇到以下錯誤:
Permission Denial: not allowed to send broadcast android.intent.action.REBOOT from pid=963, uid=10046
你有什麼建議獲得自定義MOD到一個仿真器,因此我的應用程序具有相同簽名證書的操作系統嗎? –