Reputation: 2436
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
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
Reputation: 1007584
There is a Packaging Wearable Apps link in the left-hand navigation area.
Upvotes: 5