Skip to main content

Adding the React Native Embrace SDK

Add the JavaScript library

Use Yarn or NPM to install the NPM module.

yarn add @embrace-io/react-native
npm install @embrace-io/react-native
info

If you are using a yarn workspace, you must run the command at the react-native application folder level or modify package.json manually. Do not run this on your yarn workspace root.

For iOS you will also need to install the pod:

cd ios && pod install --repo-update

Adding the SDK

Setup Script

The JavaScript Embrace SDK ships with a setup script to modify the files in your project to add the native dependencies. The setup scripts can be found in your node_modules folder at node_modules/@embrace-io/dist/scripts/setup

Run the setup script

node node_modules/@embrace-io/react-native/lib/scripts/setup/installAndroid.js
node node_modules/@embrace-io/react-native/lib/scripts/setup/installIos.js
Clean Up Embrace implementation

If you need to clean up an Embrace implementation added manually or by our scripts you can use our uninstall script

node node_modules/@embrace-io/react-native/lib/scripts/setup/uninstall.js

You can use git to see the changes that the script made.

git diff

Compare the changes to the Manual Setup step to verify the changes were made correctly.

Manually

Configuration for iOS is handled in code when initializing the SDK which we will cover in the next step. If you're on React Native version 0.60 and above you benefit from Autolinking to set up the native module so you're good to go! Otherwise review the section below:

React Native Version < 0.60

Configure your PodFile to add Embrace. (RN Versions < 0.6)

target 'MyApp' do
# ...

pod 'EmbraceIO'
pod 'RNEmbrace', :path => '../node_modules/@embrace-io/react-native'
end

Then, install the pod.

cd ios && pod install --repo-update

There's a little more configuration we have to do to set up the uploading of symbol files. You'll be learning about that next.