1、在pod spec lint 检测podspec文件的时候出现以下问题:
Encountered
an unknown error (Simulator iPhone 4s is not available.) during validation. Simulator
这个问题一般出现在安装了xcode8+的机子上,因为xcode8已经不支持iPhone4s模拟器,所以会出现这种问题,目前给出两种解决方式:
a、在xcode里面下载iOS10之前的模拟器,这样就有iPhone4s了,不过下载的文件会比较大,1G+。
b、升级cocoapods,在终端执行下面的命令:
sudo gem install -n /usr/local/bin cocoapods --pre
2、Unable to accept duplicate entry for: TTLockSDK (2.6.4)
这个是因为之前已经push过2.6.4版本了,下面给出解决方法:
方案一:
重新添加标签,比如:2.6.5,然后再push,具体的操作可见上一篇博客中创建podspec开始的部分
方案二:
移除本版本,然后重新push,在终端执行下面指令:
pod trunk delete TTLockSDK 2.6.4 (即:pod trunk delete 库名 版本号)
这条指令可以帮助移除某个版本,完成之后,可以pod setup一下,然后pod search,可以发现,该版本以及不存在了,这个时候就可以重新push版本
3、提示 unable to find a pod with name, author, summary, or description matching 'TTLockSDK'
解决方法如下,打开终端,输入以下指令:
(1) rm ~/Library/Caches/CocoaPods/search_index.json
(2) pod setup
完成上述两步之后,再去 pod search,就没有问题了
4、unable to read the license file '***' for the …………
一定要按照顺序,先创建LICENSE再打标签,然后push,就不会有这个警告了!
5、在 pod spec lint 的时候出现以下错误
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.…………
具体错误提示如下图:
解决方法:
在终端执行以下指令:
echo “2.3” > .swift-version
完成之后,重新执行pod spec lint, 然后就可以啦!!!!
6.在 pod spec lint 的时候出现以下错误.
- ERROR | [iOS] xcodebuild: Returned an unsuccessful exit code. You can use `--verbose` for more information.- NOTE | [iOS] xcodebuild: clang: error: linker command failed with exit code 1 (use -v to see invocation)
一模一样的podspec,之前都是验证成功的,突然不行了,尝试了各种方法都不行,后来更新了下仓库 pod repo update,再pod spec lint 就成功了,真的是坑啊。以后遇到问题解决不了,就升到最新版再试
7、为共有库添加或移除owners
执行下面指令添加共有库所有人:
pod trunk add-owner TTLockSDK aaa@qq.com(即:pod trunk add-owner 库名 邮箱)
执行下面指令移除共有库owner:
pod trunk remove-owner TTLockSDK aaa@qq.com(即:pod trunk remove-owner 库名 邮箱)
可以使用 pod trunk info TTLockSDK 指令查看库当前状态,版本,所有人等
8、 - ERROR | [iOS] unknown: Encountered an unknown error ([!] /usr/bin/git clone https://github.com/ttlock/iOS_TTLock_Demo.git /var/folders/d5/r9zc6y5j63g_l5f7scgk9s1r0000gn/T/d20190605-38922-107umsq --template= --single-branch --depth 1 --branch 2.8.9
Cloning into '/var/folders/d5/r9zc6y5j63g_l5f7scgk9s1r0000gn/T/d20190605-38922-107umsq'...
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 60
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
原因1:缓存区溢出
git config --global http.postBuffer 5242880000
原因2:网络下载速度缓慢
git config --global http.lowSpeedLimit 0git config --global http.lowSpeedTime 999999
实在不行,换一个网络试试