Questions tagged [google-analytics-firebase]

Google Analytics is a free analytics solution provided by Google, featuring several client-side APIs for data collection. This tag is used for the Collection protocol specifically for Android and iOS SDKs versions 4.

Google Analytics provides easy to use APIs and SDKs to send data to Google Analytics.

With the collection APIs and SDKs, you can measure how users interact with your content and marketing initiatives. Once implemented, you will be able to view user-interaction data within Google Analytics or through the Reporting APIs.

Android Google Analytics SDK v4 for Android - Getting Started

iOS SDK Google Analytics SDK for iOS v3 - Getting Started

You can use the SDK by using Google Play services SDK. This SDK can be downloaded from https://developer.android.com/google/play-services/index.html.

648 questions
11
votes
4 answers

Google Analytics API v4 for Android Does NOT Send Screen Views

I've set all things for google analytics api v4 as it mentioned here: https://developers.google.com/analytics/devguides/collection/android/v4/ and here: http://www.javacodegeeks.com/2014/04/working-with-google-analytics-api-v4-for-android.html I…
10
votes
2 answers

Firebase screen name is showing not set

I have created a project in Google Firebase Analytics and I am able to log screen names in the console. But for one screen screen_view is not recorded and it is showing as not set in the screen view list. I have used a default function for logging…
Akshay
  • 2,506
  • 4
  • 34
  • 55
9
votes
2 answers

Swift iOS 14 Firebase Warning - This Old-Style Function Definition Is Not Preceded By a Prototype

I have an app with Firebase integration to connect analytics using cocoapods. It was working well without any yellow warnings for iOS 13, but when I installed the new cocoa pods for target iOS 14 and build the app I get 6 yellow warning…
Alessign
  • 768
  • 9
  • 17
9
votes
2 answers

How to suppress logging with Google Analytics 7.3?

The latest update to Google Play Services 7.3 makes GA's Logger interface deprecated, and thus we cannot control the logging level from inside our app anymore. This interface is deprecated. Logger interface is deprecated. Use adb shell setprop…
hidro
  • 12,333
  • 6
  • 53
  • 53
9
votes
2 answers

Android google analytics integration error

When i am trying to get tracker in my activity it show error that -this method is undefine "getactivity()" in google analytic v4 // Get tracker. Tracker t = ((AnalyticsSampleApp) getActivity().getApplication()) …
user3736720
  • 139
  • 2
  • 6
9
votes
2 answers

Google Tag Manager hits not visible in Google Analytics

I'm implementing Google Analytics v4 in my android app through GTM. Container and code are configured according to instructions found here https://developers.google.com/tag-manager/android/v4/. I'm getting logs which indicate that events are being…
9
votes
1 answer

enableAutoActivityTracking not automatically tracking activities?

I'm currently initializing my Google Analytics tracker as follows: GoogleAnalytics analytics = GoogleAnalytics.getInstance(context); Tracker mGATracker =…
loeschg
  • 29,961
  • 26
  • 97
  • 150
8
votes
0 answers

Is it possible to use the same parameter name for multiple events in Google Analytics?

If I use the same parameter name for two different events, google analytics will show in custom dimensions & metrics these parameters like this: item_name[spend_virtual_currency] item_name[BreakItem] So the parameter here is item_name…
8
votes
1 answer

Google Analytics V4 to Firebase

I have been using Google Analytics version v4 in an Android mobile application for the past few years; I am planning to move to Firebase Analytics. If I move to Firebase Analytics as is, will I loose all data which is present in Google…
Vishwanath.M
  • 6,235
  • 11
  • 42
  • 56
8
votes
3 answers

Core Reporting API - How to use multiple dimensionFilterClauses filters?

I'm trying to use multiple dimensionFilterClauses into a Core Reporting API V4 query. If I use just a filter on the ga:adwordsCustomerID dimension everything goes fine, but when I add a second filter on the ga:adTargetingType dimension it throws a…
8
votes
0 answers

Install referrer campaign not visibile in GA (broadcast sent in android GAv4)

lately we have incorporated Google Analytics V4 SDK for an android app according to this documentation (to track install referrers): https://developers.google.com/analytics/devguides/collection/android/v4/campaigns#overview Unfortunately data is not…
8
votes
1 answer

Google Analytcs Enhanced Ecommerce Tracking for Android issue

I've been trying to implement Enhanced Ecommerce Tracking, but no matter what I do the Ecommerce View in Google Analytcs web panel stays empty, i.e. no data is sent (apparently). All other data, Screen and Event tracking works as expected. I'm…
8
votes
4 answers

Google Analytics on Android gives avg session duration: 00:00:00

i'm using google analytics on Android and it gives me a lot of avg session duration: 00:00:00 please note that i'm not using "ga_autoActivityTracking" and i have more than one activity here's my code build.gradle compile…
Omar Abdan
  • 1,901
  • 17
  • 29
8
votes
1 answer

Google Analytics "There was an internal error"

Recent days I am getting "There was an internal error" error message from Google while calling Google Analytics API to get reports data. Previously the same API works fine. Following are the dimensions and metrics we used, dimensions :…
8
votes
1 answer

Google Analytics v4 - Data not showing on dashboard

I've been working on integrating Google Analytics v4 into my application. I've followed this : https://developers.google.com/analytics/devguides/collection/android/v4/ however, my analytics dashboard isn't displaying any data. Here is how I've…
1
2
3
43 44