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
Tap Settings. Tap In-App Purchasing. Uncheck Allow In-App Purchases.
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.
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.
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" />
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" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With