cocoapods podspec 引用其他库的问题
想把手头的一个库,使用cocoapods来管理,于是去写podspec,写好后,用pod spec lint检查错误,报了几个调用error,原因是调用了几个其他pod 中的函数,心想应该没事,因为下面已经在dependency段中加入了所需要库的引用,所以就没管。
接着在主项目中引用,然后就编译不过了,因为那几个依赖库没有被添进去。
我的podspec:
Pod::Spec.new do |s|
s.name = "xxxxxxx"
s.version = "0.0.1"
s.summary = "A short description of xxxxxxxx."
s.homepage = "xxxxxx"
s.license = 'MIT'
s.author = { "shiweifu" => "shiweifu@gmail.com" }
s.platform = :ios, '7.0'
s.source = { :git => "git@xxxxx.com:weifu/iOS/xxxxxx.git", :tag => "0.1" }
s.source_files = 'xxxxxx/Classes/.{h,m}'
s.exclude_files = 'ViewController.{h,m,xib}', '.storyboard'
s.resources = "Resources"
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.dependency 'UIView+Helpers'
s.dependency 'UIImage-Resize'
s.dependency 'UIView+Helpers'
s.dependency 'GPUImage'
s.dependency 'ObjectiveSugar'
s.dependency 'NYXImagesKit'
end
请问这个podspec哪里写的不对?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
贴一下错误看看
UP主,我得到如下错误
-> TCSBLL (0.2.0)
ERROR | [iOS] xcodebuild: Returned an unsuccessful exit code. You can use
--verbose
for more information.NOTE | xcodebuild: /Users/huanglexian/Desktop/TCSBLL/Pod/Classes/TCSBLL/TCSBLL.m:10:10: fatal error: 'TCSDAL.h' file not found
也同样是一个未公开库引入另一个未公开库
这个问题,令好好苦恼,如果UP主知道如何解决,我想请UP主解答一下:
QQ:527108411