首页 > 解决方案 > React-native:允许在 Android 中使用音频的权限

问题描述

如何在不进入手机设置的情况下授予允许在 Android 应用中使用音频的权限?当收到通知但没有通知声音时,我正在使用带有 firebase 云消息的推送通知。如果我转到手机设置并打开应用程序通知,然后会收到音频通知

在此处输入图像描述

标签: androidreact-nativepush-notificationpermissionsandroid-permissions

解决方案


尝试使用react-native-push-notification npm 包创建自定义通知通道。

根据您的要求(如声音、通知重要性等)创建一个 android 通知通道。

例如:

PushNotification.createChannel(
    {
      channelId: "channel-id", // (required)
      channelName: "My channel", // (required)
      channelDescription: "A channel to categorise your notifications", // (optional) default: undefined.
      playSound: false, // (optional) default: true
      soundName: "default", // (optional) See `soundName` parameter of `localNotification` function
      importance: 4, // (optional) default: 4. Int value of the Android notification importance
      vibrate: true, // (optional) default: true. Creates the default vibration patten if true.
    },
    (created) => console.log(`createChannel returned '${created}'`) // (optional) callback returns whether the channel was created, false means it already existed.
  );

并在 firebase.json 中添加通知通道 ID 名称以接收来自 firebase 云消息传递的通知。

喜欢:

// <projectRoot>/firebase.json
{
  "react-native": {
    "messaging_android_notification_channel_id": "channel-id"
  }
}

查看官方文档了解更多信息。

https://github.com/zo0r/react-native-push-notification


推荐阅读