通过在React Native中通过firebase创建的通知,我在我的android应用中拥有了此代码。
我想显示带有图像的通知,但我得到标题,文本和空白(无图像)。
const getImageNotificationUrl = this.state.notificationImage; alert("esto es imagen que enviare: " + getImageNotificationUrl); const notification = new firebase.notifications.Notification().setNotificationId('notificationId: ' + data.id).setTitle(data.title).setBody(data.body); notification.android.setChannelId('samsungpluschannel').android.setSmallIcon('ic_notif').android.setBigPicture(getImageNotificationUrl).android.setAutoCancel(true).android.setDefaults(firebase.notifications.Android.Defaults.All); firebase.notifications().displayNotification(notification);
在我的package.json中,我有
"react-native-firebase": "4.3.0"
- 带有img的屏幕截图...
this is a link with my screenshot of my expanded notification