Skip to content

Releases: RevenueCat/purchases-unity

6.6.1

13 Dec 17:56
Compare
Choose a tag to compare

Dependency Updates

6.6.0

06 Dec 19:15
Compare
Choose a tag to compare

Dependency Updates

6.5.0

29 Nov 19:20
Compare
Choose a tag to compare

New Features

  • Adds isConfigured (#375) via Cesar de la Vega (@vegaro)

Bugfixes

  • Fix isAnonymous in iOS (#376) via Cesar de la Vega (@vegaro)

6.4.0

23 Nov 11:01
Compare
Choose a tag to compare

New Features

  • Trusted entitlements: Add support for trusted entitlements (#370) via Toni Rico (@tonidero)

Dependency Updates

Other Changes

6.3.1

15 Nov 19:17
Compare
Choose a tag to compare

Dependency Updates

3.5.4

13 Nov 16:47
6c9ebb0
Compare
Choose a tag to compare

Update purchases-ios to version 3.14.4

6.3.0

08 Nov 17:46
Compare
Choose a tag to compare

Dependency Updates

6.2.0

01 Nov 17:57
Compare
Choose a tag to compare

Dependency Updates

6.1.0

26 Oct 16:03
Compare
Choose a tag to compare

Dependency Updates

Other Changes

  • Remove creation of special UnityIAP package (#346) via Cesar de la Vega (@vegaro)
  • Add BillingClient versions to VERSIONS table (#345) via Cesar de la Vega (@vegaro)
  • Update Unity IAP compatibility for v6 in VERSIONS.md (#344) via Cesar de la Vega (@vegaro)
  • update RELEASING file to use the latest process (#342) via Andy Boedo (@aboedo)

6.0.0

05 Oct 14:44
Compare
Choose a tag to compare

RevenueCat Unity SDK v6 is here!! 😻

This latest release updates the SDK to use BillingClient 6 in Android. This version of BillingClient brings little change compared with BillingClient 5 which brought an entire new subscription model which resulted in large changes across the entire SDK.

The only modification at the API level involves replacing "ProrationMode" with "ReplacementMode". The specific replacement modes remain unchanged.

If your app doesn't currently use DEFERRED replacement modes, then you should be safe to upgrade to this version without changes in behavior.

If your app supports product changes using DEFERRED replacement mode, then you can either stick with the previous major version until support for DEFERRED is re-introduced in this major version, or you can remove DEFERRED replacement options from your app.

If you are using the SDK in observer mode, you should only use v6 in Android if you're using BillingClient 6.

See the Android Native - 6.x to 7.x Migration for more details.

If you come from an older version of the RevenueCat SDK, see Android Native - 5.x to 6.x Migration for a more thorough explanation of the new Google subscription model announced with BillingClient 5 and how to take advantage of it.

Bumped minimum Android SDK version

RevenueCat SDK v7 bumps minimum Android SDK version from Android 4.0 (API level 16) to Android 4.4 (API level 19).

Support for InApp Messages

We've added new APIs to support InApp messages both in Android and iOS.
You can read more about:

  • Google Play InApp Messages which will show users a snackbar message during grace period and account hold once per day and provide them an opportunity to fix their payment without leaving the app.
  • App Store InApp messages which will show a modal during grace period once per subscription.

InApp Messages are shown by default in both platforms. If you want to disable this behaviour during configuration of the RevenueCat SDK, setup the shouldShowInAppMessagesAutomatically property during configuration to false:

Purchases.PurchasesConfiguration.Builder builder = Purchases.PurchasesConfiguration.Builder.Init("api_key");
Purchases.PurchasesConfiguration purchasesConfiguration =
    builder.SetShouldShowInAppMessagesAutomatically(false)
    .Build();
purchases.Configure(purchasesConfiguration);

New Features

  • Add missing IntroEligibilityStatusNoIntroOfferExists (#335) via NachoSoto (@NachoSoto)

Dependency Updates