├── .bundle └── config ├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github ├── labeler.yml └── workflows │ ├── labeler.yml │ └── update-dependencies.yml ├── .gitignore ├── .node-version ├── .nvmrc ├── .refactorer └── config.md ├── .ruby-version ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── REPO_OWNER ├── __tests__ └── setup.test.js ├── android ├── app │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── rndiffapp │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ └── drawable │ │ └── rn_edit_text_material.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ ├── com │ │ └── intercom │ │ │ └── reactnative │ │ │ ├── IntercomErrorCodes.java │ │ │ ├── IntercomEventEmitter.java │ │ │ ├── IntercomHelpCenterHelpers.java │ │ │ ├── IntercomHelpers.java │ │ │ └── IntercomPackage.java │ │ └── io │ │ └── intercom │ │ └── android │ │ └── sdk │ │ └── api │ │ └── ReactNativeHeaderInterceptor.java │ ├── newarch │ └── IntercomModule.java │ └── oldarch │ └── IntercomModule.java ├── app.plugin.js ├── babel.config.js ├── docs ├── IOS-MANUAL-LINKING.md ├── scheme-setup.png ├── xcode-linking.png └── xcode-popup.png ├── examples ├── example │ ├── .env.example │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── intercomreactnative │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── play │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── intercomreactnative │ │ │ │ └── MainNotificationService.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── assets │ │ └── intercom.png │ ├── babel.config.js │ ├── e2e │ │ ├── helpers.ts │ │ ├── package.json │ │ ├── tests │ │ │ └── mainIntercom.e2e.ts │ │ ├── types │ │ │ └── wido.d.ts │ │ ├── wdio.android.conf.ts │ │ ├── wdio.ios.conf.ts │ │ └── yarn.lock │ ├── index.tsx │ ├── ios │ │ ├── File.swift │ │ ├── IntercomReactNativeExample-Bridging-Header.h │ │ ├── IntercomReactNativeExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── IntercomReactNativeExample.xcscheme │ │ │ │ └── IntercomReactNativeExampleUI.xcscheme │ │ ├── IntercomReactNativeExample.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── IntercomReactNativeExample │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── IntercomReactNativeExample.entitlements │ │ │ ├── IntercomReactNativeExampleRelease.entitlements │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── IntercomReactNativeExampleUIRelease.entitlements │ │ ├── Podfile │ │ ├── Podfile.lock │ │ └── PrivacyInfo.xcprivacy │ ├── metro.config.js │ ├── package.json │ ├── scripts │ │ └── generateEnv.sh │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── Button.tsx │ │ │ └── Input.tsx │ │ └── constants.tsx │ └── test │ │ ├── maestro │ │ ├── android │ │ │ ├── open-help-center.yaml │ │ │ └── open-messenger.yaml │ │ └── ios │ │ │ ├── open-help-center.yaml │ │ │ └── open-messenger.yaml │ │ └── package.json ├── expo-example │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── app.json │ ├── app │ │ ├── (tabs) │ │ │ └── index.tsx │ │ ├── +not-found.tsx │ │ └── _layout.tsx │ ├── assets │ │ ├── fonts │ │ │ └── SpaceMono-Regular.ttf │ │ └── images │ │ │ ├── adaptive-icon.png │ │ │ ├── favicon.png │ │ │ ├── icon.png │ │ │ ├── partial-react-logo.png │ │ │ └── splash-icon.png │ ├── babel.config.js │ ├── components │ │ ├── ArchitectureInfo.tsx │ │ ├── AuthenticationSection.tsx │ │ ├── ContentSection.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── Header.tsx │ │ ├── MessagingSection.tsx │ │ ├── NotificationsSection.tsx │ │ ├── SettingsSection.tsx │ │ ├── UtilitiesSection.tsx │ │ └── ui │ │ │ ├── Button.tsx │ │ │ ├── Input.tsx │ │ │ └── Section.tsx │ ├── config │ │ └── intercom.config.ts │ ├── eslint.config.js │ ├── global.css │ ├── hooks │ │ ├── useIntercom.ts │ │ └── useNotifications.ts │ ├── metro.config.js │ ├── nativewind-env.d.ts │ ├── package.json │ ├── pnpm-lock.yaml │ ├── tailwind.config.js │ ├── tsconfig.json │ └── utils │ │ └── storage.ts └── with-notifications │ ├── .bundle │ └── config │ ├── .gitignore │ ├── .npmrc │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Gemfile │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── withnotifications │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ └── MainNotificationService.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── withnotification.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── withnotification.xcscheme │ ├── withnotification.xcworkspace │ │ └── contents.xcworkspacedata │ └── withnotification │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── payload.apns │ ├── payload.json │ ├── pnpm-lock.yaml │ ├── src │ ├── App.tsx │ ├── hooks │ │ └── useIntercom.tsx │ ├── screens │ │ ├── HomeScreen.tsx │ │ └── SettingsScreen.tsx │ ├── styles │ │ └── App.styles.ts │ └── utils │ │ └── App.utils.ts │ └── tsconfig.json ├── intercom-react-native.podspec ├── ios ├── .xcode.env ├── Intercom.xcodeproj │ └── project.pbxproj ├── IntercomAttributesBuilder.h ├── IntercomAttributesBuilder.m ├── IntercomEventEmitter.h ├── IntercomEventEmitter.m ├── IntercomHelpCenterHelpers.h ├── IntercomHelpCenterHelpers.m ├── IntercomModule.h └── IntercomModule.m ├── package.json ├── script └── setup ├── semver.js ├── src ├── NativeIntercomSpec.ts ├── expo-plugins │ ├── @types.ts │ ├── index.ts │ └── withPushNotifications.ts ├── index.tsx ├── nativeModules.ts └── types.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.bundle/config -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | team-messenger: 2 | - base-branch: 'main' 3 | -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/update-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.github/workflows/update-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22.14.0 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.14.0 2 | -------------------------------------------------------------------------------- /.refactorer/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.refactorer/config.md -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.4 2 | -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/README.md -------------------------------------------------------------------------------- /REPO_OWNER: -------------------------------------------------------------------------------- 1 | team-messenger 2 | -------------------------------------------------------------------------------- /__tests__/setup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/__tests__/setup.test.js -------------------------------------------------------------------------------- /android/app/src/main/java/com/rndiffapp/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/java/com/rndiffapp/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rndiffapp/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/java/com/rndiffapp/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rndiffapp/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/java/com/rndiffapp/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/intercom/reactnative/IntercomErrorCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/main/java/com/intercom/reactnative/IntercomErrorCodes.java -------------------------------------------------------------------------------- /android/src/main/java/com/intercom/reactnative/IntercomEventEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/main/java/com/intercom/reactnative/IntercomEventEmitter.java -------------------------------------------------------------------------------- /android/src/main/java/com/intercom/reactnative/IntercomHelpCenterHelpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/main/java/com/intercom/reactnative/IntercomHelpCenterHelpers.java -------------------------------------------------------------------------------- /android/src/main/java/com/intercom/reactnative/IntercomHelpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/main/java/com/intercom/reactnative/IntercomHelpers.java -------------------------------------------------------------------------------- /android/src/main/java/com/intercom/reactnative/IntercomPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/main/java/com/intercom/reactnative/IntercomPackage.java -------------------------------------------------------------------------------- /android/src/main/java/io/intercom/android/sdk/api/ReactNativeHeaderInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/main/java/io/intercom/android/sdk/api/ReactNativeHeaderInterceptor.java -------------------------------------------------------------------------------- /android/src/newarch/IntercomModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/newarch/IntercomModule.java -------------------------------------------------------------------------------- /android/src/oldarch/IntercomModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/android/src/oldarch/IntercomModule.java -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/app.plugin.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/IOS-MANUAL-LINKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/docs/IOS-MANUAL-LINKING.md -------------------------------------------------------------------------------- /docs/scheme-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/docs/scheme-setup.png -------------------------------------------------------------------------------- /docs/xcode-linking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/docs/xcode-linking.png -------------------------------------------------------------------------------- /docs/xcode-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/docs/xcode-popup.png -------------------------------------------------------------------------------- /examples/example/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/.env.example -------------------------------------------------------------------------------- /examples/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/README.md -------------------------------------------------------------------------------- /examples/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/build.gradle -------------------------------------------------------------------------------- /examples/example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example/android/app/src/main/java/com/example/intercomreactnative/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/java/com/example/intercomreactnative/MainActivity.java -------------------------------------------------------------------------------- /examples/example/android/app/src/main/java/com/example/intercomreactnative/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/java/com/example/intercomreactnative/MainApplication.java -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/example/android/app/src/play/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/play/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example/android/app/src/play/java/com/example/intercomreactnative/MainNotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/app/src/play/java/com/example/intercomreactnative/MainNotificationService.java -------------------------------------------------------------------------------- /examples/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/build.gradle -------------------------------------------------------------------------------- /examples/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/gradle.properties -------------------------------------------------------------------------------- /examples/example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/gradlew -------------------------------------------------------------------------------- /examples/example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/gradlew.bat -------------------------------------------------------------------------------- /examples/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/android/settings.gradle -------------------------------------------------------------------------------- /examples/example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/app.json -------------------------------------------------------------------------------- /examples/example/assets/intercom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/assets/intercom.png -------------------------------------------------------------------------------- /examples/example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/babel.config.js -------------------------------------------------------------------------------- /examples/example/e2e/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/e2e/helpers.ts -------------------------------------------------------------------------------- /examples/example/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/e2e/package.json -------------------------------------------------------------------------------- /examples/example/e2e/tests/mainIntercom.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/e2e/tests/mainIntercom.e2e.ts -------------------------------------------------------------------------------- /examples/example/e2e/types/wido.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/e2e/types/wido.d.ts -------------------------------------------------------------------------------- /examples/example/e2e/wdio.android.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/e2e/wdio.android.conf.ts -------------------------------------------------------------------------------- /examples/example/e2e/wdio.ios.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/e2e/wdio.ios.conf.ts -------------------------------------------------------------------------------- /examples/example/e2e/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/e2e/yarn.lock -------------------------------------------------------------------------------- /examples/example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/index.tsx -------------------------------------------------------------------------------- /examples/example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/File.swift -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample-Bridging-Header.h -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample.xcodeproj/xcshareddata/xcschemes/IntercomReactNativeExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample.xcodeproj/xcshareddata/xcschemes/IntercomReactNativeExample.xcscheme -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample.xcodeproj/xcshareddata/xcschemes/IntercomReactNativeExampleUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample.xcodeproj/xcshareddata/xcschemes/IntercomReactNativeExampleUI.xcscheme -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/AppDelegate.h -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/AppDelegate.m -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/Info.plist -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/IntercomReactNativeExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/IntercomReactNativeExample.entitlements -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/IntercomReactNativeExampleRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/IntercomReactNativeExampleRelease.entitlements -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExample/main.m -------------------------------------------------------------------------------- /examples/example/ios/IntercomReactNativeExampleUIRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/IntercomReactNativeExampleUIRelease.entitlements -------------------------------------------------------------------------------- /examples/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/Podfile -------------------------------------------------------------------------------- /examples/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/example/ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/metro.config.js -------------------------------------------------------------------------------- /examples/example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/package.json -------------------------------------------------------------------------------- /examples/example/scripts/generateEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/scripts/generateEnv.sh -------------------------------------------------------------------------------- /examples/example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/src/App.tsx -------------------------------------------------------------------------------- /examples/example/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/src/components/Button.tsx -------------------------------------------------------------------------------- /examples/example/src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/src/components/Input.tsx -------------------------------------------------------------------------------- /examples/example/src/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/src/constants.tsx -------------------------------------------------------------------------------- /examples/example/test/maestro/android/open-help-center.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/test/maestro/android/open-help-center.yaml -------------------------------------------------------------------------------- /examples/example/test/maestro/android/open-messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/test/maestro/android/open-messenger.yaml -------------------------------------------------------------------------------- /examples/example/test/maestro/ios/open-help-center.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/test/maestro/ios/open-help-center.yaml -------------------------------------------------------------------------------- /examples/example/test/maestro/ios/open-messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/test/maestro/ios/open-messenger.yaml -------------------------------------------------------------------------------- /examples/example/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/example/test/package.json -------------------------------------------------------------------------------- /examples/expo-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/.gitignore -------------------------------------------------------------------------------- /examples/expo-example/.npmrc: -------------------------------------------------------------------------------- 1 | node-linker=hoisted 2 | enable-pre-post-scripts=true -------------------------------------------------------------------------------- /examples/expo-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/README.md -------------------------------------------------------------------------------- /examples/expo-example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/app.json -------------------------------------------------------------------------------- /examples/expo-example/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /examples/expo-example/app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/app/+not-found.tsx -------------------------------------------------------------------------------- /examples/expo-example/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/app/_layout.tsx -------------------------------------------------------------------------------- /examples/expo-example/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /examples/expo-example/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /examples/expo-example/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/assets/images/favicon.png -------------------------------------------------------------------------------- /examples/expo-example/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/assets/images/icon.png -------------------------------------------------------------------------------- /examples/expo-example/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /examples/expo-example/assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/assets/images/splash-icon.png -------------------------------------------------------------------------------- /examples/expo-example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/babel.config.js -------------------------------------------------------------------------------- /examples/expo-example/components/ArchitectureInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/ArchitectureInfo.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/AuthenticationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/AuthenticationSection.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/ContentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/ContentSection.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/Header.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/MessagingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/MessagingSection.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/NotificationsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/NotificationsSection.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/SettingsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/SettingsSection.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/UtilitiesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/UtilitiesSection.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/ui/Button.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/ui/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/ui/Input.tsx -------------------------------------------------------------------------------- /examples/expo-example/components/ui/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/components/ui/Section.tsx -------------------------------------------------------------------------------- /examples/expo-example/config/intercom.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/config/intercom.config.ts -------------------------------------------------------------------------------- /examples/expo-example/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/eslint.config.js -------------------------------------------------------------------------------- /examples/expo-example/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/global.css -------------------------------------------------------------------------------- /examples/expo-example/hooks/useIntercom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/hooks/useIntercom.ts -------------------------------------------------------------------------------- /examples/expo-example/hooks/useNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/hooks/useNotifications.ts -------------------------------------------------------------------------------- /examples/expo-example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/metro.config.js -------------------------------------------------------------------------------- /examples/expo-example/nativewind-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/nativewind-env.d.ts -------------------------------------------------------------------------------- /examples/expo-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/package.json -------------------------------------------------------------------------------- /examples/expo-example/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/expo-example/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/tailwind.config.js -------------------------------------------------------------------------------- /examples/expo-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/tsconfig.json -------------------------------------------------------------------------------- /examples/expo-example/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/expo-example/utils/storage.ts -------------------------------------------------------------------------------- /examples/with-notifications/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/.bundle/config -------------------------------------------------------------------------------- /examples/with-notifications/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/.gitignore -------------------------------------------------------------------------------- /examples/with-notifications/.npmrc: -------------------------------------------------------------------------------- 1 | node-linker=hoisted 2 | enable-pre-post-scripts=true 3 | -------------------------------------------------------------------------------- /examples/with-notifications/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/.prettierrc.js -------------------------------------------------------------------------------- /examples/with-notifications/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/with-notifications/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/Gemfile -------------------------------------------------------------------------------- /examples/with-notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/README.md -------------------------------------------------------------------------------- /examples/with-notifications/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/build.gradle -------------------------------------------------------------------------------- /examples/with-notifications/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/with-notifications/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/java/com/example/withnotifications/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/java/com/example/withnotifications/MainActivity.kt -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/java/com/example/withnotifications/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/java/com/example/withnotifications/MainApplication.kt -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/java/com/example/withnotifications/MainNotificationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/java/com/example/withnotifications/MainNotificationService.kt -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/with-notifications/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/with-notifications/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/build.gradle -------------------------------------------------------------------------------- /examples/with-notifications/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/gradle.properties -------------------------------------------------------------------------------- /examples/with-notifications/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/with-notifications/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/with-notifications/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/gradlew -------------------------------------------------------------------------------- /examples/with-notifications/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/gradlew.bat -------------------------------------------------------------------------------- /examples/with-notifications/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/android/settings.gradle -------------------------------------------------------------------------------- /examples/with-notifications/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/app.json -------------------------------------------------------------------------------- /examples/with-notifications/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/babel.config.js -------------------------------------------------------------------------------- /examples/with-notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/index.js -------------------------------------------------------------------------------- /examples/with-notifications/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/.xcode.env -------------------------------------------------------------------------------- /examples/with-notifications/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/Podfile -------------------------------------------------------------------------------- /examples/with-notifications/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification.xcodeproj/xcshareddata/xcschemes/withnotification.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification.xcodeproj/xcshareddata/xcschemes/withnotification.xcscheme -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification/AppDelegate.swift -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification/Info.plist -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/with-notifications/ios/withnotification/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/ios/withnotification/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/with-notifications/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/with-notifications/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/metro.config.js -------------------------------------------------------------------------------- /examples/with-notifications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/package.json -------------------------------------------------------------------------------- /examples/with-notifications/payload.apns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/payload.apns -------------------------------------------------------------------------------- /examples/with-notifications/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/payload.json -------------------------------------------------------------------------------- /examples/with-notifications/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/with-notifications/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/src/App.tsx -------------------------------------------------------------------------------- /examples/with-notifications/src/hooks/useIntercom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/src/hooks/useIntercom.tsx -------------------------------------------------------------------------------- /examples/with-notifications/src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/src/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /examples/with-notifications/src/screens/SettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/src/screens/SettingsScreen.tsx -------------------------------------------------------------------------------- /examples/with-notifications/src/styles/App.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/src/styles/App.styles.ts -------------------------------------------------------------------------------- /examples/with-notifications/src/utils/App.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/examples/with-notifications/src/utils/App.utils.ts -------------------------------------------------------------------------------- /examples/with-notifications/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@react-native/typescript-config" 3 | } 4 | -------------------------------------------------------------------------------- /intercom-react-native.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/intercom-react-native.podspec -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Intercom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/Intercom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/IntercomAttributesBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomAttributesBuilder.h -------------------------------------------------------------------------------- /ios/IntercomAttributesBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomAttributesBuilder.m -------------------------------------------------------------------------------- /ios/IntercomEventEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomEventEmitter.h -------------------------------------------------------------------------------- /ios/IntercomEventEmitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomEventEmitter.m -------------------------------------------------------------------------------- /ios/IntercomHelpCenterHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomHelpCenterHelpers.h -------------------------------------------------------------------------------- /ios/IntercomHelpCenterHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomHelpCenterHelpers.m -------------------------------------------------------------------------------- /ios/IntercomModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomModule.h -------------------------------------------------------------------------------- /ios/IntercomModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/ios/IntercomModule.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/package.json -------------------------------------------------------------------------------- /script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/script/setup -------------------------------------------------------------------------------- /semver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/semver.js -------------------------------------------------------------------------------- /src/NativeIntercomSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/src/NativeIntercomSpec.ts -------------------------------------------------------------------------------- /src/expo-plugins/@types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/src/expo-plugins/@types.ts -------------------------------------------------------------------------------- /src/expo-plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/src/expo-plugins/index.ts -------------------------------------------------------------------------------- /src/expo-plugins/withPushNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/src/expo-plugins/withPushNotifications.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/nativeModules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/src/nativeModules.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------