目錄
問題一:pod內(nèi)的某些Signing & Capabilities editor
問題二:File not found: ????????/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
問題三:?Archive 失敗
問題四:ios 13啟動崩潰
問題一:pod內(nèi)的某些Signing & Capabilities editor
????????proj.ios_mac/Pods/Pods.xcodeproj Signing for "FBSDKCoreKit-FacebookSDKStrings" ????????requires a development team. Select a development team in the Signing & Capabilities ????????editor.
????????
????????proj.ios_mac/Pods/Pods.xcodeproj Signing for "GoogleSignIn-GoogleSignIn" requires a ????????development team. Select a development team in the Signing & Capabilities editor.
????????
? ? ? ? 解:在podfile文件中,增加以下內(nèi)容??勺詣犹幚?/p>
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
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
end
問題二:File not found: ????????/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
? ? ? ? 解:在podfile文件中,增加以下內(nèi)容。最低版本支持 Minimum Deployments 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'] = '11.0'
end
end
end
end
問題三:?Archive 失敗
????????Command PhaseScriptExecution failed with a nonzero exit code
? ? ? ? ?解:
全局搜 source="$(readlink "${source}")" ,替換為 source="$(readlink -f "${source}")"。
問題四:ios 13啟動崩潰
????????解:降crashlytics版本
#Firebase
pod 'Firebase/Analytics'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Crashlytics','10.2.0'
pod 'Firebase/Messaging'
參考鏈接:
Xcode 14.3 Beta File not found:arc/libarclite_iphoneos.a - 簡書
Xcode 14.3 Archive 失敗 - 騰訊云開發(fā)者社區(qū)-騰訊云文章來源:http://www.zghlxwxcb.cn/news/detail-451243.html
????????文章來源地址http://www.zghlxwxcb.cn/news/detail-451243.html
到了這里,關(guān)于升級到xcode 14.3相關(guān)問題(有毛?。┑奈恼戮徒榻B完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!