Common user most of time doesn't care about RAM of his android device, about processes that running on background etc.
User who know what is RAM install apps to clear it. But we are not common users and wont install apps to kill. We gonna kill them ourselves.
You must be root, have busybox and terminal emu installed.
You can use am force-stop <package name>.
or am kill <package name>.
am kill only kills "processes that are safe to kill": i.e. a process with no running services or activities.
We can use adb shell kill to kill the process. but first you need to find the process id.
1)
adb shell kill $(adb shell ps | grep YOUR.PACKAGE.NAME | awk '{ print $2 }')
pc $ adb -d shell
android $ su
android # ps
android # kill <process id from ps output>
2)
adb shell am force-stop com.my.app.package
3)
adb stop com.my.app.package
4)
adb -d install -r MyApp.apk ; adb -d shell am start -a android.intent.action.MAIN -n com.MyCompany.MyApp/.MyActivity
5)
That way, you can issue this adb command to stop your activity:
adb shell am broadcast -a com.example.TestActivity.STOP
Add new comment