I have an app for android built with Reactjs + Capacitor. The implementation follows the installation guide on the Firebase documentation and I am not using a custom notification layout. By using the following code in the manifest I am able to receive notifications with icons properly on any device that doesn't use Android 12
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_launcher_foreground" />
But on Android 12 the icon is not visible. I tried several different ways to include the icon, with either a direct png or xml resource.
What exactly am I missing for Android 12 devices specifically? Thanks!