Notification not coming on Status Bar on Android 12
Rishi2611 opened this issue ยท 1 comments
Rishi2611 commented
๐ 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
kunalprakash3891 commented
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>