我尝试使用 expokit 构建一个 BLE 应用程序。这部分代码给我抛出了这个错误:Error: Tried to use permissions API but the host Activity doesn't implement PermissionAwareActivity.
我应该如何解决这个问题?
我已经在安卓设备上测试过它,无法在iOS上测试。
PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.ACCESS_COARSE_LOCATION).then((result) => {
if (result) {
console.log("User accept");
} else {
console.log("User refuse");
}
});
我在这里找到了一个解决方案,但是如果有人在不接触本机代码的情况下找到解决方案,那可能会更好。