Features
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.
Identify an anonymous user
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.
Kotlin
Java
Identify an unverified user
The unverified identification method identifies users with a unique identifier, but it does not verify their identity with the DevRev backend.
Kotlin
Java
The function accepts the DevRev.Identity
structure, with the user identifier (userID
) as the only required property, all other properties are optional.
For example:
Kotlin
Java
Identify a verified user
The verified identification method is used to identify users with an identifier unique to your system within the DevRev platform. The verification is done through a token exchange process between you and the DevRev backend.
The steps to identify a verified user are as follows:
- Generate an AAT for your system (preferably through your backend).
- Exchange your AAT for a session token for each user of your system.
- Pass the user identifier and the exchanged session token to the
DevRev.identifyVerifiedUser(userId: String, sessionToken: String)
method.
For security reasons, it is strongly recommended that the token exchange is executed on your backend to prevent exposing your application access token (AAT).
Generate an AAT
- Open the DevRev web app at https://app.devrev.ai and go to the Settings page.
- Open the PLuG Tokens page.
- Under the Application access tokens panel, click New token and copy the token that’s displayed.
Ensure that you copy the generated application access token, as you cannot view it again.
Exchange your AAT for a session token
To proceed with identifying the user, you need to exchange your AAT for a session token. This step helps you identify a user of your own system within the DevRev platform.
Here is a simple example of an API request to the DevRev backend to exchange your AAT for a session token:
Make sure that you replace the <AAT>
and <YOUR_USER_ID>
with the actual values.
The response of the API call contains a session token that you can use with the verified identification method in your app.
As a good practice, your app should retrieve the exchanged session token from your backend at app launch or any relevant app lifecycle event.
Identify the verified user
Pass the user identifier and the exchanged session token to the verified identification method:
Kotlin
Java
Updating the user
To update a user’s information, use the following method:
Kotlin
Java
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:
Kotlin
Java
The user is logged out by clearing their credentials, as well as unregistering the device from receiving push notifications, and stopping the session recording.
Identity model
The Identity
class is used to provide user, organization, and account information when identifying users or updating their details. This class is used primarily with the identifyUnverifiedUser(identity: Identity)
and updateUser(identity: Identity)
methods.
Properties
The Identity
class contains the following properties:
The custom fields properties defined as part of the user, organization and account traits, must be configured in the DevRev web app before they can be used. See Object customization for more information.
User traits
The UserTraits
class contains detailed information about the user:
All properties in UserTraits
are optional.
Organization traits
The OrganizationTraits
class contains detailed information about the organization:
All properties in OrganizationTraits
are optional.
Account traits
The AccountTraits
class contains detailed information about the account:
All properties in AccountTraits
are optional.
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:
Kotlin
Java
Create a new conversation
You have the ability to create a new conversation from within your app. The method shows the support chat screen and creates a new conversation at the same time.
Kotlin
Java
Support button
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:
The support button can be customized using default parameters, enabling you to tailor its appearance to your application’s design:
In-app link handling
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.
Kotlin
Java
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.
Kotlin
Java
For example:
Kotlin
Java
Dynamic theme configuration
The DevRev SDK allows you to configure the theme dynamically based on the system appearance, or use the theme configured on the DevRev portal. By default, the theme is dynamic and follows the system appearance.
Kotlin
Java
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:
Kotlin
Java
For example:
Kotlin
Java
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:
Kotlin
Java
To opt back in, use the following method:
Kotlin
Java
You can check whether session monitoring has been enabled by using this property:
Kotlin
Java
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:
Kotlin
Java
Using this property returns the status of the session recording:
Kotlin
Java
To check if on-demand sessions are enabled, use:
Kotlin
Java
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.
Kotlin
Java
To clear the session properties in scenarios such as user logout or when the session ends, use the following method:
Kotlin
Java
Mask 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.
The SDK provides two approaches to manually mask or unmask your views, using a set of predefined tags or using the API methods.
Mask using predefined tags
Use the tag method only when you don’t have any other tag already applied to your UI element.
Masking views using the predefined tags is the simplest way to mask your views, use the tag devrev-mask
to mask a view and devrev-unmask
to unmask a view.
-
Mark a view as masked:
-
Mark a view as unmasked:
For example:
The tags can also be set programmatically:
Kotlin
Java
- Mark a view as masked:
- Mark a view as unmasked:
Mask using the API methods
You can also use the API methods to mask or unmask your views programmatically.
Kotlin
Java
- Mark a view as masked:
- Mark a view as unmasked:
For example:
Kotlin
Java
Mask Jetpack Compose views
If you want to mask any Jetpack Compose UI elements or views, you can apply a mask on it using a modifier.
For example:
Mask elements inside web views
Masking elements inside web views (WebView
) can be achieved by using the CSS class devrev-mask
to mask an element and devrev-unmask
to unmask an element.
- Mark an element as masked:
- Mark an element as unmasked:
Custom masking provider
For advanced use cases, you can provide a custom masking provider to explicitly specify which regions of the UI should be masked during snapshots.
You can implement your own masking logic by creating a class that implements the MaskLocationProvider
interface and setting your custom object as the masking provider. This allows you to specify explicit regions to be masked or to skip snapshots entirely.
For example:
Kotlin
Java
Setting a new provider overrides any previously set masking location provider.
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:
Kotlin
Java
To stop a timer, use the following method:
Kotlin
Java
For example:
Kotlin
Java
Track screens
The DevRev SDK offers automatic screen tracking to help you understand how users navigate through your app. Although activities and fragments are automatically tracked, you can manually track screens using the following method:
Kotlin
Java
For example:
Kotlin
Java
Manage screen transitions
The DevRev SDK allows tracking of screen transitions to understand the 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
Kotlin
Java
Set screen transitioning state
Kotlin
Java
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.
Configuration
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:
Kotlin
Java
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:
- Use the
FirebaseMessaging
object. - Call the
firebaseMessaging.token.await()
method.
This method generates and returns the device token.
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.
Kotlin
Java
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.
Kotlin
Java
To extract the notification payload, do the following:
- In Firebase Cloud Messaging (FCM), when a push notification is received, it triggers the
onMessageReceived
function in yourFirebaseMessagingService
class. - This function receives a
RemoteMessage
object as a parameter, which contains the notification data. - The
RemoteMessage
object has adata
property, which is a map containing key-value pairs of the notification payload. - To extract a specific piece of data from the payload, use the key to access the value in the data map.
- To retrieve the “message” from the payload:
Kotlin
Java
For example: