RevenueCat

Integration

  1. Go to the official page and integrate it into your project;
  2. Initialize Magify SDK;
  3. Then you can provide Magify ClientId to RevenueCat. It is possible to do
    1. during RevenueCat initialization:
    var clientId = MagifyService.Instance.ClientId;
    Purchases.PurchasesConfiguration.Builder builder = Purchases.PurchasesConfiguration.Builder.Init("your_api_key");
    Purchases.PurchasesConfiguration purchasesConfiguration = builder.SetAppUserId(clientId).Build();
    purchases.Configure(purchasesConfiguration);
    
    1. after RevenueCat initialization:
    var clientId = MagifyService.Instance.ClientId;
    var purchases = GetComponent<Purchases>();
    purchases.LogIn(clientId, (customerInfo, created, error) =>
    {
        if (error != null)
        {
            // show error
        }
        else
        {
            // show customerInfo
        }
    });
    

Related articles

ConfigScope

ICampaign

Releases

Introduction

Request config by scopes

MagifyManager