17

With iOS 14, Apple has introduced new privacy features. When installing firebase through cocoapods, one of the options is to install Analytics without IDFA collection capability.

# pod ‘Firebase/AnalyticsWithoutAdIdSupport’

I would like to use that option but do not understand what the pitfalls or disadvantages of doing so would be down the line.

2
  • You have to request user's permission under iOS 14.5 or higher.
    – El Tomato
    Commented Nov 30, 2021 at 10:04
  • Thanks @ElTomato. To clarify it better, what are the disadvantages that I would have on firebase? are there firebase products that I will not be able to use if I decide to go with the AnalyticsWithoutAdIdSupport pod.
    – NSCoder
    Commented Nov 30, 2021 at 11:13

1 Answer 1

15

This feature helps attribute app installs to certain adds through the apple identifier they call IDFA (identifier for advertisers). It's immensely useful to measure effectiveness of ads not only for downloads and installs, but also for latter internal conversions in the app.

But it won't be used if a user doesn't opt in to be tracked starting from iOS 14. So the value of it is somewhat diminished, making the analysts working with an effectively bias-sampled data that won't extrapolate normally.

Anyhow, if you need to attribute the traffic you've purchased to the source/campaign you've bought it from, you'll need IDFA. Otherwise, you're perfectly fine using AnalyticsWithoutAdIdSupport.

2
  • So this is only relevant for apps that show ads, right? I'm ok then with AnalyticsWithoutAdIdSupport in case my app does not show advertisements. Commented Dec 4, 2021 at 21:32
  • 4
    No, this is only relevant for apps that pay to third parties to get more downloads.
    – BNazaruk
    Commented Dec 4, 2021 at 23:14

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.