我正在尝试在我的iOS应用程序中添加谷歌iPhone转换跟踪功能。应用程序的基本SDK是iOS6,应用程序的有效架构是armv7,应用程序的iOS部署目标是4.3,我使用的是最新的xcode 4.5.2和OSX10.8.2
该应用程序在appstore中,适用于iPhone 3-4-5。
当我尝试为iOS添加Google转换跟踪时,请按照以下链接:https://developers.google.com/mobile-ads-sdk/docs/admob/conversion-tracking
我有一个错误:
Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_ASIdentifierManager", referenced from:
objc-class-ref in libGoogleConversionTracking.a(PingUtil.o)
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)发布于 2013-08-20 05:02:45
SDK库引用了iOS AdSupport开发框架,该框架可能还不是项目的一部分。可以通过包含AdSupport.Framework来解决这个问题。 要添加框架,只需遵循以下步骤。选择顶部的项目文件。在“构建阶段”选项卡下打开“带有库的链接二进制文件”.使用+按钮从iOS SDK中添加框架。
https://stackoverflow.com/questions/13858064
复制相似问题