Skip to content

Releases: qonversion/react-native-sdk

8.2.3

16 Jan 08:43
8df3db7
Compare
Choose a tag to compare

What's new

  • Fixed wrong remote config payload type

8.2.2

17 Dec 12:03
a66106e
Compare
Choose a tag to compare

What's new

  • Fixed issue with inaccurate and missed responses

8.2.1

12 Dec 21:14
296e7ba
Compare
Choose a tag to compare

What's new

  • Fixed iOS compile-time issue with the New Architecture.

8.2.0

22 Nov 07:59
90a9dd7
Compare
Choose a tag to compare

What's new

  • iOS promotional offers support

To load the promo offer data, call the following function.

try {
  // You can obtain the product and discount in any other way. This approach is used here as an example.
  const promo = subscriptionProduct.skProduct?.discounts.find(discount =>
      discount.identifier === 'my_promo_offer_id'
  );
  
  const promoOffer = await Qonversion.getSharedInstance().getPromotionalOffer(subscriptionProduct, promo);
  // handle promo offer here
} catch (e) {
  // handle error here
}

Then make a purchase using this promo offer.

const purchaseOptions = new PurchaseOptionsBuilder()
  .setPromotionalOffer(promoOffer))
  .build();
const entitlements = await Qonversion.getSharedInstance().purchaseProduct(
  subscriptionProduct,
  purchaseOptions
);

8.1.5

04 Nov 13:36
5677057
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.4

16 Oct 09:02
1600bc5
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.3

10 Sep 12:53
e20cfc0
Compare
Choose a tag to compare

What's new

8.1.2

04 Sep 09:56
e80a4ca
Compare
Choose a tag to compare

What's new

  • Added ability to call purchase without providing any options.

8.1.1

30 Aug 12:40
cfff240
Compare
Choose a tag to compare

What's new

  • iOS error codes improved

8.1.0

25 Aug 17:03
182bbbb
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 new one instead.