- Launch the Settings app on the phone, and select Applications as so:
- In the Applications app, click on Development:
- In the Development app, make sure that "USB debugging" is enabled:
Now check to make sure that the Android Debugging Bridge (adb) does indeed see the phone device. To do this, from a terminal run:
$ adb devices
List of devices attached
T95960a0752a device
NOTE:
If you've restarted your machine, then in all likelihood "adb devices" will return a blank. In which case, kill and restart the adb service:
$ sudo ./adb kill-server
$ sudo ./adb start-server
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
$ adb devices
List of devices attached
T95960a0752a device
No comments:
Post a Comment