You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix android bluetooth permission request above api version 30
The BLUETOOTH permission was removed in api version 30 in favor of
BLUETOOTH_SCAN, BLUETOOTH_ADVERTISE and BLUETOOTH_CONNECT.
This means that manifests targetting api version above 30 will not have
this permission set. For these versions the manifest should be checked
for the new permissions.
This change ensures that the documented behavior of the bluetooth
permission always returning `true` is true.
Fixes issues Baseflow#884
* Check for BLUETOOTH_SCAN, BLUETOOTH_ADVERTISE or BLUETOOTH_CONNECT instead of BLUETOOTH permissions on api versions above 30.
4
+
1
5
## 10.2.0
2
6
3
-
* Added support for the new Android 13 permissions: SCHEDULE_EXACT_ALARM, READ_MEDIA_IMAGES, READ_MEDIA_VIDEO and READ_MEDIA_AUDIO
7
+
- Added support for the new Android 13 permissions: SCHEDULE_EXACT_ALARM, READ_MEDIA_IMAGES, READ_MEDIA_VIDEO and READ_MEDIA_AUDIO
4
8
5
9
## 10.1.0
6
10
7
-
* Added support for the new Android 13 permission: NEARBY_WIFI_DEVICES.
11
+
- Added support for the new Android 13 permission: NEARBY_WIFI_DEVICES.
8
12
9
13
## 10.0.0
10
14
11
-
*__BREAKING CHANGE__: Updated Android `compileSdkVersion` to `33` to handle the new `POST_NOTIFICATIONS` permission.
12
-
> When updating to version 10.0.0 make sure to update the `android/app/build.gradle` file and set the `compileSdkVersion` to `33`.
15
+
-**BREAKING CHANGE**: Updated Android `compileSdkVersion` to `33` to handle the new `POST_NOTIFICATIONS` permission.
16
+
> When updating to version 10.0.0 make sure to update the `android/app/build.gradle` file and set the `compileSdkVersion` to `33`.
13
17
14
18
## 9.0.2+1
15
19
16
-
* Undoes PR [#765](https://github.com/baseflow/flutter-permission-handler/pull/765) which by mistake requests write_external_storage permission based on the target SDK instead of the actual SDK of the Android device.
20
+
- Undoes PR [#765](https://github.com/baseflow/flutter-permission-handler/pull/765) which by mistake requests write_external_storage permission based on the target SDK instead of the actual SDK of the Android device.
17
21
18
22
## 9.0.2
19
23
20
-
* Moves Android implementation into its own package.
24
+
- Moves Android implementation into its own package.
0 commit comments