2

I have a problem when I try to compile my project on real device. It says build succeeded and then I get the error below.

dyld: Library not loaded: @rpath/Agrume.framework/Agrume Referenced from: /var/containers/Bundle/Application/E3ABC8B5-A3C0-4FE3-B395-6A171C9E0EF6/myapp.app/myapp Reason: image not found (lldb)

I tried to add the framework in the settings Build Phases/Build settings but it doesn't work.

4

2 回答 2

1

您可能没有将框架嵌入到您的应用程序中。

查看应用程序目标的常规设置。应该有一个称为“嵌入式二进制文件”的部分。将您的链接框架添加到其中,它应该没问题。这是一个例子:

在此处输入图像描述

于 2018-05-22T09:43:24.237 回答
0

我遇到了同样的问题,只能通过使用更新的 swift 版本(4.0.3 -> 4.1)重建使用过的框架来解决。我必须下载库源并自己构建。

于 2018-05-22T09:53:12.923 回答