android task kill

后端 未结 5 580
我寻月下人不归
我寻月下人不归 2020-12-11 03:48

I want to kill all tasks that run in android like task killer... What I have done until now is:

ActivityManager manager =  (ActivityManager) this.getSystemSe         


        
5条回答
  •  情歌与酒
    2020-12-11 04:18

    1- Add to manifest

    
    

    2 - In your code

    Runtime.getRuntime().exec("adb shell killall com.example.app");
    

    note that your app need to have access to adb shell (system app)

提交回复
热议问题