Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Analytics for Android: Don't see Demographics and Interests report

We are using Google Analytics for android, via the Google play services SDK.

In our reports, "Demographics and Interests reports" do not appear.

We have enabled the demographics reports in the admin. All documentation and S/O answers we found were about the .js tracking code.

like image 600
Guy Avatar asked May 04 '14 07:05

Guy


People also ask

How do I enable demographics in Google Analytics 4?

How to enable demographics reports in GA4? Go to Admin of your GA4 property > Data Settings > Data Collection. In the Enable Google signals data collection, click Get Started. If Google Signals is already activated, you will see a toggle switch.

How do I report interest in Google Analytics?

Login into Google Analytics, and navigate to the Audiences tab. On the drop-down, select 'Demographics'. You will then be prompted to enable the report. If successful, you'll see a confirmation message informing you that data will be available shortly.

How can I see my Google demographics?

Sign in to your Google Ads account. Click the Audiences tab in the left page menu. In the “Demographics” module, select Campaign view or Ad Group view in the view drop down menu to filter for the reporting level you want to see. Select a demographic tab: Age, Gender, Household Income, Parental Status, or Combination.

Does Google Analytics provide demographic data?

Google Analytics has a wealth of free information about the different demographics who visit your website. This data is collected mainly from people who are logged in to a Google account plus from additional third-party cookies and app data.


1 Answers

Did you update your code ?

From google:

// Get tracker.
Tracker t = ((AnalyticsSampleApp) getActivity().getApplication()).getTracker(
TrackerName.APP_TRACKER);

// Enable Display Features.
t.enableAdvertisingIdCollection(true); 

I don't know if this is what you're looking for, but hope it helps. From https://support.google.com/analytics/answer/2444872?hl=pt-BR&utm_id=ad

like image 148
victorkurauchi Avatar answered Oct 17 '22 16:10

victorkurauchi