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
1
vote
1 answer

iOS app with iTunes store - get currency code (not priceLocal)

We have an iOS app with in-app purchase and we want to track transactions with Google Analytics (enhanced ecommerce). We already have the proper handling for priceLocal, that's not the issue... we need to tell GA the specific currency code in use by…
1
vote
0 answers

Google analytic not working on android

I have an android game, which I integrated with Google Analytics. I "think" my phone doesn't have google services installed, but documentation says that it should work. I have this in my manifesto
Arash
  • 11,697
  • 14
  • 54
  • 81
1
vote
0 answers

Install Campaign measurement data not recorded

I want to track the install campaign's for iOS app. I have integrated google analytics SDK. And followed the steps mentioned in google doc. https://developers.google.com/analytics/devguides/collection/ios/v3/campaigns And I created campaign URL…
1
vote
0 answers

How can I configure my app with Google services on Google Developers Console again?

There is no button to enable/disable service Hi, I want to change tracking id of Google Analytics for my app. In enable Google services for your app page, I got a configuration for my app with test tracking id. After testing, I try to change my…
1
vote
0 answers

Google Mobile Analytics reporting wrong devices

I started using Google Mobile Analytics for an android app. Everything looks fine until I looked under Audience->Devices. Numbers were registered (small values) for Apple iPhone when we do not even have an IOS app. Any idea why this might be?
Shin Sam
  • 11
  • 1
1
vote
1 answer

Analytics cross domain iFrame tracking with Tag Manager

IFrame tracking has never been a problem while using Google Analytics directly inserted on to the page. But now i started using Google Tag Manager to administrate scripts, i got an problem. function addGaIframe(ua_code, opt_hash) { …
1
vote
0 answers

google analytics for windows 8.1 app

I am using Google Analytics for a Windows 8.1 app. When I checked the events reports I could see the event category, action and label, but the value passed is not reflected. I want to know how to send more than 1 parameter value or custom events on…
user4892380
1
vote
1 answer

Tracking Social Tweets on Website with Google Analytics

We have a website which holds a Twitter Tweet button. We are looking to track the social events for clicking on the tweet button. We are using the newer Universal Analytics and following this…
StuartM
  • 6,743
  • 18
  • 84
  • 160
1
vote
0 answers

Seeing New User data in Google Analytics before using the Tracking Code for mobile app. How is it possible?

I have not integrated GA SDK with my app, and yet I am seeing new user data in the Google Analytics Dashboard. Also, I found that all of the users are from Macintosh. How can this be solved?
vinod s
  • 301
  • 2
  • 7
1
vote
2 answers

:app:dexDebug on adding libGoogleAnalyticsServices

On trying to run my project, I get the following error: Error:Execution failed for task ':app:dexDebug'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program…
1
vote
0 answers

How can we check that Google Tag manager works

I am developing an android application, and I used google tag manager to collect data. When I run the project, the project work correctly and I have this in the console V/GoogleTagManager﹕ Attempting to load a container from the resource ID…
Mallasse
  • 145
  • 1
  • 7
1
vote
0 answers

Google Analytics for iOS 3.12 causes huge memory issues

I followed the basic documentation for setting up GA (using coocapods), and as soon as my event is fired - (void)viewDidLoad { [super viewDidLoad]; id tracker = [[GAI sharedInstance] defaultTracker]; [tracker…
George L
  • 1,673
  • 2
  • 26
  • 39
1
vote
2 answers

Cocoapods update GoogleAnalytics sdk returns an SSL certificate error

Ive just upgraded to version 0.37.1 of CocoaPods and now Im getting an error when trying to update my GoogleAnalytics library In my podfile I have pod 'GoogleAnalytics-iOS-SDK' And now when I execute pod update I get the following error [!]…
Fraser
  • 953
  • 11
  • 21
1
vote
2 answers

Memory Leak when Google Analytics sends a hit

I'm trying to use Google Analytics SDK v3.10 for iOS. I added all dependencies and headers, then in my app delegate, method : - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions , I added…
1
vote
1 answer

Can I force a session to end when my iOS app is backgrounded?

How do I force a session to end when my iOS app is backgrounded so that a new session is created even if the user reopens the app within 30 minutes of backgrounding it? The v2 SDK had instructions on how to do this but I can't find anything similar…