flutter_photo_manager
flutter_photo_manager copied to clipboard
Feat: support android 13 permission
The main code part is completed.
The question now is whether the method containing requestType
needs to be verified according to the manifest.
@AlexV525
The question now is whether the method containing
requestType
needs to be verified according to the manifest.
IMO it must be. Requests with specific types can only be made when corresponding permissions are granted. Such as videos can be fetched when REQUEST_MEDIA_VIDEO
is granted.
https://github.com/fluttercandies/flutter_photo_manager/blob/af6e6e601035fbf1ab119252f2b9ea64b90b0488/example/android/app/src/main/AndroidManifest.xml#L11-L13
Just remove or add permission item for check the PR code.