I\'m trying to stop application on Android 2.3.7 device. But in this version of Android I can\'t use \"force-stop\" command. Do you know any other ways to close application
If you want to kill the Sticky Service,the following command NOT WORKING:
adb shell am force-stop adb shell kill
The following command is WORKING:
adb shell pm disable
If you want to restart the app,you must run command below first:
adb shell pm enable