Hello,
We want to switch our purchase system from Unity IAP to Revenuecat. But we have some questions about subscription system.
1- How to get subscription local prices (monthly price / introductory monthly price and weekly) from Revenuecat SDK? For example, we were get the price data with Unity IAP like this:
if (m_GooglePlayStoreExtensions.GetProductJSONDictionary()
.TryGetValue("om_sub_vim", out string skuDetails))
{
ControllerUIMainMenu.Instance.SetLocalizedIntroductoryPriceMonthly(JsonUtility
.FromJson<SkuDetails>(skuDetails).introductoryPrice);
}
2- How to start Purchase Subcription request with Revenuecat SDK?
For example, we can start a purchase subscription request with Unity IAP like this:
m_Controller.InitiatePurchase(m_Controller.products.WithID("on_weekly_vip"));
Thank you!