Apptentive:“未定义的架构符号......”Cordova项目中的错误

时间:2016-04-06 15:01:13

标签: ios apptentive

我正在尝试在Cordova项目中使用Apptentive。在构建我的Xcode项目时,我遇到了错误:

Undefined symbols for architecture arm64:
"_CGImageSourceCreateWithURL", referenced from:
  -[ATFileAttachment createThumbnailOfSize:] in libApptentiveConnect.a(ATFileAttachment.o)
"_kCGImageSourceCreateThumbnailWithTransform", referenced from:
  -[ATFileAttachment createThumbnailOfSize:] in libApptentiveConnect.a(ATFileAttachment.o)
"_kCGImageSourceThumbnailMaxPixelSize", referenced from:
  -[ATFileAttachment createThumbnailOfSize:] in libApptentiveConnect.a(ATFileAttachment.o)
"_OBJC_CLASS_$_QLPreviewController", referenced from:
  objc-class-ref in libApptentiveConnect.a(ATAttachmentController.o)
  objc-class-ref in libApptentiveConnect.a(ATMessageCenterViewController.o)
"_kCGImageSourceCreateThumbnailFromImageAlways", referenced from:
  -[ATFileAttachment createThumbnailOfSize:] in libApptentiveConnect.a(ATFileAttachment.o)
"_CGImageSourceCreateThumbnailAtIndex", referenced from:
  -[ATFileAttachment createThumbnailOfSize:] in libApptentiveConnect.a(ATFileAttachment.o)
"_CGImageSourceCopyTypeIdentifiers", referenced from:
  ___50+[ATFileAttachment canCreateThumbnailForMIMEType:]_block_invoke in libApptentiveConnect.a(ATFileAttachment.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

StackOverflow上有类似的问题,但解决方案对我不起作用:/

看起来我有所有必需的依赖项,我也为链接器添加了-lApptentiveConnect标志。

Frameworks

1 个答案:

答案 0 :(得分:2)

看起来有一些必要的系统框架没有自动链接。

您需要链接AVFoundation,CoreData,CoreGraphics,Foundation,ImageIO,MobileCoreServices,QuartzCore,SystemConfiguration,UIKit以及弱链接StoreKit和CoreTelephony。

一步一步:

  1. 在Xcode中的项目导航器中选择您的项目。
  2. 从目标列表中选择目标。
  3. 选择Build Phases选项卡。
  4. 展开Link Binary with Libraries组。
  5. 单击+按钮并选择上述框架(包括两个弱链接框架)。您可以 - 点击以选择多个。
  6. 当您回到图书馆列表时,请选择"可选"对于两个弱链接的框架。
  7. 然后您应该能够成功构建并运行。