问题描述
在我的Swift iOS应用程序中,我刚刚通过创建 briding-header.h
和导入Flurry.h来添加Flurry Analytics
。然后我添加了 SystemConfiguration.framework
, CFNetwork.framework
和 Security.framework
。
In my Swift iOS application I've just added Flurry Analytics by creating a briding-header.h
and importing Flurry.h
. I then added SystemConfiguration.framework
, CFNetwork.framework
, and Security.framework
.
然后我通过目标添加
,因为它不会构建。 libFlurry_6.5.0.a
- >构建阶段 - >在Stack Overflow问题的指令之后链接二进制文件与库
I then added libFlurry_6.5.0.a
via Targets -> Build Phases -> Link Binary with Libraries
after instruction from a Stack Overflow question because it wouldn't build.
归档应用程序后我尝试上传它和收到此错误:
After archiving the app I tried to upload it and received this error:
推荐答案
- 在项目的目标设置中打开构建阶段标签。
- 确保
Flurry.framework 复制捆绑资源下不包含
。
- Open the Build Phases tab in the target settings for your project.
- Make sure that
Flurry.framework
is not included under Copy Bundle Resources.
来自。
这篇关于添加Flurry Analytics后无法上传iOS更新?错误:您的应用不能包含独立的可执行文件或库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!