Nate_Android_Dev
Lurker
My app is sending an email with an attachment using an Intent:
A user is reporting that when performing this action, he gets the message "All apps associated with this action have been turned off, blocked, or not installed". I happen to have the same type of phone and tested with no problems, so it is specific to some kind of configuration on his device. He says he has three email apps installed (default, GMail, and something called Blue Mail) and all are configured and work properly. I have looked through everything I can find online about this error and can't find anything applicable to my situation. Anyone have ideas on what to try other than telling him to factory reset?
Code:
Intent emailIntent = new Intent(Intent.ACTION_SEND); Uri emailUri = new FileHelper().getUri(file, context);
emailIntent.putExtra(Intent.EXTRA_STREAM, emailUri);
emailIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
// set other stuff like to and from address
context.startActivity(Intent.createChooser(emailIntent, message.chooserMessage));
A user is reporting that when performing this action, he gets the message "All apps associated with this action have been turned off, blocked, or not installed". I happen to have the same type of phone and tested with no problems, so it is specific to some kind of configuration on his device. He says he has three email apps installed (default, GMail, and something called Blue Mail) and all are configured and work properly. I have looked through everything I can find online about this error and can't find anything applicable to my situation. Anyone have ideas on what to try other than telling him to factory reset?