Reputation: 551
I had an app uploaded in google play, but now I have done a update with Android Wear. I have my project in Android Studio with the mobile and the wear APK in the same project and with the same package. It runs perfectly in debug mode. I can export the new update of my app with the Android Wear app embebed, but when I upload it with the Google developer console shows that there are only one compatible device.
Attached Images:
How can i make my wear app to be compatible with more than 1 device? :-)
Upvotes: 1
Views: 328
Reputation: 4876
You shouldn't have the permission android.hardware.type.WATCH
in the Play Store permissions.
This is only required for the wear application.
Remove it from your AndroidManifest.xml
mobile application, it looks like:
<uses-feature android:name="android.hardware.type.watch" />
Upvotes: 2