If I don't need FileType.CAMERA.
Can I remove CAMERA permission?
If my app has CAMERA permission. I need give google play privacy policy url.
I found camera permission is added by image_picker.
I think remove image_picker for FileType.IMAGE and FileType.CAMERA better.
Separate it for difference requirement.
If you don鈥檛 need it you don鈥檛 have to provide those permissions as well. The image_picker is just re-used here in order to prevent two packages but I get your idea. I鈥檒l take in consideration.
No. I don't give CAMERA permisiion in AndroidManifest.xml
But still appear CAMERA permission in app.
Untill I remove image_picker in my file_picker fork.
https://github.com/flutter/plugins/blob/master/packages/image_picker/android/src/main/AndroidManifest.xml
image_picker will auto add permission.
That鈥檚 right, I forgot the grantUriPermissions is set to true on the image_picker.
I'll reopen so others may see this. I would like to have more feedback since I get the point, that it would be fine to have it separated in both plugins, but I can also understand that this is more reliable for some users since they have to only import one plugin and it will handle picking all file types.
Edit: @kgamecarter I don't get it. I've tried it right now in a clean installation (used the example app) and it only requires camera permission if you actually try to load a path from a camera, which is indeed expected, since you can't use the camera without the user giving permissions. Other than that, it won't trigger the camera permission. So, if you don't use picking from camera, you should be fine.
Just this

Google play asks me privacy policy

Hum, I see. The privacy policies. This may be useful in the meantime.
OK. it is a nice sample
https://docs.google.com/document/d/14xHZa1PqxpgntwhStx0dnaiPOV1uDAY0RzQyF5GkPpw/edit
But if some one just need pick document or saved file. remove useless permission better.
@kgamecarter
You can easily fork the repo and remove the image picker from it.
Yes, I am maintaining my fork now.
hi , I have this problem too, I want to remove the camera permission, plz help.
This is a tricky one because the plugin supports picking files from camera so it will always have to have that permission.
One option will be removing this feature entirely and let users use this alongside with image_picker if needed.
Version 1.3.0 was deployed on dart pub and fixes this, alongside with other requested features and bug fixes. See changelog.
Make sure you clean and change your pubspec to the latest version: file_picker: ^1.3.0
Thank you all for your feedback.
Most helpful comment
Version
1.3.0was deployed on dart pub and fixes this, alongside with other requested features and bug fixes. See changelog.Make sure you clean and change your pubspec to the latest version:
file_picker: ^1.3.0Thank you all for your feedback.