0

I'm using Google (Firebase) Analytics in an iOS app and track the event like follows.

Analytics.logEvent("event-name", parameters: [
    AnalyticsParameterSource: "source-value"
])

AnalyticsParameterSource is pre-defined in Firebase SDK as follows.

/// airship). Identify the advertiser, site, publication, etc. that is sending traffic to your
/// property. Highly recommended (String).
/// <pre>
///     let params = [
///       AnalyticsParameterSource : "InMobi",
///       // ...
///     ]
/// </pre>
static NSString *const kFIRParameterSource NS_SWIFT_NAME(AnalyticsParameterSource) = @"source";

It can be confirmed that the "source" is logged as expected when I see the event detail page in GA.

enter image description here

However, if I try to use the "source" dimension in Explore feature in GA, it doesn't show up in the dimension candidates even if I search "source" there. Is there any special step to use the "source" dimension in GA?

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.