Firebaseの
pod 'Firebase/Database'
pod ‘Firebase/Core’
pod ‘Firebase/Firestore’
pod ‘Firebase/Auth’
pod 'Firebase/Analytics'
をpod installして実機でシュミレートしたところ、以下のエラーが出ました。
2020-04-26 15:56:21.049850+0900 ShrineApp2[3399:1555012] - <AppMeasurement>[I-ACS031025] Analytics screen reporting is enabled. Call +[FIRAnalytics setScreenName:setScreenClass:] to set the screen name or override the default screen class name. To disable screen reporting, set the flag FirebaseScreenReportingEnabled to NO (boolean) in the Info.plist
2020-04-26 15:56:21.193017+0900 ShrineApp2[3399:1555009] - <AppMeasurement>[I-ACS800023] No pending snapshot to activate. SDK name: app_measurement`
info.plistでFirebaseAutomaticScreenReportingEnabledをNOに設定してビルドしてみたところ、
2020-04-26 16:14:11.559955+0900 ShrineApp2[3416:1562496] - <AppMeasurement>[I-ACS036001] Analytics screen reporting is disabled. UIViewController transitions will not be logged.
と出ました。
また、Analyticsをpodからpod cleanしましたが、最初のエラーがまた表示されました。
調べているうちに分かったこと
この表示はエラーではなく報告でした。とすれば画面に表示されないのは別な要因だと思い、is initial View Controller が指定されているか確認しましたが、やはり、画面に表示されないままでした。
解決法をご教示いただければ幸いです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/27 01:41