Skip to content

Commit 6c7285a

Browse files
Fix the Cordova installation command
1 parent 5345c49 commit 6c7285a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fern/docs/pages/sdks/mobile/cordova/migration-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This guide and chart should help facilitate the transition from the legacy UserE
66

77
| Feature | UserExperior SDK | DevRev SDK |
88
|-|-|-|
9-
| Installation | `cordova plugin add userexperior-cordova-plugin@<version>` | `npm install @devrev/sdk-cordova` |
9+
| Installation | `cordova plugin add userexperior-cordova-plugin@<version>` | `cordova plugin add @devrev/sdk-cordova` |
1010
| Initialization | `UserExperior.startRecording(appID)` | `DevRev.configure(appID, successCallback, errorCallback)` |
1111
| 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)` |
1212
| Event Tracking | `UserExperior.logEvent(name)` | `DevRev.trackEvent(name, properties, successCallback, errorCallback)` |

fern/docs/pages/sdks/mobile/cordova/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This guide helps you integrate the DevRev SDK into your Cordova app.
1212
To install the DevRev SDK, run the following command:
1313

1414
```sh
15-
npm install @devrev/sdk-cordova
15+
cordova plugin add @devrev/sdk-cordova
1616
```
1717

1818
## Set up the DevRev SDK

0 commit comments

Comments
 (0)