What is the best way to make a file chooser (It should be able to choose any type of file) and file up loader in android?
min target version - 14 and target version 25
What is the best way to make a file chooser (It should be able to choose any type of file) and file up loader in android?
min target version - 14 and target version 25
All is build in in Android already.
Just start an intent with Intent.ACTION_GET_CONTENT to select any file on the device.
On newer systems you also can use ACTION_OPEN_DOCUMENT.
Hello for simple file selection you can use android default selection process. FileSelection
and the fastest for file uploading you can use retrofit fastest File uploading