How do I create an activity/intent in the android manifest to fix the error below...
I am using https://github.com/MaginSoft/MFileChooser and I can see the picker and th
The error is telling you that the device has no applications installed that are able to handle that particular implicit intent. You need to check whether an application is available before attempting to launch the intent like this:
// Verify that there are applications registered to handle this intent
// resolveActivity returns null if none are registered
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}