FIRInstanceID/WARNING STOP!! Will reset deviceID from memory [Xcode : Console Log]

后端 未结 2 1627
不知归路
不知归路 2020-12-09 01:35

After updating to XCode 8 GM(Swift 3)

Firebase started logging these error\'s in the Console:-

FIRInstanceID/WARNING STOP!! Will

2条回答
  •  爱一瞬间的悲伤
    2020-12-09 02:13

    You could try set FirebaseAutomaticScreenReportingEnabled to NO in your Info.plist file. It doesn't resolve problem, but makes Errors happening little less frequently, which makes reading console less painfully.

    With FirebaseAutomaticScreenReportingEnabled == YES (which is default), error happens on every screen change. Of course setting flag to NO will disable screen reporting, so set it only of you are not using this functionality.

    Errors happens only on simulator, so you may want to set this flag only for developing time.

提交回复
热议问题