All Versions
13
Latest Version
Avg Release Cycle
48 days
Latest Release
1794 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.4.0-beta01 Changes
May 27, 2020- โ Remove dir paging for android 10 and above.
๐ Activity Result API support
final ActivityResultLauncher<Configurations> pickImage = registerForActivityResult(new PickFile(), new ActivityResultCallback<List<MediaFile>>() { @Overridepublic void onActivityResult(List<MediaFile> result) { if (result != null) setMediaFiles(result); elseToast.makeText(MainActivity.this, "Image not selected", Toast.LENGTH_SHORT).show(); } }); pickImage.launch(new Configurations.Builder() ... .build());
-
v1.4.0-alpha02 Changes
May 19, 2020๐ Paging support for files and directory listing
- Page size and prefetch distance can be customized using follow static variables:
Configurations.PAGE_SIZE = 120; //Default valueConfigurations.PREFETCH_DISTANCE = 40; //Default value
-
v1.4.0-alpha01 Changes
May 18, 2020- โ Add selecting files through directories support
- ๐ Improved performance
- โ Add support for more media
-
v1.3.2 Changes
December 18, 2019- ๐ Fixes file name not displaying in some devices. #45
-
v1.3.1 Changes
November 28, 2019๐ Fixes #45
-
v1.3.0 Changes
November 19, 2019- โ Adds support for Android 10 #40.
Behaviour changes:
- ๐
MediaFile.getPath()
is deprecated in favour ofMediaFile.getUri()
- ๐ป Selecting files works only when
setShowFiles(true)
is set which uses Document UI. Hence only following methods works:- setSingleChoiceMode(boolean)
- setSuffixes(String...)
- For files only name, mime, size fields are loaded.
-
v1.2.3 Changes
October 06, 2019 -
v1.2.2 Changes
April 04, 2019- ๐ Fix files not loading when root path is set
-
v1.2.1 Changes
February 27, 2019- ๐ Fixes files not showing #21
- Made
android.permission.CAMERA
as optional permission.
-
v1.2.0 Changes
February 24, 2019- โก๏ธ Update Glide to 4.9.0
- โฌ๏ธ Upgrade to androidx
- Hide files