ubdo debugging items

This commit is contained in:
Kyle Spearrin 2017-06-08 15:57:07 -04:00
parent 6a03c3e77d
commit ae806da3f1
3 changed files with 2 additions and 3 deletions

View File

@ -47,7 +47,7 @@ namespace Bit.Android
Console.WriteLine("A OnCreate");
Window.SetSoftInputMode(SoftInput.StateHidden);
//Window.AddFlags(WindowManagerFlags.Secure);
Window.AddFlags(WindowManagerFlags.Secure);
var appIdService = Resolver.Resolve<IAppIdService>();
var authService = Resolver.Resolve<IAuthService>();

View File

@ -38,7 +38,7 @@ namespace Bit.Android
public MainApplication(IntPtr handle, JniHandleOwnership transer)
: base(handle, transer)
{
//AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
if(!Resolver.IsSet)
{

View File

@ -43,7 +43,6 @@ namespace Bit.Android
emailIntent.PutExtra(Intent.ExtraEmail, new String[] { "hello@bitwarden.com" });
emailIntent.PutExtra(Intent.ExtraSubject, "bitwarden Crash Report");
emailIntent.PutExtra(Intent.ExtraText, text);
//emailIntent.SetFlags(ActivityFlags.NewTask);
Application.Context.StartActivity(Intent.CreateChooser(emailIntent, "Send mail..."));
}