Reputation: 93
I have developed an android wear app and corresponding mobile app (as per https://developer.android.com/training/wearables/apps/packaging.html) using Eclipse. My cell phone and wearable (Zen watch) are of paired over Bluetooth and working fine. I attach my cell phone to my development PC via USB (with debug on). By running my cell phone app from Eclipse, selecting the hardwired cell phone as the target device, should the wearable app install on the wearable device (assuming I packaged it correctly)?
Upvotes: 0
Views: 262
Reputation: 196
Wear apps will not install automatically with the mobile/handheld installation when signing apps with a debug key while developing. So when you build, you are signing with a debug key. See the "Note" at the top of the page you reference in your question (https://developer.android.com/training/wearables/apps/packaging.html).
You have two options to install to the Wearable
Of course #2 only works given you've followed the rules at the link you mention above - https://developer.android.com/training/wearables/apps/packaging.html.
Upvotes: 1