Skip to content

Releases: iNomNom/FilePicker

1.0.2

06 May 02:38
Compare
Choose a tag to compare

Release Notes - v0.1.2

This version provides a simple and easy-to-use way to pick files within your Android application.

✨ Features:

  • Unified Picker: Launch a Material Design bottom sheet allowing users to select files from:
    • Camera (for images)
    • Gallery (for images/videos)
    • Device Storage (Files/Documents)
  • Direct Launch: Option to directly launch the Camera, Gallery, or File browser.
  • Simple API: Interact with the library using the static-like FilePicker object (FilePicker.showSheet(...), FilePicker.launchCamera(...), etc.). No need to manage ActivityResultLauncher manually!
  • Configuration: Customize allowed MIME types, enable/disable sources (Camera, Gallery, Files), control single/multiple selection, set selection limits, and enable image compression using PickerConfig.
  • Typed Results: Receive results through a clear callback using the sealed PickerResult interface (Success, Error, Cancelled), providing detailed PickedFile objects (URI, name, size, type).
  • Permission Handling: Automatically handles necessary runtime permissions (like Camera).