Home > Software design >  "We've detected this app uses an unsupported version of Play billing" for Xamarin For
"We've detected this app uses an unsupported version of Play billing" for Xamarin For

Time:11-16

When attempting to publish my Xamarin Forms app, I get the following error from Google Play console

We've detected this app uses an unsupported version of Play billing. Please upgrade to Billing Library version 3 or newer to publish this app.

I don't use any billing library. I've tried updating all nuget dependencies, to no luck. How do I fix this error so I can publish my app?

CodePudding user response:

Apparently I had BILLING permissions set in my manifest. Removing these fixed the issue.

You can do this by right-clicking the project --> Properties --> Android Manifest --> Searching for BILLING under "Required Permissions" and unchecking it

Alternatively, open AndroidManifest.xml and delete the line

<uses-permission android:name="com.android.vending.BILLING" />
  • Related