Inn app purchase Android Google play

Hi.

I have an app which I am planning my in-app purchases for. I have followed the guide here: http://docs.coronalabs.com/guide/monetization/IAP/index.html

I’ve added the required permissions to the build.settings. See image:

http://imgur.com/9nvHczp

But when I upload it to Google Play the permissions i’ve added to the build.settings don’t show up?

(See the attached image from Google play): (Some text is in Norwegian, sorry)

http://imgur.com/Rhzz51i

So I’m not able to start configuring the in-app purchases…

Any one knows what’s wrong?

Best Regards,

Frode

Hey Janfma,
 
It looks like you have a simple nesting typo.  The usesPermissions has to be INSIDE your android block, so it should be:
 
android =
{
     versionCode = “1”,

     usesPermissions = 

     {

          etc…

     }
}

Thank you! I didn’t see that one :slight_smile:

Frode

Hey Janfma,
 
It looks like you have a simple nesting typo.  The usesPermissions has to be INSIDE your android block, so it should be:
 
android =
{
     versionCode = “1”,

     usesPermissions = 

     {

          etc…

     }
}

Thank you! I didn’t see that one :slight_smile:

Frode