- 当前 Bug 的表现(可附上截图)
找不到附近的蓝牙设备
oppo r11s已经开启了蓝牙,定位,微信也获取了定位权限。仍然搜索不到蓝牙设备,该手机不用小程序是可以搜索到外部的蓝牙设备并且连接上的。
- 预期表现
可以搜索到附近的蓝牙
- 复现路径
- 提供一个最简复现 Demo
wx.openBluetoothAdapter({
success(res) {
console.log(res)
wx.startBluetoothDevicesDiscovery({
interval: ‘0’,
success: function (res) {
console.log(‘找到设备’, res)
wx.getBluetoothDevices({
success: function (res) {
console.log(‘getBluetoothDevices’, res);
},
fail: function (res) {
console.log(‘getBluetoothDevices 失败’, res)
}
})
},
fail: function (res) {
console.log(‘未找到设备’, res)
}
})
}
})