We've setup Google Analytics in an iOS app which is sending the vendor identifier to distinguish between users on the reports. Here's what we've done:
In Google Analytics we've setup a Custom Dimension as follows:
Name: User identifier Scope: User Active: True
In the app we add the following in the AppDelegate:
[tracker set:[GAIFields customDimensionForIndex:1] value:uuidString]; // uuidString is the device identifier
In the logging window I can see that the value of cd1
is the correct value yet our custom report shows no data for the custom dimension.
We are using Google Analytics 3.02.
Does anyone have any idea where we are going wrong?
Are you sending the tracker?
This is an example from the Custom Dimensions & Metrics for iOS SDK