@devrev/sdk-react-native
v1.0.0-beta.4
Published
DevRev SDK, used for integrating DevRev services into your React Native app.
Downloads
125
Readme
DevRev SDK for React Native
DevRev SDK, used for integrating DevRev services into your React Native app.
Table of contents
- DevRev SDK for React Native
Installation
npm install @devrev/sdk-react-native
Setting up the DevRev SDK
Step 1: Credentials
- Open the DevRev web app at https://app.devrev.ai.
- Go to the Settings page.
- Then open the PLuG Settings page, and copy the value under Your Unique App ID.
Step 2: Configuration
[!IMPORTANT] The SDK must be configured before you can use any of its features.
Once you have the credentials, you can configure the DevRev SDK in your app. The SDK will be ready to use once you have called the configuration method:
DevRev.configure(appID: string)
Features
Identification
Certain features of the DevRev SDK require a user identification. There are two methods to identify your users:
- Anonymous users: Creates an anonymous user with an optional user identifier, no other data is stored or associated with the user.
- Unverified users: Identifies the user with a unique identifier, but does not verify the user's identity with the DevRev backend.
The identification functions should be placed at the appropriate place in your app after you login your user. If you have the user information at app launch, call the function after the DevRev.configure(appID:)
method.
[!IMPORTANT] If you haven't previously identified the user, the DevRev SDK will automatically create an anonymous user for you right after the SDK has been configured.
[!IMPORTANT] The user, organization and account traits in the
Identity
object also support custom fields, which need to be configured in the DevRev web app before they can be used. For more information, see Object customization.
Anonymous identification
The anonymous identification method is used to create an anonymous user with an optional user identifier.
DevRev.identifyAnonymousUser(userID: string)
Unverified identification
The unverified identification method is used to identify the user with a unique identifier, but does not verify the user's identity with the DevRev backend.
DevRev.identifyUnverifiedUser(userID: string, organizationID?: string)
Updating the user
You can update the user's information using the following method:
DevRev.updateUser(identity: Identity)
[!IMPORTANT] The
userID
property can not be updated.
PLuG support chat
The support chat feature can be shown as a modal screen from the top-most screen.
[!IMPORTANT] This feature requires that the SDK has been configured and the user has been identified (unverified and anonymous users).
DevRev.showSupport()
Analytics
The DevRev SDK supports sending custom analytic events using a properties map.
[!IMPORTANT] This feature requires that the SDK has been configured and the user has been identified (unverified and anonymous users).
You can track them using the following function:
DevRev.trackEvent(name: string, properties?: Map<string, string>)
Observability
The DevRev SDK provides observability features to help you understand how your users are interacting with your app.
Opting in/out
The observability features are opted-in by default, meaning that they are enabled from start. You can opt-out of the observability features by calling the following method:
DevRev.stopAllMonitoring()
To opt back in, you can call the following method:
DevRev.resumeAllMonitoring()
Session recording
You can enable session recording to record user interactions with your app.
[!CAUTION] The session recording feature is opt-out and is enabled by default.
The session recording feature has a number of methods to help you control the recording:
DevRev.startRecording()
: Starts the session recording.DevRev.stopRecording()
: Stops the session recording and uploads it to the portal.DevRev.pauseRecording()
: Pauses the ongoing session recording.DevRev.resumeRecording()
: Resumes a paused session recording.
Session properties
You can add custom properties to the session recording to help you understand the context of the session. The properties are defined as a map of string values.
DevRev.addSessionProperties(properties: Map<string, string>)
You also have the ability to clear the session properties in scenarios like user logout or when the session ends.
DevRev.clearSessionProperties()
Masking sensitive data
In order to protect sensitive data the DevRev SDK provides an auto-masking feature, which masks the data before it is being sent to the server. Input views such as text fields, text views, and web views are automatically masked.
While the auto-masking mechanism might be sufficient for most cases, you can also manually mark other views as sensitive using the following method:
DevRev.markSensitiveViews(tags: any[])
If any previously masked views need to be unmasked, you can use the following method:
DevRev.unmarkSensitiveViews(tags: any[])
Timers
As part of the observability features, the DevRev SDK provides a timer mechanism to help you measure the time spent on a specific task. Events such as response time, loading time, or any other time-based event can be measured using the timer.
The mechanism works using balanced start and stop methods that both accept a timer name and an optional dictionary of properties.
Start a timer using the method:
DevRev.startTimer(name: string, properties: Map<string, string>)
And balance it with the stop method:
DevRev.stopTimer(name: string, properties: Map<string, string>)
Screen tracking
The DevRev SDK provides automatic screen tracking to help you understand how users are navigating through your app. While view controllers are automatically tracked, you can also manually track screens using the following method:
DevRev.trackScreen(name: string)
Push notifications
You can configure your app to receive push notifications from the DevRev SDK. The SDK is able to handle push notifications and perform actions based on the content of the notification.
The DevRev backend sends push notifications to your app to notify users about new messages in the PLuG support chat. In the future, the push notification support will be expanded with additional features.
Configuration
In order to receive push notifications, you need to configure your DevRev organization by following the Push Notifications integration guide.
Registering for push notifications
[!IMPORTANT] Push notifications require that the SDK has been configured and the user has been identified (unverified and anonymous users). The user identification is required to send the push notification to the correct user.
The DevRev SDK provides a method to register your device for receiving push notifications. You can call the following method to register for push notifications:
DevRevSDK.registerDeviceToken(deviceToken: string, deviceID: string)
On Android devices the deviceToken
should be the Firebase Cloud Messaging (FCM) token value, and on iOS devices it should be the APNS (Apple Push Notification Service) token.
The deviceID
is a unique identifier for the device that must persist across device restarts and app launches.
Unregistering from push notifications
In cases when your app no longer wants to receive push notifications, you can unregister the device from receiving them. The method to unregister the device is:
DevRevSDK.unregisterDevice(deviceID: string)
The method requires the device identifier, which is the same as the one used for registering the device.
Processing push notification
Android
Android notifications are implemented as data messages for flexibility, but this means automatic click processing isn't available. To handle notification clicks, developers need to intercept the click event, extract the payload, and pass it to a designated method for processing. This custom approach allows for tailored notification handling in Android applications.
DevRevSDK.processPushNotification(payload: string)
Here, the message
object from the notification payload needs to be passed to this function.
Example
const notificationPayload = {
// message may be nested based on the notification library
"message": {
// ... (the entire message object)
}
};
const messageJson = notificationPayload["message"];
DevRevSDK.processPushNotification(JSON.stringify(messageJson));
iOS
On iOS devices you need to pass the received push notification payload to the DevRev SDK for processing. The SDK will handle the notification and perform the necessary actions:
DevRevSDK.processPushNotification(payload: string)
Example
DevRevSDK.processPushNotification(JSON.stringify(payload));
License
Apache 2.0