File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
permission_handler_platform_interface Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 4.2.2
2
+ * Adds limited access permission for Android 14+.
3
+
1
4
## 4.2.1
2
5
3
6
* Resolves an error that occurred when calling the ` shouldShowRequestPermissionRationale ` on iOS.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ enum PermissionStatus {
19
19
/// The user has authorized this application for limited access. So far this
20
20
/// is only relevant for the Photo Library picker.
21
21
///
22
- /// *Only supported on iOS (iOS14+). *
22
+ /// *Only supported on iOS (iOS14+) and Android (Android 14+) *
23
23
limited,
24
24
25
25
/// Permission to the requested feature is permanently denied, the permission
Original file line number Diff line number Diff line change @@ -411,7 +411,7 @@ class Permission {
411
411
'calendarWriteOnly' ,
412
412
'calendarFullAccess' ,
413
413
'assistant' ,
414
- 'backgroundRefresh'
414
+ 'backgroundRefresh' ,
415
415
];
416
416
417
417
@override
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: A common platform interface for the permission_handler plugin.
3
3
homepage : https://github.com/baseflow/flutter-permission-handler/tree/master/permission_handler_platform_interface
4
4
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
5
5
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
6
- version : 4.2.1
6
+ version : 4.2.2
7
7
8
8
dependencies :
9
9
flutter :
You can’t perform that action at this time.
0 commit comments