美文网首页
开发日志

开发日志

作者: cyhai | 来源:发表于2021-05-18 16:20 被阅读0次

    组件化:

    1、初始子模块
    初始化指令:pod lib create NetModule
    2、关联主项目:
    Podfile文件添加相关路径:
    pod 'NetModule', :path => './SubModule/NetModule'
    3、远端git仓库,创建子模块
    4、同步git本地子模块与远端子模块仓库
    git remote add origin https://gitxxxxxx.com/xxxx/netmodule.git

    cocoapods事项

    解决CocoaPods 重复生成 UUID
    install! 'cocoapods', :deterministic_uuids => false
    pod资源远端指定
    Podfile文件顶部添加
    source 'https://github.com/CocoaPods/Specs.git'
    source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
    source 'git@git.xxxxx/自己的仓库.git'
    适配开发环境
    pod 'MLeaksFinder', :git => "https://github.com/Tencent/MLeaksFinder.git", :configurations => ['Debug']

    相关文章

      网友评论

          本文标题:开发日志

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