无法在Mac上构建和运行react-native项目

时间:2017-08-28 15:53:25

标签: ios node.js macos react-native

参考this问题,我遇到了同样的问题。我是VMware的MacOs El Captain。

  • 节点v.7.8.0
  • npm v.4.6.1
  • react-native-cli 2.0.1
  • react-native 0.46.4
  • Xcode v.8.2.1

我有两个问题: - 当尝试init一个新的本地反应项目时,包获取挂起来从repo获取react-native 0.46.4包。其他包已成功下载。所以我从Windows执行npm install,然后在Mac上复制node_modules文件夹。 - 当尝试在iOS模拟器上运行项目时,我收到以下错误:

**建筑失败**

...
In file included from /Users/michelebombardi/Desktop/ReactNativeProjects/caliup/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/Bits.h:70:
/Users/michelebombardi/Desktop/ReactNativeProjects/caliup/node_modules/react-native/React/../third-party/folly-2016.09.26.00/folly/detail/BitIteratorDetail.h:21:10: fatal error: 'boost/iterator/iterator_adaptor.hpp' file not found
#include <boost/iterator/iterator_adaptor.hpp>

The following build commands failed:

CompileC /Users/michelebombardi/Desktop/ReactNativeProjects/caliup/ios/build/Build/Intermediates/React.build/Debug-iphonesimulator/third-party.build/Objects-normal/x86_64/Conv.o /Users/michelebombardi/Desktop/ReactNativeProjects/caliup/node_modules/react-native/third-party/folly-2016.09.26.00/folly/Conv.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)

Installing build/Build/Products/Debug-iphonesimulator/CaliUp.app
An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=2):
Failed to install the requested application
An application bundle was not found at the provided path.
Provide a valid path to the desired application bundle.
Print: Entry, ":CFBundleIdentifier", Does Not Exist

Command failed: /usr/libexec/PlistBuddy -c Print:CFBundleIdentifier build/Build/Products/Debug-iphonesimulator/CaliUp.app/Info.plist
Print: Entry, ":CFBundleIdentifier", Does Not Exist`

我真的需要在本周结束前在应用商店发布我的应用。 我已经尝试了所有建议的解决方案,但没有效果。

有人可以帮助我吗?

3 个答案:

答案 0 :(得分:2)

首先尝试这个: 守望者手表 - 德尔 - &amp;&amp; rm -rf node_modules

如果使用Homebrew安装节点,请从此处卸载并安装节点。(https://nodejs.org/en/

现在,如果您使用yarn来安装节点模块: 试试npm install

答案 1 :(得分:1)

此错误是由构建步骤中第三方库下载失败引起的。在您的主文件夹中应该有一个〜/ .rncache目录,其中包含许多压缩的C ++库。当一个或多个这些文件无法从github amazon s3服务器完全下载时,会发生错误。 (可能在中国)

问题因为反应本机xcode构建中的脚本不知道如何恢复损坏的下载。因此,您可以通过删除〜/ .rncache文件夹来解决此问题,并且因为这些文件夹被解压缩到您的模块中,您还应该rm -rf node_modules并重新安装。

可以找到更多信息herehere

答案 2 :(得分:0)

可能会这样。请尝试以下步骤:

  1. 从ios文件夹备份您的图标,图片等。

  2. 检查{project-root} \ app.json文件中的密钥“name”是否设置了应用名称。

  3. 删除ios /和android /目录

  4. 运行react-native eject

  5. 替换您之前复制的图标,图像等

  6. 运行react-native链接

  7. 使用快捷键命令+ r

  8. 从Xcode启动应用程序