gpt4 book ai didi

ios - pod 规范 lint 失败

转载 作者:行者123 更新时间:2023-11-28 07:09:49 25 4
gpt4 key购买 nike

我做了一个 Swift 框架,我想为它做一个 CocoaPods。
我已按照所有说明进行操作:

  • 创建podspec文件,添加版本标签,推送到github当我运行 pod lib lint 时它通过了,但是当我运行 pod spec lint 时它失败了。

这是我的 podspec 文件

Pod::Spec.new do |s|

s.name = "Seru"
s.version = "0.0.3"
s.summary = "Seru is Simple Core Data stack"
s.description = <<-DESC
Seru is Swift framework for working wit Core Data. It setup your core data stack and
gives you nica actions to work with it
DESC

s.homepage = "https://github.com/kostiakoval/Seru"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kostiantyn Koval" => "konstantin.koval1@gmail.com" }
s.social_media_url = "http://twitter.com/kostiakoval"

s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/kostiakoval/Seru.git", :tag => s.version }

s.source_files = "Seru/Source", "Seru/Source/**/*.{swift}"
s.requires_arc = true
s.ios.vendored_frameworks = 'Carthage/Build/iOS/Sweet.framework'

end

它具有外部框架依赖性。我猜这是个问题。当我执行 pod speck lint 时,它说我找不到那个外部框架

最佳答案

问题是 CocoaPods 不包含 vendored_frameworks 文件夹。
修复它是通过使用 preserve_paths 指定这个文件夹应该包含在 CocoaPod 中。 .

s.preserve_paths = 'Carthage/Build/iOS/Sweet.framework'

关于ios - pod 规范 lint 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28840296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com