How to pass the data in intent to show only .arr(firmware) file from file manager in android
val intent = Intent()
intent.type = "*/*"
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, false)
intent.action = Intent.ACTION_GET_CONTENT
startActivityForResult(Intent.createChooser(intent, "Select Firmware File"),111)