Skip to content

Releases: qonversion/unity-sdk

2.2.2

03 Feb 15:48
dd41bce
Compare
Choose a tag to compare

What's new

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

3.2.1

21 Dec 16:20
f540672
Compare
Choose a tag to compare

What's new

  • PreferencesManager import fix

2.2.0

12 Aug 21:55
0278882
Compare
Choose a tag to compare

What's new

Errors details

From now Qonversion SDK returns more details about the error received. Check the details in the QonversionError object and in the documentation.
Error details contain information on receipt validation error, project configuration issues, invalid or fraud purchases, wrong credentials, etc.

Product update

New Product fields: StoreTitle, StoreDescription, Price, CurrencyCode, PrettyIntroductoryPrice.

Minor improvements

Updated background mode logic

3.2.0

15 Oct 11:43
ac491fa
Compare
Choose a tag to compare

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);
  • 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();
  • A/B Testing

A/B testing makes it easy to run and analyze in-app subscription experiments to quickly find the best subscription price, duration, and other parameters that maximize your app's revenue in the long run.
It is an out-of-the-box solution that does not require any third-party service. You can roll out the winning version of the experiment to all users instantly without releasing a new app version.

See the details in our documentation to set up your first subscription pricing A/B experiment

3.1.1

23 Aug 15:50
e746f03
Compare
Choose a tag to compare

What's new

Fix StrictMode policy violation errors in the Google Play Console pre-launch report.

2.2.1

20 Dec 08:05
11513e0
Compare
Choose a tag to compare

What's new

Fix StrictMode policy violation errors in the Google Play Console pre-launch report.

3.1.0

12 Aug 21:57
a006060
Compare
Choose a tag to compare

What's new

Errors details

From now Qonversion SDK returns more details about the error received. Check the details in the QonversionError object and in the documentation.
Error details contain information on receipt validation error, project configuration issues, invalid or fraud purchases, wrong credentials, etc.

Product update

New Product fields: StoreTitle, StoreDescription, Price, CurrencyCode, PrettyIntroductoryPrice.

Minor improvements

Updated background mode logic

3.0.0

09 Jul 15:56
12cbabf
Compare
Choose a tag to compare

From now Qonversion supports Google Play Billing Library 4.0.0.
If you are using Qonversion Unity SDK in Observer Mode, please check the Google Play Billing Library version in your in-app subscription implementation. For the library version 3.x.y, you have to use the major version of the SDK 2.x.y. In other cases use the latest SDK version (version 3.0.0 and above).

2.1.3

03 May 11:31
aabe332
Compare
Choose a tag to compare

What's new

Intro eligibility

You can check if a user is eligible for an introductory offer, including a free trial. On the Apple platform, users who have not previously used an introductory offer for any products in the same subscription group are eligible for an introductory offer. Use this method to determine eligibility.

You can show only a regular price for users who are not eligible for an introductory offer.

string[] productIds = {"premium"};

Qonversion.CheckTrialIntroEligibilityForProductIds(productIds, (eligibility, error) =>
{
    if (error == null)
    {
        if (eligibility.TryGetValue("premium", out Eligibility premiumEligibility) && premiumEligibility.Status == EligibilityStatus.Eligible)
        {
            // handle available eligibility
        }
    }
});

2.1.2

22 Apr 17:17
c53c72b
Compare
Choose a tag to compare

What's new

iOS updates

  • SKProduct issue fix
  • Unfinished transactions fix
  • Minor improvements

User properties

User properties are attributes you can set on a user level. You can send user properties to third-party platforms as well as use them in Qonversion for customer segmentation and analytics.

Qonversion.SetProperty(UserProperty.Email, "me@qonversion.io");