saravanarajan / acra

Automatically exported from code.google.com/p/acra
0 stars 0 forks source link

EmailIntentSender shows list of too many email applications #142

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The EmailIntentSender does not specify the correct type for the ACTION_SEND 
Intent. This results in a list with all applications that support ACTION_SEND 
instead of only all available email applications.

Could be fixed by replacing
> emailIntent.setType("text/plain");
with
> emailIntent.setType("message/rfc822");

Original issue reported on code.google.com by sven.ob...@gmail.com on 18 Sep 2012 at 12:25