Closed xuhcc closed 5 years ago
Hi @xuhcc Can you suggest other types that you would expect to get picked by image picker that are not image or video?
I'm using it for selecting text files (text/plain).
We are trying to have as much similarity between android and iOS as possible and as we are using QBImagePicker on iOS which doesn't support text files having that option only on android would bring a difference between the two. What's more, the plugin's name (imagepicker) does not imply having support for all possible file types and that's why we'd prefer to keep the option "any" only in the images/videos context. Have you tried nativescript-mediafilepicker, it seems to be similar and supports different types of files and not only images on both platform?
Yes, I tried every plugin available, and none of them suited my needs, so I decided to add support for all media types to nativescript-imagepicker. I don't remember exactly what was wrong with nativescript-mediafilepicker, but probably it was the UI.
As an alternative approach, we can introduce a new option like allowArbitraryFileSelection
which will be available only on Android, and leave current behaviour as it is, limiting user to images and videos by default.
I can also move all logic related to EXTRA_MIME_TYPES
to a separate method on ImagePicker
class to allow easy overriding in subclasses.
Hi @xuhcc As stated earlier, we prefer to keep the plugin with only image picking capabilities especially given that the iOS library does not support other file types. You are free to try re-evaluate other plugins like the above-mentioned nativescript-mediafilepicker or even fork the nativescript-imagepicker plugin and add changes as you see fit. We will gladly welcome any PRs related to adding new image related capabilities and bug fixes.
@tgpetrov
I use nativescript-imagepicker plugin in an open-source project, so forking is an option of last resort for me because I'm trying to keep maintenance costs at a minimum. Hopefully we can agree on this change: #304
PR Checklist
What is the current behavior?
On Android, even when media type is set to
ImagePickerMediaType.Any
, it is not possible to select any file except image or video, everything else is greyed out.What is the new behavior?
You can select any file.
Partly reverts changes made in #290 and #291.