CrossGeeks/FirebasePushNotificationPlugin

Notification not coming on Status Bar on Android 12

Rishi2611 opened this issue ยท 1 comments

๐Ÿ› Bug Report

I am working on Firebase Push Notification in Xamarin and have used "CrossGeeks FirebasePushNotificationPlugin" Nuget Package of Xamarin , everything was working fine When Application is targeted on Android 11, When I have targeted App on Andoid 12 and running App on Android 12 Device PushNotification is not visible on Status Bar, but OnRecived Method is called.

Expected behavior

Reproduction steps

Configuration

Version: 1.x

Platform:

  • ๐Ÿ“ฑ iOS
  • ๐Ÿค– Android
  • ๐Ÿ WPF
  • ๐ŸŒŽ UWP
  • ๐ŸŽ MacOS
  • ๐Ÿ“บ tvOS
  • ๐Ÿ’ Xamarin.Forms

Try adding the following to your AndroidManifest.xml file under the Application node and see if helps;

<service android:name="crc6494e14b9856016c30.PNFirebaseMessagingService" android:exported="false">
	<intent-filter>
		<action android:name="com.google.firebase.MESSAGING_EVENT" />
	</intent-filter>
</service>