Releases: qonversion/react-native-sdk
Releases · qonversion/react-native-sdk
Release list
8.2.4
What's new
- Android and iOS stability improvements.
9.0.0
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
What's new
- Fixed wrong remote config payload type
8.2.2
What's new
- Fixed issue with inaccurate and missed responses
8.2.1
What's new
- Fixed iOS compile-time issue with the New Architecture.
8.2.0
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
What's new
- Fixed popover presentation style for iPad
- Attempt to fix crash and race conditions in the User Properties manager.
8.1.4
What's new
- Added Tenjin AIID property for Tenjin integration
- The
setNotificationToken,handleNotification, andgetNotificationCustomPayloadmethods 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
What's new
- Updated restore logic to process huge sandbox receipts faster.
- Fixed products issue.
- Fixed bundle issue.
8.1.2
What's new
- Added ability to call purchase without providing any options.