Reputation: 662
I implemented Google inapp purchase in my application. For testing i used
but when I test the inapp it says "the item you requested is not available for purchase".
Upvotes: 1
Views: 147
Reputation: 2513
You have to change an in-app product item in the market console from unpublished to published.
Upvotes: 1
Reputation: 4255
you have to pass the product id like this...
BillingHelper.requestPurchase(mContext, "your product id");
and make your product published in the market..
Upvotes: 1