Android library to easily pick an image from gallery or camera app. The users can select their prefered gallery/camera app on a unique Intent. Initial gist:
I had a little bit of free time so i decided to test something regarding my last pull request and it appears to have an issue...
The issue was that if you would have an app without the CAMERA permission in the android manifest, the camera intent would not be shown by the imagepicker.
This pull request makes sure that it will only check for camera permission when the androidmanifest.xml of the app contains the CAMERA permission.
To reproduce the faulty behaviour, just start up the demo app in this repo and see that the camera icon is not showing up.
I had a little bit of free time so i decided to test something regarding my last pull request and it appears to have an issue...
The issue was that if you would have an app without the
CAMERA
permission in the android manifest, the camera intent would not be shown by the imagepicker. This pull request makes sure that it will only check for camera permission when theandroidmanifest.xml
of the app contains theCAMERA
permission.To reproduce the faulty behaviour, just start up the demo app in this repo and see that the camera icon is not showing up.
My apologies for the bug