错误1
,最常见的错误
- ERROR | [iOS] file patterns: The
source_files
pattern did not match any file.
出现这个错误,是source_files
下面的文件不对,之前网上找的podspec文件出错,目前这个没发现。如果出现这个错误,就去修改source_files
的文件路径就可以了。不要按照xcode里面看到的路径写,要写物理路径,打开文件夹去查看。一般规则就是:
source_files
:这里要注意的是这里的路径是以xxx.podspec
文件为根据,同级的话,就写文件名就好(一般要传pod的最外层文件夹和xxx.podspec文件是同级的)。往后多级的,逐级加。如果多个的话,就分组加,逗号隔开。下面针对各种情况给出范例:
image.png
参照上图:
1、同级的文件夹B里面只有.h和.m文件
source_files = "B/*.{h,m}"
2、多级文件夹B/C/D(只有最后一级文件夹里面有.h和.m文件
source_files = "B/C/D/*.{h,m}"
3、多级文件夹B/C/D,每个文件夹里面都有.h和.m文件
source_files = "B/*.{h.m}","B/C/*.{h.m}","B/C/D/*.{h.m}"
其中C D可以用**代替
如果上述操作依旧没有解决,则进行下面的操作:
(1)、打开
/Users/Library/Caches/CocoaPods/Pods/External/
你要传的项目文件
如图:
image.png
(2)、我现在要放到pod上面的是WebRTCHelper文件,则删除掉图中2处
的所有文件,然后在终端输入pod psec lint xxx.podsepc
,当然错误还是存在;
(3)、重新验证后这个时候发现图中2处
会生成一个文件夹,点开这个文件夹,在里面把你要放到pod上面的文件复制一份放到里面,(例如图中的标3
的文件夹)。然后再验证,这个错误就会没有了。当然具体问题还要具体讨论,这个是一个解决方法。
错误2
- Unable to accept duplicate entry for: TestProject_hu (1.0.0)
这个错误的出现是说明git上的版本和你的xxx.podspec文件里的version不一致,这个时候最好双方都修改下。成功的几率会高点。一个git的tag修改下,xxx.podspec里的version也修改下。git打的版本一定要和xxx.podspec文件中的version一致。
错误3
-
ERROR | xcodebuild: /Users/xinhuikeji/Library/Developer/Xcode/DerivedData/App-cpgccqdjhyrbqwcpjanyefntolkf/Build/Products/Release-iphonesimulator/wLib/wLib.framework/Headers/BaseModel.h:13:9: error: include of non-modular header inside framework module 'wLib.BaseModel' [-Werror,-Wnon-modular-include-in-framework-module]
-
出现场景:pod验证podspec文件的时候,如果.h文件里面有引用第三方pod,会出现这个错误
-
解决方式:在命令后面添加
--use-libraries
就可以了
pod lib lint xxx.podspec --allow-warnings --use-libraries
错误4
image.png
上传到pod的时候,想要出现图中这样的文件层级,这个时候就需要在xxx.podspec文件里面用到一个subspec
的属性
#s.source_files = 'TQKit/Classes/**/*'
s.subspec 'Tool' do |ss|
ss.source_files = 'TQKit/Classes/Tool/TQMacro.h'
end
s.subspec 'TQApi' do |ss|
ss.source_files = 'TQKit/Classes/TQApi/*.{h,m}'
ss.dependency 'TQKit/Tool'
ss.dependency 'YTKNetwork'
end
s.subspec 'TQCategory' do |ss|
ss.source_files = 'TQKit/Classes/TQCategory/*.{h,m}'
end
s.subspec 'TQTableView' do |ss|
ss.source_files = 'TQKit/Classes/TQTableView/*.{h,m}'
end
这里我的s.source_files
是注释掉的,是因为我的TQKit
下面所有的文件都在我下面定义的文件夹里面,所以就不需要写这个路径了。如果TQKit
下面有一个公共的头文件,这样的话可以写成s.source_files = 'TQKit/Classes/xxx.h'
;
注意到这段代码:
s.subspec 'TQApi' do |ss|
ss.source_files = 'TQKit/Classes/TQApi/*.{h,m}'
ss.dependency 'TQKit/Tool'
ss.dependency 'YTKNetwork'
end
里面有两个引用的效果,这是因为TQApi
里面会用到这两个库,所以要在自己的下面进行引用。
- 一个是引用当前TQKit里面有的文件
TQMacro.h
文件,但是这个文件不在TQApi
下面,所以要进行引用。再者上面已经把TQMacro.h
文件放到Tool
里面,所以这里引用Tool
文件夹就可以,或者也可以写成'TQKit/Tool/TQMacro.h'
s.subspec 'Tool' do |ss|
ss.source_files = 'TQKit/Classes/Tool/TQMacro.h'
end
- 一个是引用一个pod第三方库
YTKNetwork
,pod第三方库引用就简单了,不需要写路径,直接写库名就可以。
错误5
- 调用终端命令
pod lib lint --allow-warnings --use-libraries
如果是swift语言的话,则有可能出现下面的错误:
-> BaseComponent (0.1.0)
- WARN | [iOS] swift_version: The validator for Swift projects uses Swift 3.0 by default, if you are using a different version of swift you can use a `.swift-version` file to set the version for your Pod. For example to use Swift 2.3, run:
`echo "2.3" > .swift-version`
[!] BaseComponent did not pass validation, due to 1 warning (but you can use `--allow-warnings` to ignore it).
You can use the `--no-clean` option to inspect any issue.
- 解决方法:终端使用
echo "2.3" > .swift-version
命令即可
错误6
- 在执行指令
git push -u origin master
的时候,会出现下述错误:
错误6
这个错误时说本地库的文件和远程库的文件不对应,可以按照下述方式解决:
- 1、执行指令
git pull --rebase origin master
,然后再push - 2、上述操作还是不行的话,就执行强制覆盖,执行
git push -f origin master
错误7
执行指令pod trunk push xxx.podspec
的时候,报下面错误
There was an error pushing a new version to trunk: getaddrinfo: nodename nor servname provided, or not known
解决方案:出现这个错误,是网络DNS错误,去设置->网络->雷劈以太网->高级设置->DNS设置成114.114.114.114
错误8
在对podspec文件进行验证pod spec lint
的时候,有时候会出现下面的错误
这种错误大多数出现在创建私有库的过程中,当前的私有库依赖了其他的私有库,在验证的时候没有知道私有库的源地址。
解决方法:
上面已经提到这种情况出现在我们验证私有库的时候,该私有库依赖其他私有库,但是没有指定依赖私有库的源地址,所以我们在验证的时候加上一个参数
--sources
,这个--sources
指定的源地址一个是我们的私有库地址
,一个是pods的公有库地址https://github.com/CocoaPods/Specs.git
!图8-2
错误9
在执行git push origin master
的时候,如果指定origin
的源地址是https
的,可能会出现下面的错误
`HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large`
出现这个错误需要做的就是更换origin
源地址
git remote set-url origin ssh地址
在操作上述指令之前,还需要设置git托管网站使用ssh的私钥。具体参考来自http://www.cnblogs.com/lihaiping/p/6021813.html的博客
网友评论