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

Google analytics with user-id login and logout

I use google analytics in my mobile app. I want to send data about my users ids. In Swift it looks like let my-user-id = 22 let GATracker = GAI.sharedInstance().defaultTracker GATracker.set(kGAIUserId, value: "\(my-user-id)") So is it ok that i…
2
votes
0 answers

How to select an 'Account' when adding Google Analytics to an app

This is not specifically about programming but about setting up a GA account to finally start programming. Also google himself redirected me here and has closed their own google groups community. So I hope you don't mind me bringing this up…
de.
  • 7,068
  • 3
  • 40
  • 69
2
votes
1 answer

iOS Google Analytics. How to track only app launches?

I want to get information about app installs and new/active users. Nothing else. No events, purchases, etc. Maybe uncaught exceptions. I use Google Analytics v3.14 (pod 'GoogleAnalytics', '~> 3.14') and this code to setup tracking: id
Fyodor Volchyok
  • 5,610
  • 4
  • 28
  • 45
2
votes
0 answers

Adding Google Analytics directly from Android Studio

I would like to add Google Analytics to my app directly from Android Studio. I go to File > Project Structure > Analytics and select the option to enable Google Analytics. Post which it allows me to select Accounts / Properties / Property ID from my…
2
votes
2 answers

Cocoapods 0.39.0 update error

After updating cocoapods to 0.39.0 from 0.38.2 each time I run pod install or pod update command, I receive error [!] Unable to satisfy the following requirements: - `GoogleAnalytics (= 3.13)` required by `Podfile` Project info: XCode 7, iOS9 SDK,…
Ponf
  • 1,190
  • 1
  • 12
  • 28
2
votes
0 answers

Google app conversion tracking sdk with swift

how can i integrate google conversion tracking sdk with swift 1.2. https://developers.google.com/app-conversion-tracking/ios/?hl=en_US I tried add .h file in bridge-header file but i cant access ACTReporter in appdelegate. Any idea how to integrate…
Asif Alamgir
  • 1,454
  • 1
  • 16
  • 41
2
votes
0 answers

What is the best way to add iOS Google API components (Analytics) to a static iOS library?

I am building a static iOS library and would like to use Google Analytics for tracking events inside the library. I tried installing via CocoaPods in the library itself but when I run the parent app I get a "resource not found" error. When I add the…
oviroa
  • 1,079
  • 2
  • 12
  • 29
2
votes
1 answer

GoogleAnalytics 3.10 - How to remove IDFA warning from logs?

I am developing an app in which i have added GoogleAnalytics 3.10 library. But whenever i try to run the app i see warning in my logs - VERBOSE: GoogleAnalytics 3.10 +[GAITrackerModel initialize] (GAITrackerModel.m:88): idfa class missing, won't…
Rahul Mane
  • 1,005
  • 18
  • 33
2
votes
1 answer

How could the Google Analytics session count be greater than the screen count?

We use the v3 Google Analytics iOS SDK. We are currently using google's automatic session management in production. Every screen on the app is tracked. My average session time is 25 minutes. Session time is skewed either very low or very high. 30%…
AtomicBoolean
  • 1,070
  • 13
  • 19
1
vote
1 answer

Get Event Count by Event Name and User ID using Google Analytics Data API

I would like to retrieve data from Google Analytics Data API. Endpoint is: https://analyticsdata.googleapis.com/v1beta/properties/{property_id}:runReport I would like to get report of number of events per event_name and username (from…
1
vote
1 answer

UserId not coming up in GA4 anymore (it did in UA)

I have been tracking through GTM the visits to my pages while reporting a userId that my platform is pushing everytime the page loads within the tag. To do so, I followed the regular procedure of adding the userId as a custom dimension in the…
1
vote
1 answer

GA Reporting API v4 ga:users count not matching the UI

The total number that was returned from the API is actually higher compared to what's being shown in the UI. Screenshot attached shows Users total count is 5,275. (https://i.stack.imgur.com/3DEyB.jpg) However, the API shows 6152 users in…
1
vote
0 answers

Google Analytics Hit timestamp custom dimension doesn't match PageViews metric

What I'm trying to do Hello, I'm trying to improve GA's granularity to the hit level for a website using custom dimensions, like on this article. I'm using hit timestamp, session id and user id dimensions. I already set everything up on GA and GTM.…
1
vote
1 answer

Creating custom tracking menu clicks in Android and Apple mobile apps in GA4

I need some advice on how to set up tracking for a custom event for Android and IOS. We are using Firebase SDK to gather data and report to the stakeholders. I need to track the number of clicks for each menu item. I tried adding the dynamic link…
1
vote
0 answers

Renaming Firebase event name in iOS still tracks old name

Recently, I renamed the firebase analytics event tracking names in few places in my iOS app. I did this totally in the code side. However, post this change, I see some of the renamed events are not at all created on the firebase console. And then,…
letsbondiway
  • 470
  • 3
  • 18