Disabling Firebase Automatic Screen Reporting

Firebase automatic screen reporting is enabled in xcode log

No concern; yes, is used for analytics (bolding mine):

Sets the current screen name, which specifies the current visual context in your app. This helps identify the areas in your app where users spend their time and how they interact with your app.

FIRAnalytics +setScreenName:screenClass:

Analytics screen reporting is disabled. UIViewController transitions will not be logged

This FIREBASE_ANALYTICS_COLLECTION_ENABLED is the key you need to add it in you Info.plist Make sure you add it in Your Info.Plist Not the one with the name GoogleService-Info.plist

<key>FIREBASE_ANALYTICS_COLLECTION_ENABLED</key>
<true/>

Also you can use this method to override the value you set in your plist

Analytics.setAnalyticsCollectionEnabled(true)

For more information click the link below : -

https://firebase.google.com/docs/analytics/configure-data-collection



Related Topics



Leave a reply



Submit