xcode 日志中启用了 Firebase 自动屏幕报告
Firebase automatic screen reporting is enabled in xcode log
当我的应用程序加载有任何问题时会出现以下消息。如果我禁用 FirebaseAutomaticScreenReportingEnabled
会有什么后果吗?网上关于这个的资料不多。
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
了解用户在哪个屏幕上,有助于确定用户在您的应用中花费时间的区域以及他们如何与您的应用交互。
如果您禁用自动屏幕报告,Firebase Analytics 报告将不再自动显示用户所在的屏幕。您仍然可以调用 setScreenName:screenClass: method 来报告用户所在的屏幕。
不用担心;是的,用于分析(加粗我的):
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.
在 info.plist FirebaseScreenReportingEnabled = NO
上设置新的键值对。
更多信息请看下图
尝试将登录“vc”设置为初始 viewcontroller。至少对我有帮助。
当我的应用程序加载有任何问题时会出现以下消息。如果我禁用 FirebaseAutomaticScreenReportingEnabled
会有什么后果吗?网上关于这个的资料不多。
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
了解用户在哪个屏幕上,有助于确定用户在您的应用中花费时间的区域以及他们如何与您的应用交互。
如果您禁用自动屏幕报告,Firebase Analytics 报告将不再自动显示用户所在的屏幕。您仍然可以调用 setScreenName:screenClass: method 来报告用户所在的屏幕。
不用担心;是的,用于分析(加粗我的):
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.
在 info.plist FirebaseScreenReportingEnabled = NO
上设置新的键值对。
更多信息请看下图
尝试将登录“vc”设置为初始 viewcontroller。至少对我有帮助。