If you have already installed Node on your system, make sure it is Node 8.3 or newer.
$ yarn add @leanplum/react-native-sdk
or$ npm install @leanplum/react-native-sdk
If you are using ReactNative 0.60 or greater, autolinking is supported by default. On Android gradle will take care of dependencies, for iOS only one command needs to be run to pull dependencies
$ cd ios && pod install
If you are using ReactNative without support for autolinking (versions before 0.60) than you'll have to link manually by executing:
$ npx react-native link @leanplum/react-native-sdk
and running pod install
for iOS
$ cd ios && pod install
Please refer to https://docs.leanplum.com/reference#leanplum-sdk-setup for iOS or Android configuration and more usages
import {Leanplum, LeanplumInbox} from '@leanplum/react-native-sdk';
// enable the below line only for development
// Leanplum.setAppIdForDevelopmentMode('APP_ID', 'DEVELOPMENT_KEY');
// use this in production
Leanplum.setAppIdForProductionMode('APP_ID', 'PRODUCTION_KEY');
Leanplum.start();
const inbox = await LeanplumInbox.inbox();
This package cannot be used in the "Expo Go" app because it requires custom native code.
First install the package with yarn, npm, or expo install.
expo install @leanplum/react-native-sdk After installing this npm package, add the config plugin to the plugins array of your app.json or app.config.js:
{ "expo": { "plugins": ["@leanplum/react-native-sdk"] } } Next, rebuild your app as described in the "Adding custom native code" guide.
-
Install yarn global:
$ npm install -g yarn
-
Install dependencies for generating builds:
$ yarn install
-
Change
version
string from package.json to your<custom-version>
-
Build the sdk and publish it for local development purposes:
$ yarn local-publish
-
Add your custom build to your app repository:
$ npx yalc add @leanplum/react-native-sdk@<custom-version>
Do not forget to change <custom-version>
to your desired version.
Reach out directly to Leanplum support team if you have any usage questions or feature requests. Open an issue if you want to report a bug or need code-level support.