尝试在我的 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.

最佳答案

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

打开您的 Podfile 并复制您在那里列出的现有 Pod(Podfile 在您的项目目录中)。

关闭您的 Xcode 工作区。

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

    关于objective-c - 尝试通过 Cocoapods 安装 'Intercom' pod 时出现 Intercom.bundle 错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35673714/

    10-09 02:05