MobileMon
MobileMon

Reputation: 8661

Do I need a separate app for AndroidWear

My app has a "mobile" module and a "wear" module in AndroidStudio with a goal of producing a native version of the app for Android wear and for the phone. So when generating the apk through Android studio, 2 apk's are produced. Does this mean on the Google Play Developer console I need 2 separate app listings? Which means I would also need separate packages for the apps(since no 2 can be the same)?

Upvotes: 1

Views: 581

Answers (2)

Amarnath
Amarnath

Reputation: 1111

Usually Android studio will generate two apks, named mobile-release.apk and wear-release.apk.

But you need to upload mobile-release.apk into play store. this apk is already bundled along with the wear apk.

Upvotes: 0

Stephan Branczyk
Stephan Branczyk

Reputation: 9375

For the Google Play store, the small wear application needs to be packaged inside the larger mobile application following these gradle instructions, or these manual instructions.

For debugging purposes, you'll need to update and debug both applications separately. That is why Android Studio initially sets them up that way.

Upvotes: 1

Related Questions