Home > OS >  how to solve fcm notification response receive failure issue?
how to solve fcm notification response receive failure issue?

Time:06-05

I faced a problem using flutter. fcm notification test time console side successful but app side showing below image

   D/FLTFireMsgReceiver(31732): broadcast received for message
D/FA      (31732): Event not sent since app measurement is disabled
D/FA      (31732): Event not sent since app measurement is disabled

CodePudding user response:

This is not a problem in the integration of Firebase Messaging rather it is related to Firebase Analytics, if it is not integrated with your app, then you would see this line in the logs:

Event not sent since app measurement is disabled

You can ignore it, or just add the package firebase_analytics package to your app by the following command without any required integration steps:

flutter pub add firebase_analytics
  • Related