xcode10アップデート後にreact-nativeのiOSビルドが通らなくなったので対処方法を記載
エラーパターン1: error: Build input file cannot be found: '/react-native/third-party'
他にも、 'config.h' file not foundが表示されるパターンもあったが、同じ対処方法で解消できた
対処方法
$ cd node_modules/react-native/third-party/glog-0.3.4/
$ ../../scripts/ios-configure-glog.sh
$ cd ../../../../
$ react-native run-ios
これで上記のエラーは解消されるはず
エラーパターン2: error: Build input file cannot be found: '/libfishhook.a'
対処方法
xcodeを開く
$ open ios/[プロジェクト名].xcodeproj
xcodeで以下を操作
- 画像の順番でクリックしていく
- libfishhook.aを選択して**「-」**をクリック
コマンドライン
$ react-native run-ios
ビルドが通るようになった