swift XCode 15 getting error of No such module 'YochartImageKit' even framework is there in Project

nbnkbykc  于 2023-10-15  发布在  Swift
关注(0)|答案(2)|浏览(138)

下面的步骤进行了多次,但没有得到结果。我尝试删除pod并重新安装。Clean Project -> Remove DerivedData -> Open Project。

gblwokeq

gblwokeq1#

“YOChartImageKit”框架很可能无法构建。这是因为它是一个非常古老的图书馆。podspec指出最低部署目标是iOS 7.0。基于此(https://developer.apple.com/forums/thread/728021),较新的Xcode版本不再支持为这些旧的部署目标构建。
我建议将以下代码片段添加到您的podfile中:

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
    end
  end
end

然后你必须做一个pod install,可能你必须在目标的构建设置中将用户脚本沙箱构建选项设置为NO。
我成功地用这种方式建立了它。但是,我想指出的是,这个库是非常旧的(废弃软件)。请在使用前考虑这一点。

euoag5mw

euoag5mw2#

我尝试了手动框架,它工作得很好。使用手动框架,你得到错误,然后请检查下面的链接。

XCode 15 - Getting WatchKit Extension Error while Project try to run in real device

相关问题