mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
include crypto providers with crash reprot email
This commit is contained in:
@@ -246,6 +246,18 @@ namespace Bit.Android.Services
|
|||||||
|
|
||||||
private void SendEmail(string text)
|
private void SendEmail(string text)
|
||||||
{
|
{
|
||||||
|
text += "\n\n";
|
||||||
|
var providers = Security.GetProviders();
|
||||||
|
foreach(var provider in providers)
|
||||||
|
{
|
||||||
|
text += ("provider: " + provider.Name + "\n");
|
||||||
|
var services = provider.Services;
|
||||||
|
foreach(var service in provider.Services)
|
||||||
|
{
|
||||||
|
text += ("- algorithm: " + service.Algorithm + "\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var emailIntent = new Intent(Intent.ActionSend);
|
var emailIntent = new Intent(Intent.ActionSend);
|
||||||
|
|
||||||
emailIntent.SetType("plain/text");
|
emailIntent.SetType("plain/text");
|
||||||
|
|||||||
Reference in New Issue
Block a user