打印:条目,“:CFBundleIdentifier”,不存在

新手上路,请多包涵

当我运行 react-native run-ios 构建成功但我收到以下错误。我已经检查了所有地方,但似乎没有任何效果。在命令前面使用 sudo 也无济于事。我正在使用 Xcode 7.3,react-native-cli:0.2.0,react-native:0.24.1,节点 v5.11.0。

 === BUILD TARGET mobileTests OF PROJECT mobile WITH CONFIGURATION Release ===

Check dependencies

** BUILD SUCCEEDED **

Installing build/Build/Products/Debug-iphonesimulator/mobile.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
/Users/astiefel/workspace/bosspayments/mobile/node_modules/promise/lib/done.js:10
      throw err;
      ^

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

    at checkExecSyncError (child_process.js:470:13)
    at Object.execFileSync (child_process.js:490:13)
    at _runIOS (runIOS.js:91:34)
    at runIOS.js:24:5
    at tryCallTwo (/Users/astiefel/workspace/bosspayments/mobile/node_modules/promise/lib/core.js:45:5)
    at doResolve (/Users/astiefel/workspace/bosspayments/mobile/node_modules/promise/lib/core.js:200:13)
    at new Promise (/Users/astiefel/workspace/bosspayments/mobile/node_modules/promise/lib/core.js:66:3)
    at Array.runIOS (runIOS.js:23:10)
    at Object.run (/Users/astiefel/workspace/bosspayments/mobile/node_modules/react-native/local-cli/cli.js:86:13)
    at Object.<anonymous> (/usr/local/lib/node_modules/react-native-cli/index.js:88:7)

原文由 astiefel 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 651
2 个回答

我的问题实际上是我的构建处于发布模式而不是调试模式。结果,标识符指向了不存在的东西。我改变了构建类型,它最终工作了。

原文由 astiefel 发布,翻译遵循 CC BY-SA 3.0 许可协议

在 Xcode 中打开项目

如果 Xcode > 9 运行命令 react-native upgrade (这会覆盖你所有的 iOS 配置, _谨慎使用_!)

然后

1.转到文件 - >项目设置

2.点击高级按钮

3.选择“Custom”,下拉选择“Relative to Workspace”

4.将“Build/Products”更改为“build/Build/Products”,将“Build/Intermediates”更改为“build/Build/Intermediates”

添加包

5.点击完成,完成

原文由 Katta Nagarjuna 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题