React Native-在锁定屏幕上启用通知

时间:2019-03-08 19:14:40

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

即使屏幕被锁定,我也需要在手机顶部显示通知,在Android的react-native中。我正在使用“ react-native-firebase”软件包。

下面是我尝试过的代码:

const channel = new firebase.notifications.Android.Channel(
  'goofy',  
  'goofy the goofy',
  firebase.notifications.Android.Importance.Max
)   
.setDescription('ideally should work')
.enableLights(true)
.enableVibration(true)
.setLockScreenVisibility(firebase.notifications.Android.Visibility.Public);

仍然在设置中得到以下配置:

enter image description here

我想念什么吗?理想情况下,应该启用这些按钮。

0 个答案:

没有答案