有人知道如何通过特殊应用访问权限来访问通知权限吗?

时间:2020-11-05 20:14:54

标签: react-native

我正在构建一个android应用程序,并且我想通过特殊应用程序访问权限来访问通知权限。我没有任何办法去做。有谁知道这件事吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

回答here 您不需要推送通知权限

实际上,推送通知权限属于普通类别 许可,例如Internet许可,不在危险类别中 许可。

您不必请求推送通知权限。

联系人/位置是危险的权限,因为您是 访问用户数据。因此,总是需要让用户允许 它。

https://developer.android.com/guide/topics/security/permissions.html

如果要请求并检查通知状态,那么我建议您尝试使用此https://github.com/zoontek/react-native-permissions#checknotifications

import {requestNotifications} from 'react-native-permissions';

requestNotifications(['alert', 'sound']).then(({status, settings}) => {
  // …
});