Xcode运行报错
clang: error: 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
解决方案:
把pod库的target改成11.0以上就行
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings[ ‘IPHONEOS_DEPLOYMENT_TARGET’] = '13.1'
end
end
end