Android - In App Purchase - you need to add the BILLING permission to your APK

后端 未结 8 1600
忘掉有多难
忘掉有多难 2021-01-30 20:01

I have been facing a IN - App Purchase problem since long time. I need to integrate In-App functionality in my Android Application, but When I upload the APK file to the play st

8条回答
  •  执念已碎
    2021-01-30 20:43

    Updating Your Application's Manifest

    In-app billing relies on the Google Play application, which handles all communication between your application and the Google Play server. To use the Google Play application, your application must request the proper permission. You can do this by adding the com.android.vending.BILLING permission to your AndroidManifest.xml file. If your application does not declare the In-app Billing permission, but attempts to send billing requests, Google Play will refuse the requests and respond with an error.

    To give your app the necessary permission, add this line in your Android.xml manifest file:

    
    

    Ref Implementing In-app Billing

    Also See Google I/O 2013 - In-App Billing Version 3

提交回复
热议问题