Skip to content

Releases: qonversion/capacitor-plugin

0.2.0

22 Nov 10:49
f77bbef
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
);

0.1.3

04 Nov 14:26
561a7bc
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.

0.1.2

16 Oct 08:56
ac23682
Compare
Choose a tag to compare

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

14 Oct 10:31
c3f801d
Compare
Choose a tag to compare

What's new

  • Fixed iOS podspec filename issue.

0.1.0

09 Oct 15:19
f04d3b9
Compare
Choose a tag to compare

Meet our new Qonversion Capacitor plugin!

This is the first version 0.1.0. See the docs for the integration steps.