美文网首页
pod 组件

pod 组件

作者: 老急急 | 来源:发表于2020-08-07 11:57 被阅读0次

    含第三方库的组件

    本地检测代码仓库是否有问题

    pod lib lint xxx.podspec --allow-warnings --use-libraries
    

    远程检测代码仓库是否有问题

    pod spec lint xxx.podspec --allow-warnings --use-libraries
    

    向远程代码索引库提交spec

    pod trunk push xxx.podspec --allow-warnings --use-libraries
    

    不含第三方库的组件

    //本地检测代码仓库是否有问题
    pod lib lint --allow-warnings --verbose
    
    //远程检测代码仓库是否有问题
    pod spec lint --allow-warnings --verbose
    
    //向远程代码索引库提交spec
    pod trunk push xxx.podspec --allow-warnings --verbose
    

    私有库依赖私有库的

    验证远程spec文件是否有问题
    pod spec lint WYLoginModule.podspec --sources='https://gitee.com/BIMComponent/BIMRepo.git,https://github.com/CocoaPods/Specs.git' --allow-warnings --use-libraries 
    
    pod spec lint xxx.podspec --sources ='repo1 url, repo2 url' --allow-warnings --use-libraries 
    
    验证远程代码库
    pod lib lint WYLoginModule.podspec --sources='https://gitee.com/BIMComponent/BIMRepo.git,https://github.com/CocoaPods/Specs.git' --allow-warnings --use-libraries 
    
    pod lib lint xxx.podspec --sources ='repo1 url, repo2 url' --allow-warnings --use-libraries
    
    上传私有库
    1.   pod trunk me
    看上传的私有库是否在列表中
    如果不存在,就要在次上传此私有库
    pod trunk push xxx.podspec --allow-warnings --use-libraries
    
    上传本地
    pod repo push WYRepo WYLoginModule.podspec --sources='https://gitee.com/BIMComponent/BIMRepo.git,https://github.com/CocoaPods/Specs.git' --allow-warnings --use-libraries 
    
    pod repo push XXXRepo xxx.podspec --sources ='repo1 url, repo2 url' --allow-warnings --use-libraries
    

    上传完成之后

    rm ~/Library/Caches/CocoaPods/search_index.json
    pod repo update
    

    相关文章

      网友评论

          本文标题:pod 组件

          本文链接:https://www.haomeiwen.com/subject/ofpfoctx.html