Skip to content

Releases: qonversion/react-native-sdk

8.2.4

Choose a tag to compare

@SpertsyanKM SpertsyanKM released this 26 Jun 10:03
e229dff

What's new

  • Android and iOS stability improvements.

9.0.0

Choose a tag to compare

@github-actions github-actions released this 20 Jun 19:12
28a626b

Introducing Qonversion No-Codes Beta!

Qonversion No-Codes is a product designed to help you build and customize paywall screens without writing code.
It allows seamless integration of pre-built subscription UI components, enabling a faster and more flexible way to design paywalls directly within your app.
See more in the documentation.

With this update, we are removing deprecated Automations, so we encourage you to transition your paywalls to the new Qonversion No-Codes.

8.2.3

Choose a tag to compare

@github-actions github-actions released this 16 Jan 08:43
8df3db7

What's new

  • Fixed wrong remote config payload type

8.2.2

Choose a tag to compare

@github-actions github-actions released this 17 Dec 12:03
a66106e

What's new

  • Fixed issue with inaccurate and missed responses

8.2.1

Choose a tag to compare

@github-actions github-actions released this 12 Dec 21:14
296e7ba

What's new

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

8.2.0

Choose a tag to compare

@github-actions github-actions released this 22 Nov 07:59
90a9dd7

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

Choose a tag to compare

@github-actions github-actions released this 04 Nov 13:36
5677057

What's new

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

8.1.4

Choose a tag to compare

@github-actions github-actions released this 16 Oct 09:02
1600bc5

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

Choose a tag to compare

@github-actions github-actions released this 10 Sep 12:53
e20cfc0

What's new

8.1.2

Choose a tag to compare

@github-actions github-actions released this 04 Sep 09:56
e80a4ca

What's new

  • Added ability to call purchase without providing any options.