I am using the GoogleAnalytics-iOS-SDK to track events in a mobile application. Everything works as expected (yay!). The problem is that I do not see any demographic data. I include AdSupport.framework as well as libAdIdAccess.a (so I donβt see any Google Analytics alerts sent to the console when the application starts). I also set the necessary flag:
GAI *gai = [GAI sharedInstance]; gai.defaultTracker = [gai trackerWithTrackingId:GOOGLE_ANALYTICS_TRACKING_ID]; gai.defaultTracker.allowIDFACollection = YES;
I have several people testing the application. Therefore, I hope that I am above any threshold that they have for several users ... (although, I do not know how many users are required).
Does anyone know what I can lose? Do I need to be logged into any Google account so that the application can access the DoubleClick cookie containing all demographic data?
source share