0
後的代碼簽名,我得到錯誤說沒有找到我安裝了一個吊艙後到我的項目安裝的CocoaPods
NO CODE SIGNATURE FOUND
,該項目未實現。
我發現an article與該問題有關。文章建議需要包括一些代碼簽署旁路到pod文件如下
post_install do |installer|
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
end
我使用的是Xcode(8.1)。
值得注意的是,我沒有開發者帳戶。
但它不能解決我的問題。你會推薦什麼解決方案?