- 开发版本一直调用不起蓝牙授权,都没弹窗授权,设置中也没有手动设置,怎么办?
wx.getSetting({ success: (res) => { if (!res.authSetting['scope.bluetooth']) { wx.authorize({ scope: 'scope.bluetooth', success: (res) => { // 用户已授权,可以调用蓝牙API this.openBluetoothAdapter(); }, fail: (res) => { // 用户拒绝授权蓝牙权限 if(res.confirm){ uni.openSetting({ success: (res) => { if(res.authSetting['scope.bluetooth']){ console.log("OK"); }else{ console.log("no"); } } }) } } }); } else { this.openBluetoothAdapter(); } } }); 第二天早上他又能调用起来,但改代码提交版本后就再也调不起授权了。
09-26 - 开发者访问你的蓝牙,用于XXX,用户隐私保护指引该如何写?
增加使用蓝牙项,这个用户隐私保护指引该如何写?申请了两天审核都不通过,都是说用户信息授权描述不明确、不清晰,本次审核不通过,建议修改后重新提交。 这个还需要怎么填啊,就是要连接设备进行数据传输 [图片] [图片]
09-25 - wx.onLocationChange什么理由才能申请通过?
昨天申请了十来次,都没通过。昨晚最晚八点提交的申请现在还没审核,急着上线啊!!!!!!!
2022-06-28