My push notification works with sound, but I can't see the large icon for both background and foreground remote notifications.

Also I get this icon when in the foreground.
.
AndroidManifest.xml
<!-- PUSH Notification -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_notification"
/>
<meta-data
android:name="com.dieam.reactnativepushnotification.notification_icon"
android:resource="@drawable/ic_notification" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="rn-push-notification-channel-id-4-default-300" tools:replace="android:value" />
<!-- Change the value to true to enable pop-up for in foreground (remote-only, for local use ignoreInForeground) -->
<meta-data android:name="com.dieam.reactnativepushnotification.notification_foreground"
android:value="true"/>
<!-- Change the value to false if you don't want the creation of the default channel -->
<meta-data android:name="com.dieam.reactnativepushnotification.channel_create_default"
android:value="true"/>
<!-- Change the resource name to your App's accent color - or any other color you want -->
<meta-data android:name="com.dieam.reactnativepushnotification.notification_color"
android:resource="@color/white"/>
<receiver android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationActions" />
<receiver android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationPublisher" />
<receiver android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationBootEventReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationListenerService"
android:exported="false" >
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<!-- PUSH Notification -->
Fixed the foregroud issue. Any idea how to set largeicons for remote notifications?
Not getting large icons when app is in background state.
Fixed the foregroud issue. Any idea how to set largeicons for remote notifications?
how did you solve foreground issue? I am not getting the icon either.
@hadimoha how'd you fix the foreground issue?
share what's in your manifest and make sure youre following this https://github.com/zo0r/react-native-push-notification/issues/730#issuecomment-389545259
Im having the same problem, icon is not showing in Android when the app is in background and quit. Any solution?
@danielfx90 how did you solve the foreground issue? I'm able to see the icon when the remote notification was received and the app was killed or in the background, but the icon does not show when the app is in the foreground (instead I see a black square).
I already verified that my config was similar to what's described in https://github.com/zo0r/react-native-push-notification/issues/730#issuecomment-389545259
Most helpful comment
Im having the same problem, icon is not showing in Android when the app is in background and quit. Any solution?