Sean J. Bao
Sean J. Bao
我装2.8.3会提示这个错误,然后还是安装不了  
你需要先在项目根目录下添加`react-native.config.js`,阻止`JCore`(低版本还需要阻止`JPush`)在 iOS 下的 autolink,然后在 Podfile 中添加对应的 pod 配置 `react-native.config.js` ```js module.exports = { dependencies: { 'jcore-react-native': { platforms: { ios: null, }, }, }, }; ``` `Podfile` ``` ... pod...