note: Building targets in dependency order
/My/project/rnclient/ios/Pods/Target Support Files/Pods-rnclient/Pods-rnclient.debug.xcconfig:1:1: error: unable to open configuration settings file
/My/project/rnclient/ios/Pods/Target Support Files/Pods-rnclient/Pods-rnclient.debug.xcconfig:1:1: error: unable to open configuration settings file
/My/project/rnclient/ios/Pods/Target Support Files/Pods-rnclient/Pods-rnclient.debug.xcconfig:1:1: error: unable to open configuration settings file
/My/project/rnclient/ios/Pods/Target Support Files/Pods-rnclient/Pods-rnclient.debug.xcconfig:1:1: error: unable to open configuration settings file
구글링을 해보니 pod과 관련된 에러라고 한다. 나의 경우에는 RN 개발환경 세팅할 때 cocoapod을 제대로 설치하지 않았던 게 원인이었다.
# cocoapods 설치
sudo gem install cocoapods
cocoapods 설치 후 pod install을 하는데 아래와 같은 에러가 발생했다. 참고) pod install을 해줘야 Javascript 코드를 IOS native code(Swift, Objective-C)로 변경할 수 있다.
cocoapods 1.12.0 버전을 찾지 못한다는 것이므로 bundle install 을 추가로 입력하여 빠진 부분들을 모두 설치했다. 다시 ios 디렉토리로 이동해 ios 앱을 다시 빌드해 보았다.