When I am trying to invoke implicit intent with action "Intent.ACTION_GET_CONTENT"
, I am getting this error alert "No apps can perform this action."
Thanks in advance. Please see my code below.
Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select File"), SELECT_FILE);