Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fern/docs/pages/sdks/mobile/cordova/migration-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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@<version>` | `cordova plugin add devrev-cordova-plugin@<version>` |
| Installation | `cordova plugin add userexperior-cordova-plugin@<version>` | `npm install @devrev/sdk-cordova` |
| Initialization | `UserExperior.startRecording(appID)` | `DevRev.configure(appID, successCallback, errorCallback)` |
| User Identification | `UserExperior.setUserIdentifier(userIdentifier)` | `DevRev.identifyAnonymousUser(userID, successCallback, errorCallback)`<br /> `DevRev.identifyUnverifiedUser(identity, successCallback, errorCallback)`<br /> `DevRev.updateUser(identity, successCallback, errorCallback)`<br /> `DevRev.logout(deviceID, successCallback, errorCallback)` |
| Event Tracking | `UserExperior.logEvent(name)` | `DevRev.trackEvent(name, properties, successCallback, errorCallback)` |
Expand Down
2 changes: 1 addition & 1 deletion fern/docs/pages/sdks/mobile/cordova/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions fern/docs/pages/sdks/mobile/react-native/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading