Sean J. Bao

Results 2 comments of Sean J. Bao

我装2.8.3会提示这个错误,然后还是安装不了 ![image](https://user-images.githubusercontent.com/8097548/107333605-ae115980-6af0-11eb-8de4-29ddee382502.png) ![image](https://user-images.githubusercontent.com/8097548/107333615-b10c4a00-6af0-11eb-9664-44ae4d7c11f6.png)

你需要先在项目根目录下添加`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...