am bale to choose only single pdf not able to select mutiple pdf
enter the code
val intent = Intent()
intent.type = "application/pdf"
intent.action = Intent.ACTION_GET_CONTENT
intent.flags = FLAG_GRANT_READ_URI_PERMISSION
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true)
startActivityForResult(Intent.createChooser(intent, "Select PDF"),pdf)