问题
Is the following message when my app loads have any cause for concern. If I disabled FirebaseAutomaticScreenReportingEnabled
does that have any consequence? Not much info about this online.
Firebase automatic screen reporting is enabled. Call +[FIRAnalytics setScreenName:setScreenClass:] to set the screen name or override the default screen class name. To disable automatic screen reporting, set the flag FirebaseAutomaticScreenReportingEnabled to NO in the Info.plist
回答1:
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:
回答2:
Set a new key-value pair on info.plist FirebaseScreenReportingEnabled = NO
.
More information follow the below picture
回答3:
Knowing which screen the user is on, helps identify the areas in your app where users spend their time and how they interact with your app.
If you disable automatic screen reporting, the Firebase Analytics reports will not automatically show the screen the user is on anymore. You can still call the setScreenName:screenClass: method to report the screen that the user is on.
来源:https://stackoverflow.com/questions/41666124/firebase-automatic-screen-reporting-is-enabled-in-xcode-log