Skip to content

Releases: qonversion/flutter-sdk

3.2.0

02 Jun 13:41
4748197

Choose a tag to compare

What's new

Add support for Android v2 embedding

3.1.0

25 May 13:06
449bc7f

Choose a tag to compare

What's new

Identity

Call this function to link a user to his unique ID in your system and share purchase data.

Qonversion.identify("your_custom_user_id");

Call this function to unlink a user from his unique ID in your system and his purchase data.

Qonversion.logout();

Support for AppStore promo purchases

Qonversion.promoPurchasesStream.listen((productID) async {
  try {
    // check AppStore productID value in case you want to enable promoted purchase only for specific products
    // call `promoPurchase` if you want to allow promo purchase or just store productID and call when needed
    // don't call `promoPurchase` if you don't want to allow purchase
    final permissions = await Qonversion.promoPurchase(productID);
  } catch (e) {
    print(e);
  }
});

3.0.1

13 May 15:56
14ad2d8

Choose a tag to compare

What's new

  • Fix QOfferings mapping error.
  • Internal logic optimization for Android.

3.0.0

22 Apr 19:48
2c1f274

Choose a tag to compare

What's new

  • Add null safety support.
  • Increase min Dart SDK version to 2.12.0.

2.5.2

22 Apr 16:32
08f3ca8

Choose a tag to compare

What's new

iOS updates

  • SKProduct issue fix
  • Unfinished transactions fix
  • Minor improvements

2.5.1

12 Apr 14:34
183f10c

Choose a tag to compare

What's new

  • IDFA for iOS 14.5+
    On iOS 14.5+, after requesting the app tracking permission using ATT, you need to notify Qonversion if tracking is allowed and IDFA is available.
    Just call Qonversion.setAdvertisingID();

2.5.0

22 Mar 09:02
52c577f

Choose a tag to compare

What's new

  • MacOS support

2.4.1

17 Mar 08:44
2a10e92

Choose a tag to compare

What's new

Internal logic optimization and minor improvements

2.4.0

09 Mar 08:55
099e787

Choose a tag to compare

What's new

Deferred transactions

Now you can set the listener, which will be called when deferred transactions state will update.

Qonversion.updatedPurchasesStream.listen((permissions) => {
   // handle updated permissions here
});

2.3.0

03 Mar 12:41
de4accb

Choose a tag to compare

What's new

Cache

From now SDK will return all requested info (products/offerings/permissions) even in case of an internet connection error, the server problem, etc if cached data is not outdated.