Google Analytics demographic information on iOS mobile apps

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?

+6
source share

Source: https://habr.com/ru/post/977514/


All Articles