not sure why whenever i call the default file manager via intent, there is a “Package Installer” in the list, selecting it would popup and error “There is a problem parsing the package”.
screenshot:

im using this code btw
intent = new Intent();
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setData(Uri.parse("file://" + mRecorder.getRecordDir()));
startActivity(intent);
You have no action on your
Intent. If you are going to use implicitIntents, please provide an action.First, there is no “default file manager” in Android, as Mr. Stratton points out in his comment.
Second, I have no idea why you think that
Intentwould bring up a “default file manager” in any case.