MobileMon
MobileMon

Reputation: 8661

Does Android Wear support in app purchasing

Does Android Wear support in app purchasing?

I'm unable to get my project to compile when I compile with google-playservices-wearable

'com.google.android.gms:play-services-wearable:+'

however I can compile without the wearable version

'com.google.android.gms:play-services:4.3.23'

Upvotes: 0

Views: 304

Answers (1)

matiash
matiash

Reputation: 55370

I assume you want the in-app purchases in the handheld?

You can just use:

compile 'com.google.android.gms:play-services:+'

in the mobile module and

compile 'com.google.android.gms:play-services-wearable:+'

in the wear module.

'com.google.android.gms:play-services-wearable:+' seems to be a subset.

Upvotes: 2

Related Questions