Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging on Moto 360

I am trying to get debugging over Bluetooth working on my Moto 360. I am following these instructions but when I put in adb forward tcp:4444 localabstract:/adb-hub; adb connect localhost:4444 all that happens is adb runs through its list of available commands again.

In the wear companion app Debugging over Bluetooth is enabled, Host says Disconnected and Target says connected.

On the watch itself ADB debugging is enabled and Debug over Bluetooth is enabled

I also references this article which has a little more information but still nothing

adb see's my phone just never the watch

What am I missing?

like image 774
tyczj Avatar asked Sep 19 '14 17:09

tyczj


1 Answers

I figured it out, instead of doing adb forward tcp:4444 localabstract:/adb-hub; adb connect localhost:4444 all at once I broke it up into 2 seperate commands

first command

adb forward tcp:4444 localabstract:/adb-hub

second command

adb connect localhost:4444

then the watch asked me to authorize with the computer.

I have never been good with command prompt stuff so I dont know if that was just a noob mistake or what but just in-case anyone else runs into the same problem

like image 58
tyczj Avatar answered Sep 23 '22 14:09

tyczj