podspec 校验依赖出错问题 pod lib lint ,需要指定源

//podspec 设置依赖
s.dependency '私库'
s.dependency 'MBProgressHUD'
s.dependency 'Masonry'
 
 
//本地校验
pod lib lint --verbose --use-libraries --allow-warnings
//同时依赖私库和公共库,直接本地校验会出错,
 
 
//校验podspec文件时会到远程podspec库查找相关依赖,默认只会到官方specs库校验,此时需要指定远程specs库去校验。----sources指定源
pod spec lint JKDJ_UIKit.podspec --verbose --use-libraries --allow-warnings --sources='https://私库.git,https://github.com/CocoaPods/Specs.git'

 

你可能感兴趣的:(terminal,终端)