Hi all in my google play developer console when I'm going to create In-app under in-app products section it is showing only 2 options (Managed Product, Subscription) So how can I create Un-managed product please help me..
Thank you..
Hi all in my google play developer console when I'm going to create In-app under in-app products section it is showing only 2 options (Managed Product, Subscription) So how can I create Un-managed product please help me..
Thank you..
This is because In app billing ver 3 now supports only two product types: Managed and Subscriptions
Check this link
In Version 3, all in-app products are managed. This means that the user's ownership of all in-app item purchases is maintained by Google Play, and your application can query the user's purchase information when needed. When the user successfully purchases an in-app product, that purchase is recorded in Google Play. Once an in-app product is purchased, it is considered to be "owned". In-app products in the "owned" state cannot be purchased from Google Play. You must send a consumption request for the "owned" in-app product before Google Play makes it available for purchase again. Consuming the in-app product reverts it to the "unowned" state, and discards the previous purchase data.
In the In-app Billing Version 3, there are only two Product Types
if you want to make it un-managed product than you have to do this dynamically
Thanks to p-mercier for suggesting this solution and the following code:
mHelper.consumeAsync(purchase, mConsumeFinishedListener);
Still if you have same problem than check product_id it can't
android.test.purchased
you have to put real product-id from developer console. See also: Android in app purchase: Signature verification failed
There are 2 types of products available which have 3 categories
1) Managed Products
a) Non Consumable Managed Product
b) Consumable Managed Product
2) Subscriptions
In your case you should use Consumable Managed Product where it allows to purchase same product multiple time like coins for game play. For more details please refer https://developer.android.com/google/play/billing/api#consume