Xcode 14 React-Native Build Error
[문제] Xcode 14로 업그레이드 후 킥고잉 iOS 빌드가 안됨 아래 오류 발생 Signing for "Pod 이름" requires a development team. [원인] Xcode 14 부터 Library에 Signing 요구하는듯 - Release Note에서 관련 내용 찾지 못함 [해결] Pod에서 서명 필요하지 않게 Podfille 수정 installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = '' config.build_settings['CODE_SIGNING_REQUIRED'] = 'NO' config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' end end [기타] React-Native 만의 문제는 아닌듯