Skip to content

Releases: qonversion/unity-sdk

8.2.0

21 Nov 15:58
67ac2ea
Compare
Choose a tag to compare

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

04 Nov 13:37
8f6d2d2
Compare
Choose a tag to compare

What's new

  • Fixed popover presentation style for iPad
  • Attempt to fix crash and race conditions in the User Properties manager.

8.1.2

16 Oct 09:00
de557b7
Compare
Choose a tag to compare

What's new

  • Added Tenjin AIID property for Tenjin integration
  • The SetNotificationToken, HandleNotification, and getNotificationCustomPayload 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

10 Sep 12:55
0f1ef22
Compare
Choose a tag to compare

What's new

8.1.0

06 Sep 11:58
6f2d21d
Compare
Choose a tag to compare

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

29 Jul 12:51
b400377
Compare
Choose a tag to compare

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

29 Jul 12:52
Compare
Choose a tag to compare

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

16 Jul 10:44
e647100
Compare
Choose a tag to compare

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

15 Jul 14:37
Compare
Choose a tag to compare

What's new

  • Fixed offline mode issue on Android

7.5.0

05 Jun 08:40
0887ff8
Compare
Choose a tag to compare

What's new

  • Internal logic update