React-native-intercom: IOS build error

Created on 18 Apr 2020  路  5Comments  路  Source: tinycreative/react-native-intercom

Hi, I'm following the steps to setup the project, but I'm facing below issues

IOS: pod install showing error
[!] CocoaPods could not find compatible versions for pod "react-native-intercom":
In Podfile:
react-native-intercom (from ../node_modules/react-native-intercom)

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

My package version:
"react": "16.9.0",
"react-native": "0.61.4",
"react-native-intercom": "^15.0.0",

Most helpful comment

Can you see if the target is set to iOS 10.0 ? @wadeyw
intercom now, supports only iOS 10 and above.

Screen Shot 2020-04-20 at 4 32 39 PM

All 5 comments

Can you see if the target is set to iOS 10.0 ? @wadeyw
intercom now, supports only iOS 10 and above.

Screen Shot 2020-04-20 at 4 32 39 PM

hi,

after solving the above pod install problem,

this error appears
Screen Shot 2020-05-13 at 10 05 20 PM

@wadeyw
@wiredots01

This might do the trick.

Create the file react-native.config.js in the root of your project, then add this config.

module.exports = {
  dependencies: {
    'react-native-intercom': {
      platforms: {
        ios: null,
      },
    },
  },
};

For more info on how to disable autolinking

I am facing the same error
"/ios/Intercom.framework/Headers/Intercom.h:14:2: This version of Intercom for iOS supports iOS 10.0 upwards."
Version :
"react": "16.13.1",
"react-native": "0.63.3",
"react-native-intercom": "^18.0.0"

IOS version in Xcode is: 11.0

@kamyab-tatva Have you fixed your issue? I am facing the same error

Was this page helpful?
0 / 5 - 0 ratings