美文网首页
文件支持cocoapod管理

文件支持cocoapod管理

作者: 从容到没边的优雅 | 来源:发表于2019-08-28 17:28 被阅读0次

    自己封装的类库放到cocoapod上管理

    1.建仓库
    • github上创建repository,license选择MIT
    2.复制git地址
    • git clone 到本地指定文件夹
    3.把文件拖到目录下
    4. 提交文件
    • git add -A 本地仓库
    • git commit -m "描述内容"
    • git tag 0.0.1(随便写)
    • git push origin --tags

    注意: 一定记得要打tag,不然后面会error找不到远程的分支fatal:Remote branch 0.0.1 not found in upstream origin

    5.创建.podspec文件:pod spec create文件夹名,修改里面配置
      spec.name         = "test"
      spec.version      = "0.0.1"
      spec.summary      = "ceshi"
      spec.description  = <<-DESC
                                   测试cocoapod的使用
                       DESC
      spec.homepage     = "https://github.com/suqinglin113x/test"
      spec.license      = "MIT"
      spec.author             = { "suqinglin113x" => "2413561757@qq.com" }
      spec.platform     = :ios
      spec.platform     = :ios, "9.0"
      spec.source       = { :git => "https://github.com/suqinglin113x/test.git", :tag => "#{spec.version}" }
      spec.source_files  = "test","*.{h,m}"
    
    6.注册cocoapod账号,有的跳到第7步
    pod trunk me 查看信息
    pod trunk register 2413561757@qq.com "suqinglin113x" //换成你自己的账号,确认邮件链接即可。
    
    7.准备完毕,开始提交
    • 检验下.podspec有无错误: pod spec lint test.podspec.根据反馈错误修改即可。
      警告内容可忽略 pod lib lint --allow-warnings
    • 没错误开始提交:pod trunk push --allow-warnings
    • 查看下是否提上去了:pod search
      WX20190828-172628.png

    相关文章

      网友评论

          本文标题:文件支持cocoapod管理

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