Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off "Offers in-app purchases" on Google Play for my app

Tags:

android

I've just uploaded my first app to Google Play. Its free and I have no in-app purchases.

Even that I have no in-app purchases I can still see in Google Play that there is a sentence next to the google play icon that says "Offers in-app purchases". How do I cancel it? I've searched all over the google play developer console for a place to uncheck it but couldn't found one. Also in the In-app Products tab I have gray screen that says "Your app doesn't have any in-app products yet. " So can u help me please?

Thank u in advance

like image 279
user1409534 Avatar asked Apr 12 '14 09:04

user1409534


People also ask

How do I remove an offer from in-app purchases?

Tap Settings. Tap In-App Purchasing. Uncheck Allow In-App Purchases.

Can you turn off in-app purchases on Google Play?

You can turn in-app purchases on or off in the Settings app on Apple devices and in the Play Store app on Android devices.

What does it mean when an app offers in-app purchases?

In-app purchases are extra content or subscriptions that you buy inside an app. Not all apps offer in-app purchases. To check if an app offers in-app purchases before you buy or download it, find it in the App Store. Then look for "In-App Purchases" near the app's price or Get button.


2 Answers

Just remove the in-app billing permission from your Android manifest and publish a new APK. It is this line in the AndroidManifest.xml file:

<uses-permission android:name="com.android.vending.BILLING" />
like image 181
HHK Avatar answered Nov 04 '22 09:11

HHK


Adding on to @HansKratz answer. If you have any other dependencies that add the permission such as com.android.billingclient:billing you will either need to remove the dependency adding the permission or explicitly remove it from your final merged manifest by adding: <uses-permission android:name="com.android.vending.BILLING" tools:node="remove" />

like image 41
ocross Avatar answered Nov 04 '22 08:11

ocross