Oleksandr Brazhenko
Oleksandr Brazhenko
Try to add `android:requestLegacyExternalStorage="true"` To you manifest under application tag.
Did you use androidx.Fragment? You can create an extension function. Something like this: ``` private fun ExFilePicker.startFromFragment(fragment: Fragment, requestCode: Int) { val intent = Intent(activity, ExFilePickerActivity::class.java) intent.putExtra(ExFilePickerActivity.EXTRA_CAN_CHOOSE_ONLY_ONE_ITEM, true) intent.putExtra(ExFilePickerActivity.EXTRA_SHOW_ONLY_EXTENSIONS, arrayOf("jks",...
Have the same problem. Does anyone know how to fix this?