1Xcode

XCode14 & iOS16 适配问题汇总

2022-09-03  本文已影响0人  nick5683

Xcode 14 beta 6下载官方地址(需要AppID登录)
iOS16 Beta8版 描述文件下载官方地址(需要AppID登录)

一、iOS16手机开启开发者模式 "developer mode disable"

iOS16手机未打开开发者模式时:
1、Xcode 无法选中 iOS16的设备,报错:developer mode disable
2、无法打开升级前编译的App

二、Pod工程中的Bundle target签名报错

post_install do |installer|
  installer.generated_projects.each do |project|
    project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings["DEVELOPMENT_TEAM"] = "Your Team ID"
         end
    end
  end
end
post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
            
            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 14 beta 6下载官方地址(需要AppID登录)
iOS16 Beta8版 描述文件下载官方地址(需要AppID登录)

上一篇 下一篇

猜你喜欢

热点阅读