I'm sure this is a simple question, but I seem to be spinning my wheels here. I want to connect and android wear device (emulated) with and android device (also emulated). I've tried port forwarding but that doesn't seem to do the trick for me. Does anyone have any good documentation for this?
Asked
Active
Viewed 1,929 times
9
-
2You can find answer from SO. SO rocks! http://stackoverflow.com/questions/25205888/pairing-android-emulator-with-wear-emulator – Wonil Dec 27 '14 at 10:30
-
Does this answer your question? [Pairing Android and Wear emulators](https://stackoverflow.com/questions/25205888/pairing-android-and-wear-emulators) – Yuri Schimke Oct 20 '22 at 07:22
2 Answers
5
Genymotion + Wear Emulator
- Download and install genymotion image 4.3+;
- Download Gapps for the selected version of the image;
- Install gapps in genymotion and configure;
- Download and install Android Wear;
- Launch the wear emulator;
Set port forward from genymotion to wear:
adb -s {genimotion_ip}:{genimotion_port} -d forward tcp:5601 tcp:5601
- Use!

beshkenadze
- 646
- 5
- 12
-
Tested on Android 5.1.0 Genymotion Nexus 5 and Android Wear 1.4 and it works – Raffaeu Jan 07 '16 at 12:45
1
Don't forget that if you want to pair to an Android Wear emulator, you have to tell the Android Wear connecting app to "Connect to Emulator".
I think that might be the missing step from the below comment - you have to make sure to tell the app to connect to the emulator. Then it will use the port forwarded adb stuff.

creativedrewy
- 101
- 4