UnityPurchasing
Initialization
- Go to the official page and integrate it into your project. You can use latest version of the package;
- In ProjectSettings, add define
UNITY_PURCHASES
for your target platforms (only Android and iOS are supported) now; - Initialize Magify SDK;
The next steps will be different for default and for advanced integration.
Default integration
In this case you have to implement IMinimalInAppStore interface. You can read more about work with purchases on the purchases overview page.
After calling MagifyService.Initialize() use the MagifyService.SetPurchasingProvider with your implementation to finish integration with Magify.
var service = MagifyService.Initialize(_magifySettings, _magifyServiceArgs)
.SetPurchasingProvider(yourImplementationInstance);
Advanced integration
After calling MagifyService.Initialize() use the MagifyService.UseEmbeddedUnityPurchasing() method, which will instruct SDK to use UnityPurchases
as the default IInAppStore implementation.
var service = MagifyService.Initialize(_magifySettings, _magifyServiceArgs)
.UseEmbeddedUnityPurchasing();
Usage
Call MagifyService.Purchaser.InAppStore
to get the interface implementation instance. Then you can cast it to your implementation or to UnityPurchases
if MagifyService.UseEmbeddedUnityPurchasing() was called. You can use this instance to have quick access to its API.