Qonversion React Native Sdk Versions Save

React Native SDK for cross-platform in-app purchase and subscription infrastructure, revenue analytics, engagement automation, and integrations

6.0.1

9 months ago

What's new

  • Fixed a small bug with setting ADVERTISING_ID property on Android.

6.0.0

9 months ago

What's new

  • New userProperties method to get all the properties set for the current user.
  • Renamings of several entities and public methods to make our namings and structure clearer.

For the complete list of changes, please, see the migration guide

5.0.2

10 months ago

What's new

  • Android 14 support.

5.0.1

10 months ago

What's new

  • Internal logic update

5.0.0

11 months ago

Major update

What's new

  • Remastered A/B test. Check details in the documentation.
  • Google Play Billing library upgraded to version 6.0.0 without breaking changes - we will add new features support in the future releases.
  • Several Android dependencies versions upgrade, like Kotlin, Gradle and others.

4.4.2

11 months ago

What's new

  • Added native SDK crash tracking.

4.4.1

1 year ago

What's new

  • Parallel requests and race conditions fixed for entitlements state changing calls

4.4.0

1 year ago

What's new

  • Added function to sync transactions for StoreKit 2. The function should be used only in rare cases to avoid StoreKit 2 bugs. Contact us before using that function.

4.3.0

1 year ago

What's new

  • Added function to sync the user's historical data.

4.2.0

1 year ago

What's new

  • Added function to enable Qonversion SDK Kids mode via the builder. With this mode activated, our SDK does not collect any information that violates Google Children’s Privacy Policy.
import Qonversion, {
  QonversionConfigBuilder,
  LaunchMode,
} from 'react-native-qonversion';

const config = new QonversionConfigBuilder(
  'projectKey',
  LaunchMode.SUBSCRIPTION_MANAGEMENT
)
 .enableKidsMode()
 .build();
Qonversion.initialize(config);