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
0 answers

Is there a way to see the origin of Android and iOS app sessions in Google Analytics?

Is there a way to see the origins of Android and iOS app sessions in Google Analytics? For example, did the session start because the user tapped the app icon on their device? Because they deep linked from the web? Because they tapped a push…
1
vote
0 answers

Google Analytics logging all events with sc=start causing large number of sessions

I am using following code to generate google analytic events from my Android application. However, whenever I call trackScreenView (see implementation below) , it seems like google is generating event with sc=start that indicates session start. I…
1
vote
2 answers

access google analytics api withouth authentication

I have managed to obtain info from an "view" using php in the google analytics, however it only works if i authenticate with the google account, otherwise it displays the following error: "Fatal error: Uncaught exception 'Google_Service_Exception'…
1
vote
1 answer

Why Firebase Analytics SDK automatically gets added when installing Firebase Cloud Messaging?

I'm developing an iOS application in which I am using Firebase Cloud Messaging. When I'm installing the FCM SDK, in the Pod's section, the Firebase Analytics SDK automatically installed. Please anyone let me know.
1
vote
1 answer

Do I add Google Analytics tracking script in both parent and child Django templates or just the parent templates on a Django website?

I have a question - I'm launching my first ever website, and am including the Google analytics tracking ID in it. The site is built in Python Django. Does this mean I have to include the tracking script in ALL html template files? What if I have…
1
vote
0 answers

How to solve liker error:can't link directly with lib system_configuration.dylib

I am adding Google Analytics a bit older version by directly downloading the libraries for a reason. Followed this tutorial https://www.raywenderlich.com/53459/google-analytics-ios but after adding all the files and trying to build basic analytics…
vishal dharankar
  • 7,536
  • 7
  • 57
  • 93
1
vote
0 answers

Google analytics - auto report to third party

I'm working with google analytics integrated in my website and I wonder if there is any way to send auto reports to third party companies. For example, I want to send every day/week the number of session and users in my website to other company that…
galvan
  • 7,400
  • 7
  • 38
  • 55
1
vote
0 answers

Google Analytics compile Error Execution failed for task ':app:processDebugGoogleServices?

I downloaded and compiled the analytics sample app from: https://developers.google.com/analytics/devguides/collection/android/v4/start I downloaded and saved my configuratition file to: app\google-services.json When I build I get: Error:Execution…
1
vote
0 answers

Non-pod framework (GoogleTagManager) missing reference to library moved to pod

The use case is the following: We developed an SDK, that uses, among other dependencies, GoogleAnalytics. The SDK was shipped in old-fashioned way of adding our files + our other dependencies. One of the dependencies is googleAnalytics lib, that the…
1
vote
2 answers

What is the proper syntax for Google Analytics Exception tracking in Swift?

I'm trying to use Exception Tracking for my app in Google Analytics. https://developers.google.com/analytics/devguides/collection/ios/v3/exceptions I am just trying to figure out the syntax for this in Swift (not super familiar with Obj-C): @try { …
1
vote
1 answer

hit google analytics on sign in of my android application

How to fetch google analytic, when user login in my android application, am now able to get the analytics after coming in the home screen, I want the application to hit when user login to my android application.
1
vote
0 answers

Google Analytics exclude traffic from own iOS app

Can I exclude my own mobile app traffic from Google Analytics when I have downloaded my own iOS app from the AppStore?
Manuel
  • 14,274
  • 6
  • 57
  • 130
1
vote
1 answer

Google Analytics API v4 for Android App Crash at Start

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

Python: No crypto library available

I am trying to access google-analytics data using python. I successfully get data when I run the script from console. But when I try to call script.main() function from a Django view, I get an error: CryptoUnavailableError at / No crypto library…
PeaceDefener
  • 618
  • 2
  • 8
  • 22
1
vote
0 answers

setTransactionRevenue of ProductAction api doesnt reflect correct results in dashboard

I am trying to implement google analytics in android from a long time and I am stuck in implementing the final transaction code. What I have done MyApp application = (MyApp) getApplication(); Tracker mTracker = application.getDefaultTracker(); …