KFilePicker

File Picker for KMP project. Works for Android/JVM/Web.
Setup
Add Jitpack
maven { url 'https:
Add the dependency
implementation("com.github.Tlaster.KFilePicker:KFilePicker:${latest_version}")
Android
In your Main Activity, place this in onCreate
FilePicker.init(activityResultRegistry, this, contentResolver)
JVM
Place this under your Window composable
FilePicker.init(window)
Web
There is no need to setup for web!
Usage
val files = FilePicker.pickFiles(
allowedExtensions = listOf(".jpg", ".png"),
allowMultiple = true,
)
License