FilePicker
FilePicker copied to clipboard
Not Showing all the PDF
Its not showing all the PDF file when giving suffix to "pdf" . How to solve this to get all the pdf file in internal storage
Can you show the Configurations used. Also try out the new release to see if it fixes the issue.
implementation 'com.github.jaiselrahman:FilePicker:1.4.0-alpha01'
this is my code I have used to pick pdf file
`Intent intent = new Intent(this, FilePickerActivity.class);
intent.putExtra(FilePickerActivity.CONFIGS, new Configurations.Builder()
.setCheckPermission(true)
.setSuffixes("pdf")
.enableImageCapture(false)
.setShowFiles(true)
.setShowImages(false)
.setShowVideos(false)
.setSelectedMediaFiles(mediaFiles)
.setSkipZeroSizeFiles(true)
.setMaxSelection(1)
.build());
startActivityForResult(intent,FILE_REQUEST_CODE);`