This is the official Customer.io SDK for React Native.
-
Open your terminal and run npm install customerio-reactnative
-
Add iOS dependencies to your project by going to the iOS subfolder and running pod install
.
Make sure your deployment target is set to at least 13.0. Before you perform this step, you may want to update your podfile to support APNs and/or FCM push notifications and rich push respectively.
-
For Android, include google-services-plugin by adding the following lines to the project-level android/build.gradle
file:
buildscript {
repositories {
// Add this line if it isn't already in your build file:
google() // Google's Maven repository
}
dependencies {
// Add this line:
classpath 'com.google.gms:google-services:<version-here>' // Google Services plugin
}
}
allprojects {
repositories {
// Add this line if it isn't already in your build file:
google() // Google's Maven repository
}
}
-
Add the following line to android/app/build.gradle
:
apply plugin: 'com.google.gms.google-services' // Google Services plugin
-
Download google-services.json
from your Firebase project and copy the file to android/app/google-services.json
.
-
Return to the main folder and run your application:
- iOS:
npx react-native run-ios
- Android:
npx react-native run-android
-
Add an import statement to your project for the react native library. We haven't included it below, but you can import CioLogLevel
to set log outputs to something other than error
; this may help you debug your application.
import { CustomerIO, CustomerioConfig, CustomerIOEnv, CioLogLevel, Region } from 'customerio-reactnative';
-
In useEffect
, initialize the package with your CustomerioConfig
options and CustomerIOEnv
variables. You can find your Site ID and API Key credentials—or create new ones—under Data & Integrations > Integrations > Customer.io API:
useEffect(() => {
const data = new CustomerioConfig()
data.logLevel = CioLogLevel.debug
data.enableInApp = true
const env = new CustomerIOEnv()
env.siteId = Env.siteId
env.apiKey = Env.apiKey
env.region = Region.US
CustomerIO.initialize(env, data)
}, [])
Thanks for taking an interest in our project! We welcome your contributions. Check out our development instructions to get your environment set up and start contributing.
We value an open, welcoming, diverse, inclusive, and healthy community for this project. We expect all contributors to follow our code of conduct.