简体   繁体   中英

UnManaged option not available in google play developer console

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

1. Managed Product
2. Subscription

if you want to make it un-managed product than you have to do this dynamically

1.select Managed Product
2.After purchases finish just add following function to make this un-owned (Un-managed Products) by default it is owned

mHelper.consumeAsync(purchase, mConsumeFinishedListener);

  • Unowned = you can buy multiple times like game coins ,life etc
  • Owned = can not buy multiple time work for one time like book purchases, songs etc

Thanks to Haxis for: In app billing v3 Android non-consumable items

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 consol

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM