Hi,
I'm having a problem with an App I'm working on. Notifications used to work fine but ever since I updated the Xamarin Google Play and Firebase packages they stopped. I have followed the samples available numerous times and nothing fixes it. The problem seems to be that the MESSAGING_EVENT service is not working. I can get a Token fine and test messages are also sent fine. It is when they arrive that the App does not know what to do with them.
This is what I get on the Output right after sending the message:
02-04 22:56:31.382 D/FirebaseMessaging( 2461): Unknown intent action: com.google.firebase.MESSAGING_EVENT
I researched further and the generated Manifest actually has two different services for "com.google.firebase.MESSAGING_EVENT"!!!
This is supposed to be mine:
<\service android:name="md5d6784224fb59318896fbd2225d685b43.FirebaseNotificationService">
<\intent-filter>
<\action android:name="com.google.firebase.MESSAGING_EVENT" />
<\/intent-filter>
<\/service>
Further below there is also:
<\service android:name="com.google.firebase.messaging.FirebaseMessagingService" android:exported="true">
<\intent-filter android:priority="-500">
<\action android:name="com.google.firebase.MESSAGING_EVENT" />
<\/intent-filter>
<\/service>
Is this normal? I wonder if that is reason.
Has anyone here experienced something similar?
Any help is greatly appreciated.
PS - Sorry for the escape characters but I cannot post images here yet.