Xcode Pod后报错问题

59 阅读1分钟

错误问题 1 :Sandbox: rsync.samba(50227) deny(1) file-write-create xxxx/xxxx/xxx/xxx/ezrojlqprnfjlvbisfxqjyyodtnd/Build/Products/Debug-iphoneos/xxxx.app/Frameworks/xxxx.framework/.Info.plist.xxx

Pods中的xxx.framework building for iOS Simulator-x86_64 but attempting to link with file built for iOS Simulator-arm64

post_install do |installer|
    installer.generated_projects.each do |project|
      project.targets.each do |target|
        target.build_configurations.each do |config|
          config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
          config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
        end
      end
    end
  end


SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a'; try increasing the minimum deployment target

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "15.0"
    end
  end
end