Skip to content Skip to sidebar Skip to footer

Running Two Application/script With A Reboot In Between Without Manual Intervention

I have two c application running on android say helloWorld and helloHell . I need to run both but with a reboot in between. I have adb pushed the applications to a folder in andro

Solution 1:

Remove reboot from script file & try this

adb shell sh helloWorld.sh
adb shell reboot
# add some delay here
adb shell sh helloHell.sh

Post a Comment for "Running Two Application/script With A Reboot In Between Without Manual Intervention"