Releases: qonversion/unity-sdk
Releases · qonversion/unity-sdk
8.2.0
What's new
- iOS promotional offers support
To load the promo offer data, call the following function.
var promo = subscriptionProduct.SkProduct?.Discounts?.Find(
discount => discount.Identifier == "my_promo_offer_id"
);
if (promo != null) {
Qonversion.GetSharedInstance().GetPromotionalOffer(subscriptionProduct, promo, (promoOffer, error) => {
// Handle result here
});
}
Then make a purchase using this promo offer.
var purchaseOptions = new PurchaseOptionsBuilder()
.SetPromotionalOffer(promoOffer)
.Build();
Qonversion.GetSharedInstance().PurchaseProduct(
subscriptionProduct,
purchaseOptions,
(entitlements, error, isCancelled) =>
{
...
});
8.1.3
What's new
- Fixed popover presentation style for iPad
- Attempt to fix crash and race conditions in the User Properties manager.
8.1.2
What's new
- Added Tenjin AIID property for Tenjin integration
- The
SetNotificationToken
,HandleNotification
, andgetNotificationCustomPayload
methods were marked as deprecated. - Improved the accuracy of syncHistoricalData analytics on iOS.
- Fixed the compatibility issue with the latest Adjust SDK versions on iOS.
8.1.1
What's new
- Updated restore logic to process huge sandbox receipts faster.
- Fixed products issue.
- Fixed bundle issue.
8.1.0
What's new
Purchase options
- Added option to set context keys, quantity, and other options for purchases. Context keys will allow you to associate the purchase with remote configuration if the product info was loaded from there.
- Deprecated old purchase functions. Use a new one instead.
Also
- iOS error codes improved.
8.0.1
What's new
- Fixed bug with
checkEntitlements
calls on Android when the callback might not have been called after subscription state changes during the app session.
7.5.2
What's new
- Fixed bug with
checkEntitlements
calls on Android when the callback might not have been called after subscription state changes during the app session.
8.0.0
New major release of Qonversion React Native SDK with the new Google Play Billing Library 7 support!
- installment plans supported for subscriptions
- fallback files support added for improved reliability
- several error code values updated
For the migration steps and the complete list of changes see the following guide.
7.5.1
What's new
- Fixed offline mode issue on Android
7.5.0
What's new
- Internal logic update