Your store must implement the IStore interface, the methods of which are detailed in following sections.
using UnityEngine.Purchasing.Extension;
public class MyStore : IStore
{
private IStoreCallback callback;
public void Initialize (IStoreCallback callback)
{
this.callback = callback;
}
public void RetrieveProducts (System.Collections.ObjectModel.ReadOnlyCollection<UnityEngine.Purchasing.ProductDefinition> products)
{
// Fetch product information and invoke callback.OnProductsRetrieved();
}
public void Purchase (UnityEngine.Purchasing.ProductDefinition product, string developerPayload)
{
// Start the purchase flow and call either callback.OnPurchaseSucceeded() or callback.OnPurchaseFailed()
}
public void FinishTransaction (UnityEngine.Purchasing.ProductDefinition product, string transactionId)
{
// Perform transaction related housekeeping
}
}
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Is something described here not working as you expect it to? It might be a Known Issue. Please check with the Issue Tracker at issuetracker.unity3d.com.
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information