All Questions
14 questions
3
votes
2
answers
3k
views
How to turn off data thresholds in Google Analytics for Firebase
I need help I integrate firebase analytics in my flutter projects. Wrote some custom events and want to work with data from this events, that why i create metrics and dimensions but it doesn't work ...
0
votes
1
answer
174
views
iOS Google analytics sunset
I am using libGoogleAnalyticsServices.a library in my client app for Google Analytics 360.
As per below URL, google analytics sdk are going to get the sunset.
https://support.google.com/firebase/...
1
vote
1
answer
155
views
Custom Dimension - When to send user scope custom dimensions
I am currently trying to add a user scope customs dimensions to our mobile app(both Android & iOS).
I want to send the Login status, Age, Review Count data of our app member
so that I can set ...
5
votes
2
answers
1k
views
how anonymize Google Analytics for iOS for GDPR / RGPD purpose
I wonder if it is possible to use Google Analytics for iOS in a anonymized way.
It is currently possible to :
- disable IDFA (https://developers.google.com/analytics/devguides/collection/ios/v3/...
2
votes
2
answers
803
views
Track app events without counting towards Active Users in Google Analytics?
A mobile app tracks events using the Google Analytics iOS SDK.
func recordEvent(_ category: String, action: String, label: String?, value: Int?) {
guard let builder = GAIDictionaryBuilder....
1
vote
0
answers
156
views
Most of events has no any data (not set)
I'm using Google Analytics SDK in my app. SDK version is 3.13.0.
SDK is initialized properly without errors. Plist file is correct.
NSError *configureError;
[[GGLContext sharedInstance] ...
2
votes
0
answers
353
views
iAd campaign tracking disabled because the current date is past the campaign window
i have build an ios application objective c platform , i am trying to integrate google analytics to application . i have added these following code in my ios development.
// GAI options
GAI *gai = [...
1
vote
0
answers
212
views
Does Google Analytics count app upgrades as new installs?
We're using GA for social media app and there is a huge difference in the amount of new users(installs) in GA and the amount of installs in iTunes analytics
The amount of views in sign-up screen is ...
2
votes
2
answers
2k
views
Google Analytics SDK iOS10
I have installed Google Analytics from cocoa pod version 3.14
id<GAITracker> tracker = [[GAI sharedInstance] trackerWithTrackingId:oneTrackId];
crash on iOS 10 in code line
NSString *user_id ...
3
votes
1
answer
1k
views
Issues in Google Tag Manager plugin in Cordova
Am trying to use GTM plugin for Cordova - https://github.com/kraihn/cordova-plugin-tag-manager. Am facing issues on the iOS version of my cordova app.
I get warnings that the binary resource file ...
2
votes
1
answer
67
views
When adding do,try catch Google Analytic tracker got error
I still can't figure my simple do,try catch at json parsing causing google analytic compile time error.
Especially at theses :
let tracker = GAI.sharedInstance().defaultTracker
let event = ...
1
vote
2
answers
551
views
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 ...
3
votes
1
answer
610
views
How to get active users distributed by Campaign source? Google Analytics campaign tracking ios
I need to track my ios app installs by campaign src. and i am using google Analytics campaign measurement for that .
i need to associate the campaign source with the events.
so each event will have ...
1
vote
0
answers
260
views
Google Analytics for ios with Pod
I am using CocoaPods for integrate Google Analytics in iOS .
I referred this link
https://developers.google.com/analytics/devguides/collection/ios/v3/?configured=true
My code is .
NSError *...