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
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)