Firebase automatic screen reporting is enabled in xcode log

与世无争的帅哥 提交于 2019-12-08 15:32:04

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!