Debug mobile phone and watch devices simultaneously using Bluetooth in Android Wear Development
During the development of Android Wear applications, you must simultaneously operate watches and mobile phones. You can simultaneously operate mobile phones and watches through Bluetooth.
1. Enable debugging settings for watches and mobile phones
Enable usb debugging on the mobile phone
Open the developer option set for the watch and select Debug over Bluetooth. If you are using the watch for debugging for the first time, you need to find the "About" option in Setting and click "Open developer" 7 times.
2 connect watches to development tools
Open the Android Wear App on the mobile phone end, go to Setting, select Debugging over Bluetooth, and you will find that the current status is
Host: disconnectedTarget: connected
Open cmd and enter the following commands in sequence:
Adb forward tcp: 4444 localabstract:/adb-hub
Adb connect localhost: 4444
View status
Host: connectedTarget: connected
It indicates the operation is successful.