How to check if the Manifest.permission.MANAGE_EXTERNAL_STORAGE permission has been granted? I have tried the following but it does not work:
ContextCompat.checkSelfPermission(context,
"Manifest.permission.MANAGE_EXTERNAL_STORAGE")
== PackageManager.PERMISSION_GRANTED
The above code always returns false, despite the permission has been granted. Any help appreciated, thanks!