iosreact-nativeintercom

Error trying to install "@intercom/intercom-react-native" on ios using react-native


I did the installation as it is in the documentation https://developers.intercom.com/installing-intercom/docs/react-native-installation, but when I run the pod install command it gives the following error:

➜  ios git:(master) ✗ pod install 
Using Expo modules
Auto-linking React Native module for target `intercomexpo`: intercom-react-native
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "intercom-react-native":
  In Podfile:
    intercom-react-native (from `../node_modules/@intercom/intercom-react-native`)

Specs satisfying the `intercom-react-native (from `../node_modules/@intercom/intercom-react-native`)` dependency were found, but they required a higher minimum deployment target.

Solution

  • The latest version of @intercom/intercom-react-native (version 2.0.1 at the time of writing) requires iOS 13 or later.

    enter image description here

    If the iOS project in your React Native app has its deployment target set to anything below iOS 13.0, you'll get the following error when you run pod install:

    [!] CocoaPods could not find compatible versions for pod "intercom-react-native"
    

    The solution is to drop back to the previous version.

    If using NPM:

    npm install @intercom/intercom-react-native@1.1.1
    

    If using Yarn:

    yarn add @intercom/intercom-react-native@1.1.1