1

I have an app on google play and I want to make a new version with in-app billing. I have uploaded a beta .apk which requires the

android.permission.BILLING.

On Google Developer Console there is an In-app Products function. But when I click on it, it is complaining:

"To add in-app products, you need to add the BILLING permission to your APK."

Why? My beta .apk already has the BILLING permission, it shouldn't complain about it.

N J
  • 27,217
  • 13
  • 76
  • 96
Endre
  • 374
  • 6
  • 18

1 Answers1

0

The right permission to add is not android.permission.BILLING, but com.android.vending.BILLING.

Endre
  • 374
  • 6
  • 18