onReady中调用 openBluetoothAdapter,体验版可以主动申请蓝牙权限并搜索设备。正式版不会申请权限,也不能搜索设备。
目前已确认:手机已经打开蓝牙定位开关,小程序后台隐私正常已经添加蓝牙权限说明。同一台手机,体验版正常,正式版不行。
代码片段:
openBluetoothAdapter() {
wx.openBluetoothAdapter({
success: (res) => {
console.log('openBluetoothAdapter success', res)
this.startBluetoothDevicesDiscovery()
},
fail: (res) => {
if (res.errCode === 10001) {
wx.onBluetoothAdapterStateChange(function (res) {
console.log('onBluetoothAdapterStateChange', res)
if (res.available) {
this.startBluetoothDevicesDiscovery()
}
})
}
}
})
},

我也是这样正式版上线14号当天是能用的,15号就失效了,体验版完全没问题