Paul Ruiz
Paul Ruiz

Reputation: 2436

Packaging Android Wear Apps

Anyone know if there's available documentation for packaging wearable apps? The "Packaging Wearable Apps" link is typoed in http://developer.android.com/training/wearables/apps/creating.html

to

http://developer.android.com/traiing/wearables/packaging.html

and even http://developer.android.com/training/wearables/packaging.html is a 404.

The app is written and I can install it directly to a Samsung Gear Live, so looking to get the app onto the Play Store.

Upvotes: 0

Views: 879

Answers (2)

Hans Cappelle
Hans Cappelle

Reputation: 17495

Also when developing (debug) and testing your release on the same wear device it might be required to hit the "sync apps" option from the wear app on your phone/tablet.

In my case the wear app didn't appear on the wearable until I did so. The packaging itself was done with android studio and I only had to add the wearApp in dependencies and build with release config for the wear app to be included.

dependencies {
   compile 'com.google.android.gms:play-services:5.0.+@aar'
   compile 'com.android.support:support-v4:20.0.+''
   wearApp project(':wearable')
}

More at: https://developer.android.com/training/wearables/apps/packaging.html

Upvotes: 0

CommonsWare
CommonsWare

Reputation: 1007584

There is a Packaging Wearable Apps link in the left-hand navigation area.

Upvotes: 5

Related Questions