Flurry AppCircle 集成 - 重复符号 FlurryAutoIncrement.o

发布于 2024-12-27 03:39:08 字数 301 浏览 1 评论 0原文

我不断收到此错误:

ld: duplicate symbol _OBJC_CLASS_$_FlurryAutoIncrement in /Users/game/FlurryAnalytics/ libFlurryAnalytics.a(FlurryAutoIncrement.o) and /Users/game/FlurryAppCircle/libFlurryAppCircle.a(FlurryAutoIncrement.o)

我已正确遵循指南。我的XCode版本是3.2.5,Flurry SDK版本是3.0.6

I keep getting this error:

ld: duplicate symbol _OBJC_CLASS_$_FlurryAutoIncrement in /Users/game/FlurryAnalytics/ libFlurryAnalytics.a(FlurryAutoIncrement.o) and /Users/game/FlurryAppCircle/libFlurryAppCircle.a(FlurryAutoIncrement.o)

I've followed the guides properly. My XCode version is 3.2.5 and Flurry SDK version is 3.0.6

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两相知 2025-01-03 03:39:08

您也在使用 Flurry 分析吗?你能检查你的构建配置吗?来自我们的常见问题解答:

如果在您的程序中使用了 -ObjC 或 -all_load 标志,就会发生这种情况
构建配置。这 2 个标志不能与 Flurry 一起使用
模块化 SDK。然而,Apple 确实提供了一个 -force_load 标志,即
更有效,并且应用于其他时不会引起问题
您的应用程序使用的库(注意:force_load 只能用于
表现出这种行为的静态库。它不应该应用于
Flurry Libs)。更多详细信息可以在此链接中找到
(http://developer.apple.com/library/mac/#qa/qa1490/_index.html)。

如果这不能解决您的问题,请告诉我。

Are you using Flurry analytics too? Can you check your build config? From our FAQ:

This will occur if the -ObjC or -all_load flags are used in your
build configuration. These 2 flags can not be used with Flurry's
modular sdk. However, Apple does provide a -force_load flag that is
both more efficient and does not cause issue when applied to other
libraries your app uses (note: force_load should only be used on
static libraries exhibiting this behavior. It should not be applied to
the Flurry Libs). More details can be found in this link
(http://developer.apple.com/library/mac/#qa/qa1490/_index.html).

Let me know if this doesn't solve your issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文