Questions tagged [google-analytics-sdk]

The Google Analytics SDK allows you to connect your application to Google Analytics.

Goolge Analytics SDKs allow you to send user interaction from mobile applications to Google Analytics.

This allows developers to measure how users interact with their business from almost any environment. Developers can then use the Measurement Protocol to:

  • Measure user activity in new environments.
  • Tie online to offline behavior.
  • Send data from both the client and server.

Links:

219 questions
3
votes
0 answers

AppMeasurementInstallReferrerReceiver causes many ANR with FirebaseAnalytics

I recently updated to implementation 'com.google.firebase:firebase-analytics:17.2.3' which is adding AppMeasurementInstallReferrerReceiver to my app manifest.xml just like this…
3
votes
2 answers

how to integrate google analysis for java project to track user behaviour on multiple pages

I have research on this and I can implement google analytics on a single java page. However, the portal have multiple pages and I cannot repeat it for every single page. For html or php sites, we can easily do it by copying some code into header or…
3
votes
2 answers

How to detect an iOS app install campaign inside the app

I would like to find out in my iOS app if the app was installed due to an ad campaign link. Google Analytics is doing this and it is tracked on their analytics web page. iTunes Connect is doing this too and it is also tracked on the iTC web…
MacMark
  • 6,239
  • 2
  • 36
  • 41
3
votes
1 answer

Delete custom dimension from Google Analytics tracker

I am setting custom dimensions values using [GAITracker set:value:] method. This works fine but now I want to remove / delete the custom dimension values from the tracker so they do not get tracked with further requests. I can use nil for the value.…
Bobrovsky
  • 13,789
  • 19
  • 80
  • 130
3
votes
2 answers

Custom Dimensions in Swift

I have an Objective-C app that integrates with Google Analytics. Now, I'm trying to integrate an app written in Swift. There's my Objective-C Code: - (void) signInGoogleAnalytics { id tracker = [[GAI sharedInstance] defaultTracker]; //…
3
votes
1 answer

Google analytics background events

Is there a way to tell Google Analytics that certain events shouldn't be counted towards session data? Specifics: I have an Android app that uses Google Analytics. It has a service that crunches some data in the background, and reports stats on…
Michael
  • 1,257
  • 2
  • 9
  • 7
3
votes
1 answer

AnalyticsReceiver - what is that for? And why it causes 'Receiver does not require permission' warning?

In my Android application in manifest file i have following receiver and service declaration:
3
votes
2 answers

Integrating Google Analytics with Android App

I'm setting up an existing app with some of the activity tracking events offered through Google Analytics. I've added all the gradle changes and what not, but I keep getting an error related to having duplicate google_app_ids. I know one of the ids…
3
votes
0 answers

Google Analytics SDK for iOS without CocoaPods

I want to update Google Analytics SDK for iOS in my project but apparently it is not possible to download the SDK anymore without CocoaPods? I do not want to use CocoaPods, is there a way to download it as a standalone package?
entropid
  • 6,130
  • 5
  • 32
  • 45
3
votes
1 answer

HitBuilder method setAll() not working in Google Analytics

I have created a Hitbuilder instance and passed HashMap params = new HashMap params info. into the HitBuilder but could not find any info. of the Keys and values of HashMap on Dashboard. Although I can see…
3
votes
1 answer

Accessing Google Analytics Data With API Key Only

I'm trying to use Google Analytics API in Javascript. I want to: Query Data for a specific website (under my control) Use the data to build an open-to-the-public dashboard Every example I can find requires you to use OAuth to authenticate before…
3
votes
1 answer

INSTALL_REFERRER BroadcastReceiver not working

I'm trying to log what comes from installing app from store. But my custom receiver does not work when actual installation from Play Market occurs, however it works when I'm using adb to broadcast something like this. adb shell am broadcast -a…
3
votes
1 answer

How can I get last 24 hrs of data using Google Analytics API?

The start-date and the end-date parameters don't support the time in it which make sit impossible to get last 24 hours of data. e.g. If I am calling the API at 1:00 PM on 12/12/2015 and want to know data from 12/11/2015 1:00 PM to 12/12/2015 1:00…
3
votes
0 answers

End kGAISessionControl in Swift

I want to use Google Analytics v3.13 in my iOS app in Swift. It is internet radio player. I need to know approximately how many listeners I have from my app. I use this code to add event when user starts listening (for example hits play button): let…
Paweł Rup
  • 115
  • 10
3
votes
2 answers

GAI.h file is not found

My question is in someway related to the question stackoverflow.com/questions/20206565/… but the answers there do not help. I just cloned a project my co developer is working on currently and got this weird error: "GAI.h file is not found" Note :…
KiranGit
  • 61
  • 1
  • 6
1 2
3
14 15