All Versions
13
Latest Version
Avg Release Cycle
48 days
Latest Release
1794 days ago

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 of MediaFile.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
    • ๐Ÿ›  Fixed singleChoiceMode to work with Image/Video capture #39
    • ๐Ÿ›  Fixed DividerBehavior #34
    • ๐Ÿ›  Fixed Permission issues #28 #30
  • 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
    • Madeandroid.permission.CAMERA as optional permission.
  • v1.2.0 Changes

    February 24, 2019
    • โšก๏ธ Update Glide to 4.9.0
    • โฌ†๏ธ Upgrade to androidx
    • Hide files