Identification

To access certain features of the DevRev SDK, user identification is required.

The identification function should be placed appropriately in your app after the user logs in. If you have the user information available at app launch, call the function after the DevRev.configure(context, appID) method.

The Identity structure allows for custom fields in the user, organization, and account traits. These fields must be configured through the DevRev app before they can be utilized. For more information, refer to Object customization.

Anonymous identification

The anonymous identification method allows you to create an anonymous user with an optional user identifier, ensuring that no other data is stored or associated with the user.

1DevRev.identifyAnonymousUser(
2 userId: String
3)

Unverified identification

The unverified identification method identifies users with a unique identifier, but it does not verify their identity with the DevRev backend.

1DevRev.identifyUnverifiedUser(
2 identity: Identity
3)

The function accepts the DevRev.Identity structure, with the user identifier (userID) as the only required property, all other properties are optional.

For example:

1// Identify an unverified user using their email address as the user identifier.
2DevRev.identifyUnverifiedUser(Identity(userId = "user@example.org"))

Verified identification

The verified identification method is used to identify the user with a unique identifier and verify the user’s identity with the DevRev backend.

1DevRev.identifyVerifiedUser(userId: String, sessionToken: String)

Updating the user

To update a user’s information, use the following method:

1DevRev.updateUser(
2 identity: Identity
3)

The function accepts the DevRev.Identity ojbect.

The userID property cannot be updated.

Logout

You can perform a logout of the current user by calling the following method:

1DevRev.logout(context: Context, deviceId: String)

The user will be logged out by clearing their credentials, as well as unregistering the device from receiving push notifications, and stopping the session recording.

PLuG support chat

Once user identification is complete, you can start using the chat (conversations) dialog supported by our DevRev SDK. To open the chat dialog, your application should use the showSupport API, as shown in the following example:

1DevRev.showSupport(context: Context)

Creating a new conversation

You have the ability to create a new conversation from within your app. The method will show the support chat screen and create a new conversation at the same time.

1DevRev.createSupportConversation(context: Context)

The DevRev SDK also provides a support button, which can be integrated into your application. To include it on the current screen, add the following code to your XML layout:

1<ai.devrev.sdk.plug.view.PlugFloatingActionButton
2 android:id="@+id/plug_fab"
3 android:layout_width="wrap_content"
4 android:layout_height="wrap_content"
5 android:layout_margin="24dp"
6 app:layout_constraintBottom_toBottomOf="parent"
7 app:layout_constraintEnd_toEndOf="parent" />

The support button can be customized using default parameters, enabling you to tailor its appearance to your application’s design.

1android:src="@your_drawable_here"

and

1android:backgroundTint="@your_background_color"

At this stage, your app is fully configured to utilize all functionalities of the DevRev SDK. Pressing the support button directs the user to the chat interface, enabling effective interaction and support.

The DevRev SDK provides a mechanism to handle links opened from within any screen that is part of the DevRev SDK.

You can fully customize the link handling behavior by setting the specialized in-app link handler. That way you can decide what should happen when a link is opened from within the app.

1DevRev.setInAppLinkHandler(handler: (String) -> Unit)

You can further customize the behavior by setting the setShouldDismissModalsOnOpenLink boolean flag. This flag controls whether the DevRev SDK should dismiss the top-most modal screen when a link is opened.

1DevRev.setShouldDismissModalsOnOpenLink(value: boolean)

For example:

1DevRev.setInAppLinkHandler { link ->
2 // Do something here
3}
4
5DevRev.setShouldDismissModalsOnOpenLink(false)

Analytics

The DevRev SDK allows you to send custom analytic events by using a name and a string dictionary. You can track these events using the following function:

1DevRev.trackEvent(name: String, properties: HashMap<String, String>)

For example:

1DevRev.trackEvent(name = "open-message-screen", properties = {"id": "message-1337"})

Session analytics

The DevRev SDK provides observability features to help you understand how your users are interacting with your app.

Opt in or out

Session analytics features are opted-in by default, enabling them from the start. However, you can opt-out using the following method:

