Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why my android application showing Offers in-app purchases in playstore

I uploaded my application into Google playstore. While uploading I didnt select any options related to in-app purchases. But still it is showing Offers in-app purchases for my application.

Please let me know how I can disable that option.

like image 698
Pawan Gupta Avatar asked Oct 30 '22 21:10

Pawan Gupta


1 Answers

Check if your manifest file has this line of code asking for BILLING permission:

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

Sometimes additional permissions can be added to an app by third party libraries, so check also final generated manifest file under this path: app/build/intermediates/manifests/full/debug/AndroidManifest.xml.

If you found out that permission is added by a library you can exclude it from your project by adding this permission to main manifest file with parameter tools:node=”remove” like this:

<uses-permission android:name="com.android.vending.BILLING" 
tools:node=”remove”/>
like image 197
dzikovskyy Avatar answered Nov 15 '22 06:11

dzikovskyy