Skip to content

Releases: qonversion/cordova-plugin

6.3.1

16 Jan 08:51
4d60804
Compare
Choose a tag to compare

What's new

  • Fixed wrong remote config payload type.

6.3.0

22 Nov 12:29
ea2ef20
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 Qonversion.PurchaseOptionsBuilder()
  .setPromotionalOffer(promoOffer))
  .build();
const entitlements = await Qonversion.getSharedInstance().purchaseProduct(
  subscriptionProduct,
  purchaseOptions
);

6.2.0

18 Nov 15:41
c8d21a3
Compare
Choose a tag to compare

What's new

  • Qonversion Automations supported.
  • Fixed updated entitlements listener multiple invocation issue.

6.1.4

04 Nov 13:39
963c515
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.

6.1.3

16 Oct 08:54
b4f58ce
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.

6.1.2

10 Sep 09:16
e4c1ba5
Compare
Choose a tag to compare

What's new

6.1.1

04 Sep 09:57
f33190a
Compare
Choose a tag to compare

What's new

  • Added ability to call purchase without providing any options.
  • iOS error codes improved.

6.1.0

02 Sep 17:09
ee9bedd
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.

6.0.1

29 Jul 12:36
a84dc06
Compare
Choose a tag to compare

What's new

  • Fixed bug with checkEntitlements calls on Android when the callback might not have been called after subscription state changes during the app session.

5.5.2

29 Jul 12:29
Compare
Choose a tag to compare

What's new

  • Fixed bug with checkEntitlements calls on Android when the callback might not have been called after subscription state changes during the app session.