iOS打包上傳出現(xiàn)了 ERROR ITMS-90635的錯誤,按照要求,修改enable bitcode
項目->targets->enable bitcode->no
pods->project->enable bitcode->no
可惜,并無效果.
后續(xù)查到可以在 Podfile文件中,增加如下代碼進(jìn)行處理:
platform :ios, '9.0'
use_frameworks!
target 'XXXX' do
pod 'XXXXXX'
end
# 實現(xiàn)post_install Hooks
post_install do |installer|
# 1. 遍歷項目中所有target
installer.pods_project.targets.each do |target|
# 2. 遍歷build_configurations
target.build_configurations.each do |config|
# 3. 修改build_settings中的ENABLE_BITCODE
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
重新打包上傳,解決.