mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
do not implement UnhandledExceptionRaiser
This commit is contained in:
parent
67aa583709
commit
72b18eadf3
2 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,7 @@ namespace Bit.Android
|
||||||
public MainApplication(IntPtr handle, JniHandleOwnership transer)
|
public MainApplication(IntPtr handle, JniHandleOwnership transer)
|
||||||
: base(handle, transer)
|
: base(handle, transer)
|
||||||
{
|
{
|
||||||
AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
|
//AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
|
||||||
|
|
||||||
if(!Resolver.IsSet)
|
if(!Resolver.IsSet)
|
||||||
{
|
{
|
||||||
|
|
|
@ -43,6 +43,7 @@ namespace Bit.Android
|
||||||
emailIntent.PutExtra(Intent.ExtraEmail, new String[] { "hello@bitwarden.com" });
|
emailIntent.PutExtra(Intent.ExtraEmail, new String[] { "hello@bitwarden.com" });
|
||||||
emailIntent.PutExtra(Intent.ExtraSubject, "bitwarden Crash Report");
|
emailIntent.PutExtra(Intent.ExtraSubject, "bitwarden Crash Report");
|
||||||
emailIntent.PutExtra(Intent.ExtraText, text);
|
emailIntent.PutExtra(Intent.ExtraText, text);
|
||||||
|
//emailIntent.SetFlags(ActivityFlags.NewTask);
|
||||||
|
|
||||||
Application.Context.StartActivity(Intent.CreateChooser(emailIntent, "Send mail..."));
|
Application.Context.StartActivity(Intent.CreateChooser(emailIntent, "Send mail..."));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue