Reverse _permissionStatus return values in example app

This commit is contained in:
Foti Dim
2025-02-15 16:29:41 +01:00
parent 6443915fc3
commit 601351889d
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1,6 +1,7 @@
## 0.16.0
* Bump bluez to 0.8.3
* Improve readme
* Reverse _permissionStatus return values in example app
## 0.15.0
* `getSystemDevices(withServices:)` now sets several generic services by default as filter
+1 -1
View File
@@ -82,7 +82,7 @@ class PermissionHandler {
? (await Permission.locationWhenInUse.request()).isGranted
: true;
}
return [locationPermissionGranted, blePermissionGranted];
return [blePermissionGranted, locationPermissionGranted];
}
static bool get isMobilePlatform =>