You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
Describe the bug
I'm creating a file with .abc extension the file picker only return one file with the .abc, knowing that i have more then 8 file with .abc in Documents folder.
To Reproduce
File folder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS);
Intent intent = new Intent(MyActivity.this, FilePickerActivity.class);
intent.putExtra(FilePickerActivity.CONFIGS, new Configurations.Builder()
.setCheckPermission(true)
.setShowFiles(true)
.setShowAudios(false)
.setShowImages(false)
.setShowAudios(false)
.setMaxSelection(1)
.setSuffixes("abc")
.setRootPath(folder.getAbsolutePath())
.setSkipZeroSizeFiles(true)
.build());
Expected behavior
I expect to see all my .abc files
Android info (please complete the following information):
Device Samsung
android 11
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
I'm creating a file with .abc extension the file picker only return one file with the .abc, knowing that i have more then 8 file with .abc in Documents folder.
To Reproduce
File folder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS);
Expected behavior
I expect to see all my .abc files
Android info (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: