Restart Android application using shell script
up vote
1
down vote
favorite
I'm trying to restart an application (com.android.snapchat) through am
command.
My code to start the application is
am start --user 0 -a android.intent.action.MAIN
-n com.android.snapchat/.MainActivity
The above starts the snapchat application. However, my program flow is to achieve this:
while true
if(snapchat is running)
then
restart snapchat
...
else
start snapchat
....
How can I do this using am
command itself?
android shell scripting
add a comment |
up vote
1
down vote
favorite
I'm trying to restart an application (com.android.snapchat) through am
command.
My code to start the application is
am start --user 0 -a android.intent.action.MAIN
-n com.android.snapchat/.MainActivity
The above starts the snapchat application. However, my program flow is to achieve this:
while true
if(snapchat is running)
then
restart snapchat
...
else
start snapchat
....
How can I do this using am
command itself?
android shell scripting
1
For restarting the app, you might try to stop it first withadb shell am force-stop com.android.snapchat
and then start it again.
– Onik
Nov 7 at 8:36
Thanks this works... let me continue working on the flow!!
– Goron
Nov 7 at 9:23
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm trying to restart an application (com.android.snapchat) through am
command.
My code to start the application is
am start --user 0 -a android.intent.action.MAIN
-n com.android.snapchat/.MainActivity
The above starts the snapchat application. However, my program flow is to achieve this:
while true
if(snapchat is running)
then
restart snapchat
...
else
start snapchat
....
How can I do this using am
command itself?
android shell scripting
I'm trying to restart an application (com.android.snapchat) through am
command.
My code to start the application is
am start --user 0 -a android.intent.action.MAIN
-n com.android.snapchat/.MainActivity
The above starts the snapchat application. However, my program flow is to achieve this:
while true
if(snapchat is running)
then
restart snapchat
...
else
start snapchat
....
How can I do this using am
command itself?
android shell scripting
android shell scripting
edited Nov 7 at 13:21
Onik
10.9k103760
10.9k103760
asked Nov 7 at 7:55
Goron
3411
3411
1
For restarting the app, you might try to stop it first withadb shell am force-stop com.android.snapchat
and then start it again.
– Onik
Nov 7 at 8:36
Thanks this works... let me continue working on the flow!!
– Goron
Nov 7 at 9:23
add a comment |
1
For restarting the app, you might try to stop it first withadb shell am force-stop com.android.snapchat
and then start it again.
– Onik
Nov 7 at 8:36
Thanks this works... let me continue working on the flow!!
– Goron
Nov 7 at 9:23
1
1
For restarting the app, you might try to stop it first with
adb shell am force-stop com.android.snapchat
and then start it again.– Onik
Nov 7 at 8:36
For restarting the app, you might try to stop it first with
adb shell am force-stop com.android.snapchat
and then start it again.– Onik
Nov 7 at 8:36
Thanks this works... let me continue working on the flow!!
– Goron
Nov 7 at 9:23
Thanks this works... let me continue working on the flow!!
– Goron
Nov 7 at 9:23
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
For restarting the app first run
am force-stop com.android.snapchat
and then start it again with the command you've been using.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
For restarting the app first run
am force-stop com.android.snapchat
and then start it again with the command you've been using.
add a comment |
up vote
2
down vote
accepted
For restarting the app first run
am force-stop com.android.snapchat
and then start it again with the command you've been using.
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
For restarting the app first run
am force-stop com.android.snapchat
and then start it again with the command you've been using.
For restarting the app first run
am force-stop com.android.snapchat
and then start it again with the command you've been using.
edited Nov 7 at 15:49
answered Nov 7 at 9:26
Onik
10.9k103760
10.9k103760
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53185406%2frestart-android-application-using-shell-script%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
For restarting the app, you might try to stop it first with
adb shell am force-stop com.android.snapchat
and then start it again.– Onik
Nov 7 at 8:36
Thanks this works... let me continue working on the flow!!
– Goron
Nov 7 at 9:23