I'm running into some weird problem using adb.
I want to run a program in the background. My program does not return control to the user, so it is similar to the "top" utility.
I used:
adb shell " top &> /dev/null &"
However, this doesn't work every time. Sometimes I see that a top process is created, sometimes it is not created.
However if I first do adb shell, then at the interactive console, I type
top &> /dev/null &
then a process is created every time, however if I try to exit the shell, it hangs.. Any ideas?
Appreciate it