File tree 3 files changed +11
-1
lines changed
permission_handler_android
android/src/main/java/com/baseflow/permissionhandler
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 12.0.12
2
+
3
+ * Fixes permission status returned from ` Permission.photos.request() ` or ` Permission.videos.request() ` when limited access selected
4
+
1
5
## 12.0.11
2
6
3
7
* Adds ` TargetApi ` annotation to ` getManifestNames ` method in ` PermissionUtils.java ` .
Original file line number Diff line number Diff line change @@ -260,6 +260,12 @@ public boolean onRequestPermissionsResult(
260
260
}
261
261
262
262
requestResults .put (permission , permissionStatus );
263
+ // [grantResults] can only contain PermissionConstants.PERMISSION_STATUS_GRANTED or PermissionConstants.PERMISSION_STATUS_DENIED status.
264
+ // But these permissions can have status PermissionConstants.PERMISSION_STATUS_LIMITED, so we need to recheck status
265
+ } else if (permission == PermissionConstants .PERMISSION_GROUP_PHOTOS || permission == PermissionConstants .PERMISSION_GROUP_VIDEOS ) {
266
+ requestResults .put (
267
+ permission ,
268
+ determinePermissionStatus (permission ));
263
269
} else if (!requestResults .containsKey (permission )) {
264
270
requestResults .put (
265
271
permission ,
Original file line number Diff line number Diff line change 1
1
name : permission_handler_android
2
2
description : Permission plugin for Flutter. This plugin provides the Android API to request and check permissions.
3
3
homepage : https://github.com/baseflow/flutter-permission-handler
4
- version : 12.0.11
4
+ version : 12.0.12
5
5
6
6
environment :
7
7
sdk : " >=2.15.0 <4.0.0"
You can’t perform that action at this time.
0 commit comments