我已将 LazyPDFKit 集成到我的应用程序中,并尝试生成构建,如下所示。我无法将存档文件导出到.ipa文件中。以下是导出时的问题。
“LazyPDFKitDemo.app/Frameworks/LazyPDFKit.framework”的Info.plist指定CFBundleSupportedPlatforms键的模拟器平台
请建议我
答案 0 :(得分:0)
试试这个......
CFBundleSupportedPlatforms = {" iPhoneSimulator" },强>
将iPhoneSimulator替换为iPhoneOS
CFBundleSupportedPlatforms = {" iPhoneOS" },强>
答案 1 :(得分:0)
检查plist中的CFBundleSupportedPlatforms键。将值设置为CFBundleSupportedPlatforms = { "的iPhoneOS" }
答案 2 :(得分:0)
我有同样的问题困扰我很长一段时间,我终于找到了解决问题的方法,看到我的问题:framework specifies a simulator platform for the CFBundleSupportedPlatforms key
解决方案是在导出.ipa
文件时,取消选中bitcode
:
我认为原因是LazyPDFKit
不支持bitcode
。