Hi,
How do I apply "pdf" filter for Android using below FilePicker plugin.
"https://github.com/jfversluis/FilePicker-Plugin-for-Xamarin-and-Windows"
I have used following filter for Android but only the "png" and "jpeg" file gets selected but not Pdf. Also , the issue I am facing is that, using below filter I am also able to select "*.mp4" file from Android gallery. But I should not be able to select ".mp4" files as I haven't mentioned this extension in the allowed types. Any help is appreciated.
Android:
string[] allowedTypes = new string[] { "image/png", "image/jpeg", "pdf/*" };