安卓机型蓝牙连接不上,ios可以秒连
- 当前 Bug 的表现(可附上截图) [图片] 安卓机蓝牙连接一直是10006错误 - 预期表现 成功连接 - 复现路径 - 提供一个最简复现 Demo // 连接低功耗蓝牙设备 BLEConnection(deviceId){ let that = this; loading('连接中'); console.log('连接中...'); console.log(deviceId); // console.log(new_deviceId) wx.createBLEConnection({ deviceId: deviceId, timeout: 60000000, success(res){ console.log('连接成功'); console.log(res); // connectingDeviceId = deviceId; that.setData({ connected: true, connectingDeviceId: deviceId }); that.getServices(deviceId); hide_Loading(); toast('连接成功'); }, fail(res){ console.log('连接失败'); console.log(res); that.setData({ connected:false, }); hide_Loading(); }, }); },