1. POD에 signing을 하라는 오류가 발생하며 Archive가 안됨. 또는 Missing file libarclite_iphoneos.a 파일 없다며 안됨

PodFile 최하단에 다음 구문 추가

post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
      target.build_configurations.each do |config|
          config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
      end
    end
  end
end

펌 : https://github.com/CocoaPods/CocoaPods/issues/11402

https://velog.io/@ejkim/iOS-Xcode-14-버전-CODESIGNINGALLOWED-이슈

 

2. rsync error: some files could not be transferred (code 23) 

../Pods/Target Support Files/Pods-[AppName]/Pods-[AppName]-frameworks.sh

파일에 readlink에 -f옵션을 추가한다 

  if [ -L "${source}" ]; then
    echo "Symlinked..."
    source="$(readlink -f "${source}")"
  fi

펌 : https://developer.apple.com/forums/thread/727525

+ Recent posts