In-app billing testing

I am trying to test an in-app billing application. The current version on the Android Market does not have in-app billing features.

When I download my new version, which has the billing function in the application as a draft, I get an error message that

"An unexpected error occurred. Please try again later. There are no application applications in this application. New applications cannot be added to the application because the current version of the application does not use BILLING permission.

I installed all the configurations http://android-sdk.appspot.com/guide/market/billing/index.html "

I want to test in-app-billing before publishing. How to fix this problem?

+7
source share
1 answer

Everything is said in the error message. add the BILLING permission to the manifest file and upload the application to the market (do not publish it, save it as a draft). Then add some elements to the developer console.

In addition, you can specify android.test.purchased as the identifier of your product, in this case the application on the market will always answer you, this item was successfully purchased.

+8
source

All Articles