# using npm
npm install
# OR using Yarn
yarn installGo to app.json and replace the appId, androidApiKey and iosApiKey under plugins.
You can also change the intercomRegion to US, EU or AU.
Check our docs for a detailed explanation about these fields here
"plugins": [
[
"@intercom/intercom-react-native",
{
"appId": "<app-id>",
"androidApiKey": "<android-api-key>",
"iosApiKey": "<ios-api-key>",
"intercomRegion": "US"
}
]
],# using npx
npx expo prebuild
# OR using Yarn
yarn expo prebuildGo to the ios folder and run pod install
npx pod install# using npm
npx expo run:android
# OR using Yarn
yarn expo run:android# using npm
npx expo run:ios
# OR using Yarn
yarn expo run:ios