Question by
Nitin_CMLABS · Mar 14, 2016 at 08:22 AM ·
unity5iapwindows phone
Unity IAP Window Issue
Unity Version : 5.3.3f1
Using this Code for IAP of Unity Services
{ if (IsInitialized()) { return; }
var builder = ConfigurationBuilder.Instance(StandardPurchasingModule.Instance());
builder.AddProduct(kProductIDConsumable1, ProductType.Consumable, new IDs(){{ kProductNameWindowConsumableGrassStack500, WindowsStore.Name },{ kProductNameAppleConsumableGrassStack500, GooglePlay.Name },});// Continue adding the non-consumable product.
builder.AddProduct(kProductIDConsumable2, ProductType.Consumable, new IDs(){{ kProductNameWindowConsumableGrassStack1500, WindowsStore.Name },{ kProductNameAppleConsumableGrassStack1500, GooglePlay.Name },});// Continue adding the non-consumable product.
UnityPurchasing.Initialize(this, builder); // Getting Problem In this line
}
This code is not able to Initialize the Product Ids in Window's platform
If Anyonw has idead then please comment here asap.
Comment
Your answer

Follow this Question
Related Questions
Unity IAP 1 Answer
GooglePlayServices Conflict With Unity IAP 0 Answers