【js】react-native Could not find iPhone 6 s…

2019-05-23 09:56:19来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一、在运行rn app应用时,react-native run:ios 报错出现  

 1 Could not find iPhone 6 simulator 

解决办法:

       1、react-native run-ios --simulator="iPhone 6",运行时指定启动版本

     2 、Open file: 打开:node_modules/react-native/local-cli/runIOS/findMatchingSimulator.js

然后。查看自己的版本号。在文件30行,对比是否时这个条件:

 1 if (version.indexOf('iOS') !== 0) { 2 3 continue 4 } 

下面是我的代码,注释掉的是version.indexOf('iOS') !== 0,然后替换掉。

1  // if (version.indexOf('iOS') !== 0) {
2     //   continue;
3     // }
4     if (version.indexOf('iOS') !== 0 && !version.includes('iOS')) {
5       continue;
6     }

二:上面的问题解决后,又遇到下面的问题。 Entry, ":CFBundleIdentifier", Does Not Exist

解决办法:

            1、rm -rf node_modules" 然后 "react-native upgrade" 再 "npm install"  最后,"react-native run-ios

    2、先进入到

    1 cd node_modules/react-native/third-party/glog-{X}.{X}.{X}/

    这里的glog-{X}.{X}.{X},X是版本号。

    然后 ./configure 编译下文件。

1 ./configure

原文:https://blog.csdn.net/qq_33182756/article/details/89764831


原文链接:https://www.cnblogs.com/yeujuan/p/10907352.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:JSON简介

下一篇:ztree选父不选子,选子不选父