Reputation: 443
I am launching new Android App, however my app does not have any in app purchases. I don't remember where i have set this setting, I searched every detail for this App but did not find how to remove this setting. If anybody can let me know, where to check.
[Update]
It has anything related to Content ratings, i selected "Yes" here
Upvotes: 4
Views: 2882
Reputation: 209
It looks like you marked that your app has In-App Purchases in the Google Play Console. Open the app in Console and uncheck the button which asks if you have any purchases in your application.
Or you should delete In-App Purchase dependency from your application source code Gradle file. It may be a solution if you have that dependency in the code.
Upvotes: 1
Reputation: 443
When i updated (yes to no) in content ratings. In-app purchase was removed.
(As per below image i previously marked yes and now updated it with no) https://i.sstatic.net/q2JoC.png
Thanks everybody for help.
Upvotes: 4
Reputation: 76486
Look in your AndroidManifest.xml at your declared permissions.
https://developer.android.com/guide/topics/permissions/overview
Likely need to remove:
<uses-permission android:name="com.android.vending.BILLING" />
Upvotes: 1