4

尝试在我的 Xcode 项目中安装 Intercom pod 时,控制台中出现错误:

[Intercom] ERROR -  The Intercom.bundle hasn't been added to your app correctly. This will result in images not appearing in the SDK's messaging UI. More information on how to correctly integrate Intercom is available here: https://developers.intercom.com/docs/ios-installation.
4

2 回答 2

1

cocoapods 安装对讲机的方式似乎有些不对劲。也许腐败,通过执行这些步骤,它将清除所有的 cocoapods 并重新开始。这可能会解决您的问题。

打开您的 Podfile 并复制您在此处列出的现有 pod(Podfile 在您的项目目录中)。

关闭您的 Xcode 工作区。

  1. 打开终端
  2. cd到你的项目目录。
  3. pod deintegrate从终端运行
  4. 删除所有与 cocoapods 相关的文件和文件夹(Podfile、Podfile.lock、Pods 文件夹和 xcworkspace 文件)(如果有的话)。
  5. pod init从终端运行
  6. 将 pod 列表添加到保存目录中的 Podfile 中。
  7. pod install从终端运行

在您的项目文件夹中打开 xcworkspace 文件。

于 2016-02-28T22:27:58.770 回答
0

右键单击xcode中标记为红色的文件->删除,然后应该可以解决:)

于 2018-07-24T20:06:26.967 回答