美文网首页
ReactNative0.62版本CocoaPods填坑

ReactNative0.62版本CocoaPods填坑

作者: cdd7bd930c44 | 来源:发表于2020-04-30 11:25 被阅读0次

    ReactNative从0.60之后IOS加入了CocoaPods,之前一直没跑起来,但是因为并不准备更新所以没管.

    最近准备做一个新项目,考虑到上一个app中被androidX玩的天昏地暗的,这次准备尝试一下新版本.

    然而init的时候就卡在了pod install上,然后根据报错信息各种设置,架梯子,还是不成功,直到现在才弄好,于是记录下解决方法.

    1.设置CocoaPods镜像

    对于旧版的 CocoaPods 可以使用如下方法使用 tuna 的镜像:

    $ pod repo remove master

    $ pod repo add master https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git

    $ pod repo update

    新版的 CocoaPods 不允许用pod repo add直接添加master库了,但是依然可以:

    $ cd ~/.cocoapods/repos

    $ pod repo remove master

    $ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master

    最后进入自己的工程,在自己工程的podFile第一行加上:

    source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'

    相关文章

      网友评论

          本文标题:ReactNative0.62版本CocoaPods填坑

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