DevRev SDK, used for integrating DevRev services into your Android app.
- DevRev SDK for Android
- Table of contents
- Quickstart guide
- Features
- Sample app
- Troubleshooting
- Migration guide
- Android Studio 2022.1.1 or later
- Android Gradle Plugin version 7.4 or later
- Gradle version 7.6 or later
- Minimum Android SDK 24
To integrate the latest version of our SDK into your app, follow these steps:
Our SDK is available on Maven Central. To access it, add mavenCentral
to your root level build.gradle
file.
repositories {
mavenCentral()
}
After completing these steps in your gradle files, you should be able to import and use the DevRev SDK in your Android application.
- Kotlin
Add the following dependencies to your app's
build.gradle.kts
file to get the latest version of our SDK:
dependencies {
implementation("ai.devrev.sdk:devrev-sdk:<version>")
}
- Groovy
Add the following dependencies to your app's
build.gradle
file to get the latest version of our SDK:
dependencies {
implementation 'ai.devrev.sdk:devrev-sdk:<version>'
}
- Open the DevRev web app at https://app.devrev.ai and go to the Settings page.
- Under PLuG settings copy the value under Your unique App ID.
- After obtaining the credentials, you can configure the DevRev SDK in your app.
The SDK will be ready for use once you execute the following configuration method.
- Kotlin
DevRev.configure(context: Context, appId: String, prefersDialogMode: Boolean)
- Java
DevRev.INSTANCE.configure(Context context, String appId, Boolean prefersDialogMode);
Use this property to check whether the DevRev SDK has been configured:
- Kotlin
DevRev.isConfigured
- Java
DevRev.INSTANCE.isConfigured();
Note
prefersDialogMode
, if set to true, enables the SDK to open the screens in the app's main task/activity
- To configure the SDK, you need to call the following method inside your
Application
class:
Note
If you don’t have a custom Application
class, create one as shown below.
- Kotlin
import ai.devrev.sdk.DevRev
class FooApplication : Application() {
override fun onCreate() {
super.onCreate()
DevRev.configure(
context = this,
appId = "<APP_ID>"
)
}
}
- Java
import ai.devrev.sdk.DevRev;
public class FooApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
DevRev.INSTANCE.configure(
this,
"<APP_ID>"
);
}
}
- In the
onCreate
method of yourApplication
, configure the DevRev SDK with the required parameters using the credentials obtained earlier. - Ensure that the custom application is specified in the
AndroidManifest.xml
, as shown below:
<application
android:name=".FooApplication">
</application>
This repository includes a sample app demonstrating use cases with both XML-based UI and Jetpack Compose.
Before running the sample app, make sure to configure it with your DevRev credentials. To do this, update the ai.devrev.sdk.sample.DevRevApplication
class with your credentials.
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.
Important
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.
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
DevRev.identifyAnonymousUser(
userId: String
)
- Java
DevRev.INSTANCE.identifyAnonymousUser(
String userId
);
The unverified identification method identifies users with a unique identifier, but it does not verify their identity with the DevRev backend.
- Kotlin
DevRev.identifyUnverifiedUser(
identity: Identity
)
- Java
DevRev.INSTANCE.identifyUnverifiedUser(
Identity identity
);
The function accepts the DevRev.Identity
structure, with the user identifier (userID
) as the only required property, all other properties are optional.
The verified identification method is used to identify the user with a unique identifier and verify the user's identity with the DevRev backend.
DevRev.identifyVerifiedUser(userId: String, sessionToken: String)
DevRev.INSTANCE.identifyVerifiedUser(String userId, String sessionToken);
- Kotlin
// Identify an anonymous user without a user identifier.
DevRev.identifyAnonymousUser("abcd1234")
// Identify an unverified user with its email address an user identifier.
DevRev.identifyUnverifiedUser(Identity(userId = "foo@example.org"))
- Java
// Identify an anonymous user without a user identifier.
DevRev.INSTANCE.identifyAnonymousUser("abcd1234");
// Identify an unverified user with its email address an user identifier.
DevRev.identifyUnverifiedUser(
new Identity("foo@example.org", null, null, null, null, null)
);
The identification function 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(context, appID)
method.
Use this property to check whether the user has been provided to the SDK:
- Kotlin
DevRev.isUserIdentified
- Java
DevRev.INSTANCE.isUserIdentified();
To update a user's information, use the following method:
- Kotlin
DevRev.updateUser(
identity: Identity
)
- Java
DevRev.INSTANCE.updateUser(
Identity identity
);
The function accepts the DevRev.Identity
ojbect.
Important
The userID
property can not be updated.
You can perform a logout of the current user by calling the following method:
DevRev.logout(context: Context, deviceId: String)
DevRev.INSTANCE.logout(Context context, String deviceId);
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.
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
DevRev.showSupport(context: Context)
- Java
DevRevExtKt.showSupport(DevRev.INSTANCE, context);
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.
- Kotlin
DevRev.createSupportConversation(context: Context)
- Java
DevRev.INSTANCE.createSupportConversation(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:
<ai.devrev.sdk.plug.view.PlugFloatingActionButton
android:id="@+id/plug_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="24dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
The support button can also accept default parameters like
android:src="@your_drawable_here"
and/or
android: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.
- Kotlin
DevRev.setInAppLinkHandler(handler: (String) -> Unit)
- Java
DevRev.INSTANCE.setInAppLinkHandler(Function1<String, Unit> handler)
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
DevRev.setShouldDismissModalsOnOpenLink(value: boolean)
- Java
DevRev.INSTANCE.setShouldDismissModalsOnOpenLink(boolean value)
- Kotlin
DevRev.setInAppLinkHandler { link ->
// Do something here
}
DevRev.setShouldDismissModalsOnOpenLink(false)
- Java
DevRev.INSTANCE.setInAppLinkHandler(link -> {
// Do something here
return kotlin.Unit.INSTANCE;
});
DevRev.INSTANCE.setShouldDismissModalsOnOpenLink(false);
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 will be dynamic and follow the system appearance.
- Kotlin
DevRev.setShouldPreferSystemTheme(value: Boolean)
- Java
DevRev.INSTANCE.setShouldPreferSystemTheme(boolean value);
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
DevRev.trackEvent(name: String, properties: HashMap<String, String>)
- Java
DevRevAnalyticsExtKt.trackEvent(DevRev instance, String name, HashMap<String, String> properties);
- Kotlin
DevRev.trackEvent(name = "open-message-screen", properties = {"id": "foo-bar-1337"})
- Java
DevRevAnalyticsExtKt.trackEvent(DevRev.INSTANCE, "open-message-screen", new HashMap<>().put("id", "foo-bar-1337"));
The DevRev SDK provides observability features to help you understand how your users are interacting with your app.
Session analytics features are opted-in by default, enabling them from the start. However, you can opt-out using the following method:
- Kotlin
DevRev.stopAllMonitoring()
- Java
DevRevObservabilityExtKt.stopAllMonitoring(DevRev.INSTANCE);
To opt back in, use the following method:
- Kotlin
DevRev.resumeAllMonitoring()
- Java
DevRevObservabilityExtKt.resumeAllMonitoring(DevRev.INSTANCE);
You can check whether session monitoring has been enabled by using this property:
DevRev.isMonitoringEnabled
- Java
DevRevObservabilityExtKt.isMonitoringEnabled(DevRev.INSTANCE);
If the user was disabled for session recording by using the stopAllMonitoring() method, you can use this method to enable recording at runtime.
Note
This feature will only store a monitoring permission flag, it will not provide any UI or dialog.
You can enable session recording to capture user interactions with your app.
Caution
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
Method | Action |
---|---|
DevRev.startRecording() |
Starts session recording. |
DevRev.stopRecording() |
Stops session recording and uploads it to the portal. |
DevRev.pauseRecording() |
Pauses the ongoing session recording. |
DevRev.resumeRecording() |
Resumes a paused session recording. |
DevRev.processAllOnDemandSessions() |
Uploads all offline sessions on demand, including the current one. |
- Java
Method | Action |
---|---|
DevRevObservabilityExtKt.startRecording(DevRev.INSTANCE, context) |
Starts session recording. |
DevRevObservabilityExtKt.stopRecording(DevRev.INSTANCE) |
Stops session recording and uploads it to the portal. |
DevRevObservabilityExtKt.pauseRecording(DevRev.INSTANCE) |
Pauses the ongoing session recording. |
DevRevObservabilityExtKt.resumeRecording(DevRev.INSTANCE) |
Resumes a paused session recording. |
DevRevObservabilityExtKt.processAllOnDemandSessions(DevRev.INSTANCE) |
Uploads all offline sessions on demand, including the current one. |
Using this property will return the status of the session recording:
DevRev.isRecording
- Java
DevRevObservabilityExtKt.isRecording(DevRev.INSTANCE);
To check if on-demand sessions are enabled, use:
DevRev.areOnDemandSessionsEnabled
- Java
DevRevObservabilityExtKt.areOnDemandSessionsEnabled(DevRev.INSTANCE);
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
DevRev.addSessionProperties(properties: HashMap<String, Any>)
- Java
DevRevObservabilityExtKt.addSessionProperties(DevRev.INSTANCE, HashMap<String, Object> properties);
To clear the session properties in scenarios such as user logout or when the session ends, use the following method:
- Kotlin
DevRev.clearSessionProperties()
- Java
DevRevObservabilityExtKt.clearSessionProperties(DevRev.INSTANCE);
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.
Note
Use Tag method only when you don't have any other tag already applied to your UI element.
android:tag="devrev-mask"
<WebView
android:id="@+id/webview2"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:background="@android:color/transparent"
android:tag="devrev-mask"/>
You can also set the tag programmatically:
- Kotlin
val anyView: View = findViewById(R.id.anyView)
anyView.tag = "devrev-mask"
- Java
View anyView = findViewById(R.id.anyView);
anyView.setTag("devrev-mask");
- Kotlin
DevRev.markSensitiveViews(sensitiveViews: List<View>)
- Java
DevRevObservabilityExtKt.markSensitiveViews(DevRev.INSTANCE, List<View> sensitiveViews);
- Kotlin
val view1 = findViewById(R.id.view1)
val view2 = findViewById(R.id.view2)
DevRev.markSensitiveViews(listOf(view1, view2))
- Java
View view1 = findViewById(R.id.view1);
View view2 = findViewById(R.id.view2);
List<View> sensitiveViewsList = new ArrayList<>();
sensitiveViewsList.add(view1);
sensitiveViewsList.add(view2);
DevRevObservabilityExtKt.markSensitiveViews(DevRev.INSTANCE, sensitiveViewsList);
Note
Use Tag method only when you don't have any other tag already applied to your UI element.
android:tag="devrev-unmask"
<WebView
android:id="@+id/webview2"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:background="@android:color/transparent"
android:tag="devrev-unmask"/>
You can also set the tag programmatically:
- Kotlin
val anyView: View = findViewById(R.id.anyView)
anyView.tag = "devrev-unmask"
- Java
View anyView = findViewById(R.id.anyView);
anyView.setTag("devrev-unmask");
- Kotlin
DevRev.unmarkSensitiveViews(sensitiveViews: List<View>)
- Java
DevRevObservabilityExtKt.unmarkSensitiveViews(DevRev.INSTANCE, List<View> sensitiveViews);
- Kotlin
val view1 = findViewById(R.id.view1)
val view2 = findViewById(R.id.view2)
DevRev.unmarkSensitiveViews(listOf(view1, view2))
- Java
View view1 = findViewById(R.id.view1);
View view2 = findViewById(R.id.view2);
List<View> sensitiveViewsList = new ArrayList<>();
sensitiveViewsList.add(view1);
sensitiveViewsList.add(view2);
DevRevObservabilityExtKt.unmarkSensitiveViews(DevRev.INSTANCE, sensitiveViewsList);
If you want to mask any Jetpack Compose UI element(s) or view(s), you can apply a mask on it using a modifier.
modifier = Modifier.markAsMaskedLocation("Name or ID of the Compose View")
TextField(
modifier = Modifier
.markAsMaskedLocation("myTextField")
.padding(horizontal = 20.dp)
.onGloballyPositioned { coordinates = it },
value = input,
onValueChange = { input = it }
)
If you wish to mask any WebView element on a Web page explicitly, you can mask it by using class 'devrev-mask'
<label class="devrev-mask">OTP: 12345</label>
If you wish to explicitly un-mask any manually masked WebView element, you can un-mask it by using class 'devrev-unmask'
<input type="text" placeholder="Enter Username" name="username" required class="devrev-unmask">
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
DevRev.startTimer(name: String, properties: HashMap<String, String>)
- Java
DevRevObservabilityExtKt.startTimer(DevRev.INSTANCE, String name, HashMap<String, String> properties);
To stop a timer, use the following method:
- Kotlin
DevRev.endTimer(name: String, properties: HashMap<String, String>)
- Java
DevRevObservabilityExtKt.endTimer(DevRev.INSTANCE, String name, HashMap<String, String> properties);
- Kotlin
DevRev.startTimer("response-time", properties: {"id": "foo-bar-1337"})
// Perform the task that you want to measure.
DevRev.endTimer("response-time", properties: {"id": "foo-bar-1337"})
- Java
DevRevObservabilityExtKt.startTimer(DevRev.INSTANCE, "response-time", new HashMap<String, String>().put("id", "foo-bar-1337"));
// Perform the task that you want to measure.
DevRevObservabilityExtKt.endTimer(DevRev.INSTANCE, "response-time", new HashMap<String, String>().put("id", "foo-bar-1337"));
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:
- Kotlin
DevRev.trackScreenName(screenName: String)
- Java
DevRevObservabilityExtKt.trackScreenName(DevRev.INSTANCE, String screenName);
- Kotlin
DevRev.trackScreenName("profile-screen")
- Java
DevRevObservabilityExtKt.trackScreenName(DevRev.INSTANCE, "profile-screen");
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:
- Kotlin
val isTransitioning = DevRev.isInScreenTransitioning
- Java
boolean isTransitioning = DevRevObservabilityExtKt.isInScreenTransitioning(DevRev.INSTANCE);
- Kotlin
DevRev.setInScreenTransitioning(true) // start transition
DevRev.setInScreenTransitioning(false) // stop transition
- Java
DevRevObservabilityExtKt.setInScreenTransitioning(DevRev.INSTANCE, true) // Start transition
DevRevObservabilityExtKt.setInScreenTransitioning(DevRev.INSTANCE, false) //Stop transition
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.
Caution
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.
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 offers a method to register your device for receiving push notifications. You can register for push notifications using the following method:
- Kotlin
DevRev.registerDeviceToken(
context: Context,
deviceToken: String,
deviceId: String
)
- Java
DevRev.INSTANCE.registerDeviceToken(
Context context,
String deviceToken,
String deviceId
);
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 will generate and return the device token.
val firebaseMessaging = FirebaseMessaging.getInstance()
val token = firebaseMessaging.token.await()
// Use the token as needed
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
DevRev.unregisterDevice(
context: Context,
deviceId: String
)
- Java
DevRev.INSTANCE.unregisterDevice(
Context context,
String deviceId
);
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
DevRev.processPushNotification(
context: Context,
userInfo: String
)
- Java
DevRev.INSTANCE.processPushNotification(
Context context,
String userInfo
);
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
val message = remoteMessage.data["message"]
- Java
String messageData = remoteMessage.getData().get("message");
- Kotlin
class MyFirebaseMessagingService: FirebaseMessagingService {
// ...
override fun onMessageReceived(remoteMessage: RemoteMessage) {
// ...
val messageData = remoteMessage.data["message"]
DevRev.processPushNotification(messageData)
}
}
- Java
public class MyFirebaseMessagingService extends FirebaseMessagingService {
// ...
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
// ...
String messageData = remoteMessage.getData().get("message");
DevRev.processPushNotification(messageData);
}
}
-
Issue: Encountering problems with DevRev SDK integration. Solution: Verify the correct SDK dependency setup in the project. Ensure
mavenCentral
is accessible from the IDE, and confirm accurate detection of the selected DevRev SDK version. -
Issue: The
showSupport()
function or XML button is unresponsive. Solution: Confirm that user identification is performed before using theshowSupport()
function or XML button. -
Issue: Incorrect operation due to
App ID
andsecret
misconfiguration. Solution: Ensure correct functionality by double-checking that bothApp ID
andsecret
values are accurately configured in your application or sample app.
If you are migrating from the legacy UserExperior SDK to the new DevRev SDK, please refer to the Migration Guide for detailed instructions and feature equivalence.