1DevRev.stopAllMonitoring()

To opt back in, use the following method:

1DevRev.resumeAllMonitoring()

You can check whether session monitoring has been enabled by using this property:

If session recording was disabled for the user using the stopAllMonitoring() method, you can enable recording at runtime with this method.

1DevRev.isMonitoringEnabled

If the user was disabled for session recording by using the stopAllMonitoring() method, you can use this method to enable recording at runtime.

This feature will only store a monitoring permission flag, it will not provide any UI or dialog.

Session recording

You can enable session recording to capture user interactions with your app.

The session recording feature is opt-out and is enabled by default.

Here are the available methods to help you control the session recording feature:

ActionKotlin (DevRev)Java (DevRevObservabilityExtKt)
Starts the session recording.startRecording()startRecording(DevRev.INSTANCE, context);
Ends the session recording and uploads it to the portal.stopRecording()stopRecording(DevRev.INSTANCE);
Pauses the ongoing session recording.pauseRecording()pauseRecording(DevRev.INSTANCE);
Resumes a paused session recording.resumeRecording()resumeRecording(DevRev.INSTANCE);

Using this property will return the status of the session recording:

1DevRev.isRecording

To check if on-demand sessions are enabled, use:

1DevRev.areOnDemandSessionsEnabled

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 dictionary of string values.

1DevRev.addSessionProperties(properties: HashMap<String, Any>)

To clear the session properties in scenarios such as user logout or when the session ends, use the following method:

1DevRev.clearSessionProperties()

Masking sensitive data

To protect sensitive data, the DevRev SDK provides an auto-masking feature that masks data before sending to the server. Input views such as text fields, text views, and web views are automatically masked.

While the auto-masking feature may be sufficient for most situations, you can manually mark/unmark additional views as sensitive.

Mask

Using tag

Use Tag method only when you don’t have any other tag already applied to your UI element.

1android:tag="devrev-mask"

For example:

1<WebView
2 android:id="@+id/webview2"
3 android:layout_width="fill_parent"
4 android:layout_height="200dp"
5 android:background="@android:color/transparent"
6 android:tag="devrev-mask"/>

You can also set the tag programmatically:

1val anyView: View = findViewById(R.id.anyView)
2anyView.tag = "devrev-mask"
Using API
1DevRev.markSensitiveViews(sensitiveViews: List<View>)

For example:

1val view1 = findViewById(R.id.view1)
2val view2 = findViewById(R.id.view2)
3
4DevRev.markSensitiveViews(listOf(view1, view2))

Unmask

Using tag

Use Tag method only when you don’t have any other tag already applied to your UI element.

1android:tag="devrev-unmask"

For example:

1<WebView
2 android:id="@+id/webview2"
3 android:layout_width="fill_parent"
4 android:layout_height="200dp"
5 android:background="@android:color/transparent"
6 android:tag="devrev-unmask"/>

You can also set the tag programmatically:

1val anyView: View = findViewById(R.id.anyView)
2anyView.tag = "devrev-unmask"
Using API
1DevRev.unmarkSensitiveViews(sensitiveViews: List<View>)

For example:

1val view1 = findViewById(R.id.view1)
2val view2 = findViewById(R.id.view2)
3
4DevRev.unmarkSensitiveViews(listOf(view1, view2))

Mask jetpack compose views

If you want to mask any Jetpack Compose UI element(s) or view(s), you can apply a mask on it using a modifier.

1modifier = Modifier.markAsMaskedLocation("Name or ID of the Compose View")

For example:

1TextField(
2 modifier = Modifier
3 .markAsMaskedLocation("myTextField")
4 .padding(horizontal = 20.dp)
5 .onGloballyPositioned { coordinates = it },
6 value = input,
7 onValueChange = { input = it }
8)

Mask webView elements

If you wish to mask any WebView element on a Web page explicitly, you can mask it by using class ‘devrev-mask’

For example:

1<label class="devrev-mask">OTP: 12345</label>

Unmask webView elements

If you wish to explicitly un-mask any manually masked WebView element, you can un-mask it by using class ‘devrev-unmask’

For example:

1<input type="text" placeholder="Enter Username" name="username" required class="devrev-unmask">

Timers

The DevRev SDK offers a timer mechanism to measure the time spent on specific tasks, allowing you to track events such as response time, loading time, or any other duration-based metrics.

The mechanism works using balanced start and stop methods that both accept a timer name and an optional dictionary of properties.

To start a timer, use the following method:

1DevRev.startTimer(name: String, properties: HashMap<String, String>)

To stop a timer, use the following method:

1DevRev.endTimer(name: String, properties: HashMap<String, String>)

For example:

1DevRev.startTimer("response-time", properties: {"id": "task-1337"})
2
3// Perform the task that you want to measure.
4
5DevRev.endTimer("response-time", properties: {"id": "task-1337"})

Screen tracking

The DevRev SDK offers automatic screen tracking to help you understand how users navigate through your app. Although view controllers are automatically tracked, you can manually track screens using the following method:

1DevRev.trackScreenName(screenName: String)

For example:

1DevRev.trackScreenName("profile-screen")

Screen transition management

The DevRev SDK allows tracking of screen transitions to understand user navigation within your app. You can check if a screen transition is in progress and manually update the state using the following methods:

Check if the screen is transitioning

1val isTransitioning = DevRev.isInScreenTransitioning

Set screen transitioning state

1DevRev.setInScreenTransitioning(true) // start transition
2DevRev.setInScreenTransitioning(false) // stop transition

Push notifications

You can configure your app to receive push notifications from the DevRev SDK. The SDK is designed to handle push notifications and execute actions based on the notification’s content.

The DevRev backend sends push notifications to your app to notify users about new messages in the PLuG support chat.

To receive push notifications, you need to configure your DevRev organization by following the instructions in the push notifications section.

You need to ensure that your Android app is configured to receive push notifications. To set it up, follow the Firebase documentation.

Register for push notifications

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 offers a method to register your device for receiving push notifications. You can register for push notifications using the following method:

1DevRev.registerDeviceToken(
2 context: Context,
3 deviceId: String,
4 deviceToken: String
5)

The method requires a device identifier that persists across device restarts and app launches. This could be a Firebase installation ID, Android ID, or a unique system identifier. To obtain the device token for Firebase Cloud Messaging, follow these steps:

  1. Use the FirebaseMessaging object.
  2. Call the firebaseMessaging.token.await() method.

This method will generate and return the device token.

1val firebaseMessaging = FirebaseMessaging.getInstance()
2val token = firebaseMessaging.token.await()
3// Use the token as needed

Unregister from push notifications

If your app no longer needs to receive push notifications, you can unregister the device.

Use the following method to unregister the device:

The method requires the device identifier, which should be the same as the one used when registering the device.

1DevRev.unregisterDevice(
2 context: Context,
3 deviceId: String
4)

The method requires the device identifier, which should be the same as the one used when registering the device.

Handle push notifications

The DevRev SDK currently does not support automatic handling of push notifications. To open the PLuG chat and manage navigation internally, you must pass the message payload received in the notification to the SDK.

1DevRev.processPushNotification(
2 context: Context,
3 userInfo: String
4)

To extract the notification payload, do the following:

  1. In Firebase Cloud Messaging (FCM), when a push notification is received, it triggers the onMessageReceived function in your FirebaseMessagingService class.
  2. This function receives a RemoteMessage object as a parameter, which contains the notification data.
  3. The RemoteMessage object has a data property, which is a map containing key-value pairs of the notification payload.
  4. To extract a specific piece of data from the payload, use the key to access the value in the data map.
  5. To retrieve the “message” from the payload:
1val message = remoteMessage.data["message"]

For example:

1class MyFirebaseMessagingService: FirebaseMessagingService {
2 // ...
3
4 override fun onMessageReceived(remoteMessage: RemoteMessage) {
5 // ...
6 val messageData = remoteMessage.data["message"]
7 DevRev.processPushNotification(messageData)
8 }
9}
Built with