Can I add both image and pdf picker
sudipsadhukhan0295 opened this issue · 0 comments
sudipsadhukhan0295 commented
Hi I want to pick image and pdf both type of files. But in image tab it shows no files found. Here is my code:
String[] files = {"pdf"};
String[] images = {"jpg"};
FilePickerBuilder.getInstance()
.setMaxCount(5)
.enableSelectAll(false)
.enableDocSupport(false)
.enableImagePicker(true)
.addFileSupport("Image",images)
.addFileSupport("PDF",files)
.pickFile(this);