Note
Expo SDK 41-49 using React Native Navigation 6+ is supported. See dedicated Expo integration instructions.
Important
We support a codeless solution for React Native 0.6-0.74 using react-native-navigation 6+.
Important
Requirements:
- Android Gradle Plugin
7.2
or higher - Kotlin version
1.9.0
or higher - JAVA version
11
or higher - minSdkVersion
21
or higher - compileSDKVersion
33
or higher
-
In the root folder of your project, add Pendo using one of your package managers:
#example with npm npm install --save rn-pendo-sdk #example with yarn yarn add rn-pendo-sdk
-
In the application android/build.gradle file:
-
Add the Pendo Repository to the repositories section under the allprojects section or to the settings.gradle if using dependencyResolutionManagement::
allprojects { repositories { maven { url = uri("https://software.mobile.pendo.io/artifactory/androidx-release") } mavenCentral() } }
-
Minimum and compile Sdk versions:
If applicable, set your app to be compiled with compileSdkVersion 33 or higher and minSdkVersion 21 or higher:android { minSdkVersion 21 compileSdkVersion 33 }
-
In the application AndroidManifest.xml file.
Add the following<uses-permission>
to the manifest in the<manifest>
tag:<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
-
Modify Javascript minification
When bundling for production, React Native minifies class and function names to reduce the size of the bundle. This means there is no access to the original component names that are used for the codeless solution.
In the application metro.config.js, add the following statements in the transformer:
module.exports = { transformer: { // ... minifierConfig: { keep_classnames: true, // Preserve class names keep_fnames: true, // Preserve function names mangle: { keep_classnames: true, // Preserve class names keep_fnames: true, // Preserve function names } } } }
-
If you are using ProGuard(D8/DX only) to perform compile-time code optimization, and have
{Android SDK Location}/tools/proguard/proguard-android-optimize.txt
, add!code/allocation/variable
to the-optimizations
line in yourapp/proguard-rules.pro
file. The optimizations line should look like this:
-optimizations *other optimizations*,!code/allocation/variable
Note
The API Key
can be found in your Pendo Subscription Settings in App Details.
-
In the application main file (App.js/.ts/.tsx), add the following code:
import { PendoSDK, NavigationLibraryType } from 'rn-pendo-sdk'; import { Navigation } from "react-native-navigation"; function initPendo() { const navigationOptions = {library: NavigationLibraryType.ReactNativeNavigation, navigation: Navigation}; const pendoKey = 'YOUR_API_KEY_HERE'; //note the following API will only setup initial configuration, to start collect analytics use startSession PendoSDK.setup(pendoKey, navigationOptions); } initPendo();
-
Initialize Pendo where your visitor is being identified (e.g. login, register, etc.).
const visitorId = 'VISITOR-UNIQUE-ID'; const accountId = 'ACCOUNT-UNIQUE-ID'; const visitorData = {'Age': '25', 'Country': 'USA'}; const accountData = {'Tier': '1', 'Size': 'Enterprise'}; PendoSDK.startSession(visitorId, accountId, visitorData, accountData);
Notes:
visitorId: a user identifier (e.g. John Smith)
visitorData: the user metadata (e.g. email, phone, country, etc.)
accountId: an affiliation of the user to a specific company or group (e.g. Acme inc.)
accountData: the account metadata (e.g. tier, level, ARR, etc.)
Tip
To begin a session for an anonymous visitor, pass null
or an empty string ''
as the visitor id. You can call the startSession
API more than once and transition from an anonymous session to an identified session (or even switch between multiple identified sessions).
Note
The Scheme ID
can be found in your Pendo Subscription Settings in App Details.
This step enables page tagging and guide testing capabilities.
Add the following activity to the application AndroidManifest.xml in the <Application>
tag:
<activity android:name="sdk.pendo.io.activities.PendoGateActivity" android:launchMode="singleInstance" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="YOUR_SCHEME_ID_HERE"/>
</intent-filter>
</activity>
- Test using Android Studio:
Run the app while attached to the Android Studio.
Review the Android Studio logcat and look for the following message:
Pendo SDK was successfully integrated and connected to the server.
- In the Pendo UI, go to Settings>Subscription Settings.
- Select the Applications tab and then your application.
- Select the Install Settings tab and follow the instructions under Verify Your Installation to ensure you have successfully integrated the Pendo SDK.
- Confirm that you can see your app as Integrated under subscription settings.
- For technical issues, please review open issues or submit a new issue.
- Release notes can be found here.
- For additional documentation, visit our Help Center Mobile Section.