Google analytics 3.08 IOS idfa class missing, won't collect idfa

后端 未结 10 1908
傲寒
傲寒 2020-12-08 09:24

I downloaded google analytics and i followed their instructions how to implement analytics in application. But whatever i tried i get this log in xcode: idfa class mis

10条回答
  •  無奈伤痛
    2020-12-08 10:24

    Just for complete other responses. I'm using the Google Analytics SDK v3.09 which I integrated without CocoaPod within Xcode 6. In order to remove the warning, I simply added the libAdIdAccess.a static library to my project by a drag and drop.

    AdSupport.framework was already included in my project.

    Note: I don't know why but sometimes, Xcode is mistaken for path adding an new library by this way what is resulting into a link error. In this case just modify the path in the Library Search Path option from the Build Settings : replace $(PROJECT_DIR)/YourDirectory/GoogleAnalyticsLibrary-3.09 by "$(SRCROOT)/YourDirectory/GoogleAnalyticsLibrary-3.09"

提交回复
热议问题