Xcode 11.1卡在归档中

时间:2019-10-20 12:31:16

标签: ios swift xcode

我正在使用Xcode 11.1,并且正在尝试上传testFlight 但卡在了归档中。

始终“ Touch”将存档的编译停留在特定日志上 ScreenShot 我已经尝试在PodFile中设置以下代码:

post_install do |installer|
  installer.pods_project.targets.each do |target|
    next unless target.name == '<NAME OF POD>'
    target.build_configurations.each do |config|
      next unless config.name.start_with?('Release')
      config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone'
    end
  end
end

,并尝试在“构建设置”中设置ld_verify_bitcode == NO

0 个答案:

没有答案