Android storage access framework persistable permission not granted during asyntask
问题 I set the intent flags here: public void createAlbum(View view) { Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_OPEN_DOCUMENT); intent.addCategory(Intent.CATEGORY_OPENABLE); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); intent.addFlags(Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION); String intentChooserDialog = getResources().getString(R.string.pick_image_dialog); startActivityForResult(Intent.createChooser(intent, intentChooserDialog), PICK