The Attentive React Native SDK provides the functionality to render Attentive creative units and collect Attentive events in React Native mobile applications.
This project uses npm as the preferred package manager for consistency and alignment with modern React Native best practices. While this library will work with any package manager (npm, yarn, or pnpm), the development scripts are configured to use npm.
Note on package managers: Modern npm (v7+) has significantly improved performance and features, making it the recommended choice for React Native projects. Both npm and yarn work well with React Native, but this project standardizes on npm for development workflows.
Run npm install @attentive-mobile/attentive-react-native-sdk from your app's root directory.
See the Example Project for a sample of how the Attentive React Native SDK is used.
*** NOTE: Please refrain from using any private or undocumented classes or methods as they may change between releases. ***
import { Attentive, <other types you need here> } from 'attentive-react-native-sdk';// Create an AttentiveConfiguration with your attentive domain, in production mode
const config : AttentiveConfiguration = {
attentiveDomain: 'YOUR_ATTENTIVE_DOMAIN',
mode: Mode.Production,
}// Alternatively, use "debug" mode. When in debug mode, the Creative will not be shown, but instead a popup will show with debug information about your creative and any reason the Creative wouldn't show.
const config : AttentiveConfiguration = {
attentiveDomain: 'YOUR_ATTENTIVE_DOMAIN',
mode: Mode.Debug,
}The SDK includes debugging helpers to show what data is being sent and received. Enable debugging by setting enableDebugger: true:
const config : AttentiveConfiguration = {
attentiveDomain: 'YOUR_ATTENTIVE_DOMAIN',
mode: Mode.Debug,
enableDebugger: true, // Shows debug overlays for events and creatives
}When enabled, debug overlays will automatically appear when:
- Creatives are triggered
- Events are recorded (product views, purchases, etc.)
You can also manually invoke the debug helper:
Attentive.invokeAttentiveDebugHelper();See DEBUGGING.md for detailed information about debugging features.
// 'initialize' should be called as soon as possible after the app starts (see the example app for an example of initializing the SDK in the App element)
// Note: 'initialize' should only be called once per app session - if you call it multiple times it will throw an exception
Attentive.initialize(config);// This will remove the creative along with its web view
Attentive.destroyCreative();// Before loading the creative or sending events, if you have any user identifiers, they will need to be registered. Each identifier is optional. It is okay to skip this step if you have no identifiers about the user yet.
const identifiers : UserIdentifiers = {
'phone': '+15556667777',
'email': '[email protected]',
'klaviyoId': 'userKlaviyoId',
'shopifyId': 'userShopifyId',
'clientUserId': 'userClientUserId',
'customIdentifiers': { 'customIdKey': 'customIdValue' }
};
Attentive.identify(identifiers);The more identifiers that are passed to identify, the better the SDK will function. Here is the list of possible identifiers:
| Identifier Name | Type | Description |
|---|---|---|
| Client User ID | String | Your unique identifier for the user. This should be consistent across the user's lifetime. For example, a database id. |
| Phone | String | The users's phone number in E.164 format |
| String | The users's email | |
| Shopify ID | String | The users's Shopify ID |
| Klaviyo ID | String | The users's Klaviyo ID |
| Custom Identifiers | Map<String,String> | Key-value pairs of custom identifier names and values. The values should be unique to this user. |
// Trigger the Creative. This will show the Creative as a pop-up over the rest of the app.
Attentive.triggerCreative();The SDK currently supports PurchaseEvent, AddToCartEvent, ProductViewEvent, and CustomEvent.
// Construct one or more "Item"s, which represents the product(s) purchased
const items : Item[] = [
{
productId: '555',
productVariantId: '777',
price: {
price: '14.99',
currency: 'USD',
},
},
];
// Construct an "Order", which represents the order for the purchase
const order : Order = {
orderId: '88888'
}
// (Optional) Construct a "Cart", which represents the cart this Purchase was made from
const cart : Cart = {
cartId: '555555',
cartCoupon: 'SOME-DISCOUNT'
}
// Construct a PurchaseEvent, which ties together the preceding objects
const purchaseEvent : PurchaseEvent = {
items: items,
order: order,
cart: cart
}
// Record the PurchaseEvent
Attentive.recordPurchaseEvent(purchaseEvent);The process is similar for the other events. See eventTypes.tsx for all events.
// If new identifiers are available for the user, register them
Attentive.identify({email: '[email protected]'});Attentive.identify({email: '[email protected]'});
Attentive.identify({phone: '+15556667777'};)
// The SDK will have these two identifiers:
// email: '[email protected]'
// phone: '+15556667777'