Friday, September 5, 2014

Android ADB device offline

When I run the adb command to list devices, it show my connected device with "offline", and I cannot issue any command on it.

My solution is to run Task Manager (on Ubuntu) and kill the running adb, then re-run adb again, problem solved:)


Thanks for Vladislav Ivanov comment. You can also enter the command:

adb kill-server

and then
adb start-server



Related:
- Setup Android adb for Wifi debug

2 comments:

Unknown said...

And what about:
adb kill-server
and then
adb start-server

Erik said...

thanks Vladislav Ivanov :)