1
votes

Is it possible to exclude iOS devices from appearing in Firebase analytics?

I don't want mine or my team's usage to appear in them.

1
In code you could do it like this: firebase.google.com/support/guides/…. - Frank van Puffelen
@FrankvanPuffelen Would be nice to have a permanent feature where you can add all of your teams devices. Every company's data is slightly skewed because of this and it is particularly worse for startups (smaller user base). I'm surprised this isn't a feature. - Edward
Sounds valid, but for now the above is all I could fine. I recommend you file a feature request. - Frank van Puffelen
@FrankvanPuffelen thanks frank. I have filed a feature request. Would be amazing to have this. - Edward

1 Answers

1
votes

You can disable analytics data collection in your AppDelegate.

AnalyticsConfiguration.shared().setAnalyticsCollectionEnabled(false)

You can also enable collection at any point in the by calling the method again. IF you want to permanently disable data collection just set the FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED flag in your Info.plist to YES.