React Native Android App

时间:2018-01-03 18:07:04

标签: android firebase react-native notifications react-native-firebase

我的本​​地通知未显示在Android模拟器中。我使用https://rnfirebase.io/的react-native-firebase。我能够通过firebase控制台发送本地通知,并且它们可以正常显示。但是当我使用代码时

firebase.messaging().createLocalNotification({
            body: "body",
            icon: "ic_launcher",
            show_in_foreground: "true",
            title: "title",
            local_notification: "true",
            priority: "high",
            click_action:"ACTION"
        });

......没有显示

如果我使用onMessage()功能,我可以看到我收到通知,但我没有在Android通知托盘中看到通知。有没有人有通知和react-native-firebase转换酶库的经验?

1 个答案:

答案 0 :(得分:1)

icon属性不能为空,并且该值必须存在于存储资源的项目中。 " true"不应该有双引号。通知现在正在显示。