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.
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.
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.