Releases: qonversion/capacitor-plugin
Releases · qonversion/capacitor-plugin
0.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
);
0.1.3
What's new
- Fixed popover presentation style for iPad
- Attempt to fix crash and race conditions in the User Properties manager.
0.1.2
What's new
- Added Tenjin AIID property for Tenjin integration
- Improved the accuracy of syncHistoricalData analytics on iOS.
- Fixed the compatibility issue with the latest Adjust SDK versions on iOS.
0.1.1
What's new
- Fixed iOS podspec filename issue.