Skip to content

Releases: qonversion/unity-sdk

3.4.4

Choose a tag to compare

@SpertsyanKM SpertsyanKM released this 04 Aug 15:56
03bc496

What's new

  • Added isCancelled flag to purchase result. You can now check if the error occurred because the user manually canceled the flow or not. To receive that flag start using Purchase, PurchaseProduct, UpdatePurchase, and UpdatePurchaseWithProduct methods with new OnPurchaseResultReceived delegate instead of deprecated ones with OnPermissionsReceived delegate.
  • Added multiple parallel requests support for CheckPermissions, Restore, Products, and Offerings methods. If you were calling these methods from different parts of your app at the same moment, the first call used not to be responded at all. Now everything works fine!

3.4.3

Choose a tag to compare

@SpertsyanKM SpertsyanKM released this 05 Jul 12:31
d74e09d

What's new

  • Fixed extra GameObject creation on every getFinalInstance call.

3.4.2

Choose a tag to compare

@SpertsyanKM SpertsyanKM released this 22 Jun 14:04
b31f472

What's new

  • Fixed issue with parsing SKProduct price from a string.

3.4.1

Choose a tag to compare

@SpertsyanKM SpertsyanKM released this 19 Apr 13:16
c52108b

What's new

  • Added missing meta files.

3.4.0

Choose a tag to compare

@suriksarkisyan suriksarkisyan released this 19 Apr 12:55
f33c8e9

What's new

Offer codes redemption sheet

Function presentCodeRedemptionSheet shows up a sheet for users to redeem AppStore offer codes

Qonversion.PresentCodeRedemptionSheet();

3.3.1

Choose a tag to compare

@suriksarkisyan suriksarkisyan released this 30 Mar 12:43
c437b01

What's new

  • Minor improvements
  • Internal logic update

2.3.1

Choose a tag to compare

@suriksarkisyan suriksarkisyan released this 30 Mar 12:43
7bb1703

What's new

  • Minor improvements
  • Internal logic update

3.3.0

Choose a tag to compare

@SpertsyanKM SpertsyanKM released this 18 Mar 12:31
fd59178

What's new

Automations

Qonversion Automation allows sending automated, personalized push notifications and in-app messages initiated by in-app purchase events. This feature is designed to increase your app's revenue and retention, provide cancellation insights, reduce subscriber churn, and improve your subscribers' user experience.

See more in the documentation.

Deferred or interrupted purchases support

You are now able to subscribe to deferred or interrupted purchases updates as follows:

Qonversion.UpdatedPurchasesOccurred += HandleUpdatedPurchases;

private void HandleUpdatedPurchases(Dictionary<string, Permission> permissions)
{
    // handle updated permissions here
}

See more in the documentation.

App Store Promoted purchases support

Get notified about promo purchases or initialize purchase flow from your app.

For implementation instructions visit the documentation.

Also

  • Updated SDK API documentation.

2.3.0

Choose a tag to compare

@SpertsyanKM SpertsyanKM released this 18 Mar 12:21
8c9f824

What's new

Apple Search Ads

Qonversion SDK can now automatically collect Apple Search Ads attribution data. Just enable that using SetAppleSearchAdsAttributionEnabled method:

Qonversion.SetAppleSearchAdsAttributionEnabled(true);

Also

Updated SDK API documentation.

3.2.2

Choose a tag to compare

@Maria-Bordunova Maria-Bordunova released this 03 Feb 15:49
b92e978

What's new

  • Method setUserId marked as deprecated and will be removed in a future major release
  • iOS imports fix