All Questions
Tagged with google-analytics ios
905 questions
82
votes
1
answer
7k
views
Google Analytics SDK 3.0 _sqlite3 linker errors in iOS
I'm integrating Google Analytics SDK 3.0 in my project. But I am getting linker errors when try to build my project.
As mentioned in the documentation, I have linked following libraries in my project,...
75
votes
6
answers
75k
views
How to add .plist file to all targets in Xcode?
Totally new to iOS but I'm currently trying to setup Google Analytics. I have followed the SDK documentation and everything went great until this step:
Add the configuration file to your project
Drag ...
69
votes
7
answers
15k
views
GAITrackedViewController and UITableViewController
With Google Analytics for iOS v2 Google suggests subclassing their GAITrackedViewController class in place of UIViewController. What do we do in the case of UITableViewController?
source
#import "...
56
votes
6
answers
20k
views
Linker errors when trying to install new Google Analytics 3.0 Beta
I believe just today Google released a new update to their iOS Analytics frame work (version 3.0). When I follow the instructions and try to run the code, I get:
Undefined symbols for architecture ...
46
votes
4
answers
44k
views
Unable to link GoogleAnalytics 3.01 with XCode 5 (missing required architecture x86_64)
I have built my App (targeted for iOS7) and now want to apply Google Analytics as the last step before submission. What I did:
Downloaded GA for iOS 3.01
Imported content of /GoogleAnalytics/Library/ ...
38
votes
14
answers
37k
views
framework not found FirebaseAnalytics
I added Google Analytics by CocoaPod into my project, but my app crashed and gave the following error.
ld: framework not found FirebaseAnalytics
clang: error: linker command failed with exit code 1 (...
37
votes
14
answers
59k
views
Firebase iOS Debug Console not logging anything
I have setup firebase in both the console and in the app. Everything configures correctly, and events appear to be logging in the app.
Output to console:
<FIRAnalytics/DEBUG> Logging event: ...
36
votes
6
answers
9k
views
Issue with Google Analytics in Swift 2 or 3
I have a problem with Swift 2 (Swift 3) and Google Analytics.
This is the line with the problem:
tracker.send(GAIDictionaryBuilder.createScreenView().build())
Xcode tell's me:
Cannot invoke 'send'...
36
votes
10
answers
19k
views
Google analytics 3.08 IOS idfa class missing, won't collect idfa
I downloaded google analytics and i followed their instructions how to implement analytics in application. But whatever i tried i get this log in xcode: idfa class missing, won't collect idfa.
So i ...
36
votes
1
answer
2k
views
GoogleAnalytics.Property 'parameters' on Entity 'GAIHit' is using nil or an insecure NSValueTransformer
After updating the GoogleAnalytics pod, my app started crashing with the following error:
CoreData: fault: One or more models in this application are using
transformable properties with transformer ...
31
votes
2
answers
1k
views
google analytics ios sdk V2.0 short session durations
The app I'm working on is used on an iPad in a retail display. The device has auto-lock turned off, and the app will show a video loop as a type of screensaver after a minute of inactivity. We are ...
28
votes
5
answers
52k
views
iOS: disable/remove FirebaseAnalytics
I update 'Google/Analytics' from CocoaPod and get FirebaseAnalytics.
After that, each time I run project, the FirebaseAnalytics turns out many error loggings.
Currently I don't use this library and ...
26
votes
4
answers
17k
views
Cannot convert value of type 'NSMutableDictionary' to type '[NSObject: AnyObject]' in coercion for google ios Analytics
I want to add google Analytics ios into my project but i got some problems when i tried to paste their code into my app like the code below.
var tracker = GAI.sharedInstance().defaultTracker
tracker....
22
votes
3
answers
17k
views
Google Analytics doesn't work on new iOS project
I have created a new iOS project and added Google Analytics support following by official instructions.
I've added to Frameworks:
libGoogleAnalyticsServices.a
AdSupport.framework
CoreData.framework
...
21
votes
1
answer
4k
views
How Firebase Analytics calculates (unique) Users
Since I noticed a misalignment between the count of Users and the count of User IDs on Google Analytics (for mobile apps), I need to understand technically how Google counts Users in mobile apps. ...