pod 指定库版本

作者: bo_song | 来源:发表于2017-09-19 14:45 被阅读0次
    pod 'JLRoutes'                 //每次都获取最新版本
    pod 'JLRoutes', '~>0'          //高于0的版本
    
    pod 'JLRoutes', '~> 0.1.2'     //使用大于等于0.1.2但小于0.2的版本
    pod 'JLRoutes', '~>0.1'        //使用大于等于0.1但小于1.0的版本一个效果,都表示使用最新版本
    
    pod 'JLRoutes', '2.0'          //只使用2.0版本
    pod 'JLRoutes', '= 2.0'        //只使用2.0版本
    
    pod 'JLRoutes', '> 2.0'        //使用高于2.0的版本
    pod 'JLRoutes', '>= 2.0'       //使用大于或等于2.0的版本
    pod 'JLRoutes', '< 2.0'        //使用小于2.0的版本
    pod 'JLRoutes', '<= 2.0'       //使用小于或等于2.0的版本
    
    pod 'JLRoutes', :git => 'http://gitlab.xxxx.com/JLRoutes.git', :branch => 'R20161010'  //指定分支 
    
    pod 'MyLib',  :path => '../MyLib'  //指定本地库 与当前工程的相对位置
    

    相关文章

      网友评论

        本文标题:pod 指定库版本

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