如何请求附近的设备android 12在React原生?

smdncfj3  于 2022-11-17  发布在  React
关注(0)|答案(1)|浏览(147)

如何在Android 12React本地检查许可附近的设备?
就像这张图片

juzqafwq

juzqafwq1#

我必须从react-native-permissions使用请求多个权限
示例代码

requestMultiple(bluetoothPermission).then((result) => {
            if (result[bluetoothPermissionResult] === RESULTS.GRANTED || result[bluetoothPermissionResult] === RESULTS.UNAVAILABLE) {
                //so something
            } else if (result[bluetoothPermissionResult] === RESULTS.BLOCKED || result[bluetoothPermissionResult] === RESULTS.DENIED) {
//do something
            }
        }).catch((error) => {
        })

相关问题