經過APP側重啓/關閉設備

  • 前提

    設備須要有root權限android

  • 步驟-1  添加權限
<uses-permission android:name="android.permission.SHUTDOWN" />
<application
    ...
    android:sharedUserId="android.uid.system"
  • 步驟-2
Runtime.getRuntime().exec(arrayOf("su","-c","reboot "))//重啓
Runtime.getRuntime().exec(arrayOf("su", "-c", "reboot -p"))//關機
相關文章
相關標籤/搜索