diff --git a/fern/docs/pages/sdks/mobile/cordova/migration-guide.mdx b/fern/docs/pages/sdks/mobile/cordova/migration-guide.mdx index f7deb0dc..26563279 100644 --- a/fern/docs/pages/sdks/mobile/cordova/migration-guide.mdx +++ b/fern/docs/pages/sdks/mobile/cordova/migration-guide.mdx @@ -6,7 +6,7 @@ This guide and chart should help facilitate the transition from the legacy UserE | Feature | UserExperior SDK | DevRev SDK | |-|-|-| -| Installation | `cordova plugin add userexperior-cordova-plugin@` | `cordova plugin add devrev-cordova-plugin@` | +| Installation | `cordova plugin add userexperior-cordova-plugin@` | `npm install @devrev/sdk-cordova` | | Initialization | `UserExperior.startRecording(appID)` | `DevRev.configure(appID, successCallback, errorCallback)` | | User Identification | `UserExperior.setUserIdentifier(userIdentifier)` | `DevRev.identifyAnonymousUser(userID, successCallback, errorCallback)`
`DevRev.identifyUnverifiedUser(identity, successCallback, errorCallback)`
`DevRev.updateUser(identity, successCallback, errorCallback)`
`DevRev.logout(deviceID, successCallback, errorCallback)` | | Event Tracking | `UserExperior.logEvent(name)` | `DevRev.trackEvent(name, properties, successCallback, errorCallback)` | diff --git a/fern/docs/pages/sdks/mobile/cordova/quickstart.mdx b/fern/docs/pages/sdks/mobile/cordova/quickstart.mdx index 7df7e558..0172af50 100644 --- a/fern/docs/pages/sdks/mobile/cordova/quickstart.mdx +++ b/fern/docs/pages/sdks/mobile/cordova/quickstart.mdx @@ -12,7 +12,7 @@ This guide helps you integrate the DevRev SDK into your Cordova app. To install the DevRev SDK, run the following command: ```sh -cordova plugin add devrev/sdk-cordova +npm install @devrev/sdk-cordova ``` ## Set up the DevRev SDK diff --git a/fern/docs/pages/sdks/mobile/react-native/quickstart-expo.mdx b/fern/docs/pages/sdks/mobile/react-native/quickstart-expo.mdx index 1a515182..78112c46 100644 --- a/fern/docs/pages/sdks/mobile/react-native/quickstart-expo.mdx +++ b/fern/docs/pages/sdks/mobile/react-native/quickstart-expo.mdx @@ -7,7 +7,8 @@ DevRev SDK, used for integrating DevRev services into your Expo app. - `expo` (any version) - `react-native` (compatible with Expo version) -- `@devrev/sdk-react-native` (version 1.0.2 or higher) +- `@devrev/sdk-react-native` (version 2.1.0 or higher) +- Minimum deployment target Android SDK 24 or iOS 15.1. ## Installation diff --git a/fern/docs/pages/sdks/mobile/react-native/quickstart.mdx b/fern/docs/pages/sdks/mobile/react-native/quickstart.mdx index f07201da..8d0eb5b7 100644 --- a/fern/docs/pages/sdks/mobile/react-native/quickstart.mdx +++ b/fern/docs/pages/sdks/mobile/react-native/quickstart.mdx @@ -2,6 +2,9 @@ This guide helps you integrate the DevRev SDK into your React Native app. +## Requirements +- Minimum deployment target Android SDK 24 or iOS 15.1. + ## Installation To install the DevRev SDK, run the following command: