-
Notifications
You must be signed in to change notification settings - Fork 712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can I remove CAMERA permission? #21
Comments
I found camera permission is added by image_picker. |
If you don’t need it you don’t 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’ll take in consideration. |
No. I don't give CAMERA permisiion in AndroidManifest.xml |
https://github.com/flutter/plugins/blob/master/packages/image_picker/android/src/main/AndroidManifest.xml |
That’s right, I forgot the |
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. |
Hum, I see. The privacy policies. This may be useful in the meantime. |
OK. it is a nice sample But if some one just need pick document or saved file. remove useless permission better. |
@kgamecarter |
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 |
Version Make sure you clean and change your pubspec to the latest version: Thank you all for your feedback. |
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.
The text was updated successfully, but these errors were encountered: