1.iOS16手機(jī)開啟開發(fā)者模式
解決辦法:打開調(diào)試手機(jī)-設(shè)置-隱私與安全-開發(fā)者模式-開啟開發(fā)者模式(需要重啟手機(jī))
2.Pod工程中的Bundle target簽名報(bào)錯(cuò)
方法一:手動(dòng)選擇Pod工程中的Bundle target 簽名中的Team坝疼,與主工程一致
方法二:在Podfile腳本中設(shè)置你的開發(fā)者的Team ID
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
方法三:在Podfile腳本中設(shè)置CODE_SIGN_IDENTITY為空來避免報(bào)錯(cuò)
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CODE_SIGN_IDENTITY'] = ''
end
end
end
end
3.使用Xcode14打出來的包瞳浦,在iOS12.2以下的系統(tǒng)發(fā)生崩潰
方法一:
在Build Phases -> Link Binary With Librarires 里面添加 libswiftCoreGraphics.tbd刚陡。否則xcode14打出來的包溯革,在iOS12.2以下的系統(tǒng)找不到libswiftCoreGraphics.dylib而發(fā)生崩潰。
方法二:官方推薦的方法
Build Setting -> other linkflags 添加 -Wl,-weak-lswiftCoreGraphics
方法三:Xcode14.1官方已經(jīng)修復(fù),下載Xcode14.1就可以