diff --git a/code_blocks/getting-started/installation/flutter_1.yaml b/code_blocks/getting-started/installation/flutter_1.yaml index 96760ad5..a2ae92e1 100644 --- a/code_blocks/getting-started/installation/flutter_1.yaml +++ b/code_blocks/getting-started/installation/flutter_1.yaml @@ -1,2 +1,2 @@ dependencies: - purchases_flutter: ^6.0.0 \ No newline at end of file + purchases_flutter: diff --git a/code_blocks/getting-started/installation/kmp_1.toml b/code_blocks/getting-started/installation/kmp_1.toml index 996ce0b7..d7558675 100644 --- a/code_blocks/getting-started/installation/kmp_1.toml +++ b/code_blocks/getting-started/installation/kmp_1.toml @@ -1,5 +1,5 @@ [versions] -purchases-kmp = "1.1.0+13.3.0" +purchases-kmp = "" [libraries] # Required diff --git a/docs/getting-started/installation/android.mdx b/docs/getting-started/installation/android.mdx index 4fa919e2..aad74ed6 100644 --- a/docs/getting-started/installation/android.mdx +++ b/docs/getting-started/installation/android.mdx @@ -12,10 +12,10 @@ RevenueCat provides a backend and a wrapper around StoreKit and Google Play Bill ### Installation -Purchases for Android (Google Play and Amazon Appstore) is available on Maven and can be included via Gradle. - [![Release](https://img.shields.io/github/release/RevenueCat/purchases-android.svg?style=flat)](https://github.com/RevenueCat/purchases-android/releases) +Purchases for Android (Google Play and Amazon Appstore) is available on Maven and can be included via Gradle. + import content from "!!raw-loader!@site/code_blocks/getting-started/installation/android_1.groovy"; ' +implementation 'com.revenuecat.purchases:purchases-ui:' ``` -:::danger -Android paywalls is currently behind an experimental flag (`ExperimentalPreviewRevenueCatUIPurchasesAPI`). - -It is safe to release app updates with it. We guarantee that paywalls will continue to work and any changes will always be backwards compatible. - -They are stable, but migration steps may be required in the future. We'll do our best to minimize any changes you have to make. -::: - ## React Native Installation +[![Release](https://img.shields.io/github/release/RevenueCat/react-native-purchases.svg?style=flat)](https://github.com/RevenueCat/react-native-purchases/releases) + - Update your `package.json` to include `react-native-purchases-ui`: ```json { "dependencies": { - "react-native-purchases": "7.15.0", - "react-native-purchases-ui": "7.15.0" + "react-native-purchases": "", + "react-native-purchases-ui": "" } } ``` ## Flutter Installation +[![Release](https://img.shields.io/github/release/RevenueCat/purchases-flutter.svg?style=flat)](https://github.com/RevenueCat/purchases-flutter/releases) + - Add `purchases-ui-flutter` in your `pubspec.yaml`: ```yaml dependencies: - purchases_flutter: 6.15.0 - purchases_ui_flutter: 6.15.0 + purchases_flutter: + purchases_ui_flutter: ``` - For Android, you need to change your `MainActivity` to subclass `FlutterFragmentActivity` instead of `FlutterActivity`. ## Kotlin Multiplatform Installation +[![Release](https://img.shields.io/github/release/RevenueCat/purchases-kmp.svg?style=flat)](https://github.com/RevenueCat/purchases-kmp/releases) + Add the following Maven coordinates to your `libs.versions.toml`: ```toml libs.versions.toml [versions] -purchases-kmp = "1.1.0+13.3.0" +purchases-kmp = "" [libraries] purchases-core = { module = "com.revenuecat.purchases:purchases-kmp-core", version.ref = "purchases-kmp" }