1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-15 02:08:00 +02:00

Do some manual GCing

This commit is contained in:
Kyle Spearrin 2017-02-18 21:33:06 -05:00
parent 8d5d477b4a
commit 54159c9d05

View File

@ -88,6 +88,7 @@ namespace Bit.Android
var allEditTexts = GetWindowNodes(root, e, n => EditText(n)); var allEditTexts = GetWindowNodes(root, e, n => EditText(n));
var usernameEditText = allEditTexts.TakeWhile(n => !n.Password).LastOrDefault(); var usernameEditText = allEditTexts.TakeWhile(n => !n.Password).LastOrDefault();
FillCredentials(usernameEditText, passwordNodes); FillCredentials(usernameEditText, passwordNodes);
allEditTexts = null;
} }
else else
{ {
@ -99,6 +100,7 @@ namespace Bit.Android
AutofillActivity.LastCredentials = null; AutofillActivity.LastCredentials = null;
} }
passwordNodes = null;
if(cancelNotification) if(cancelNotification)
{ {
CancelNotification(); CancelNotification();
@ -107,6 +109,9 @@ namespace Bit.Android
default: default:
break; break;
} }
root = null;
GC.Collect(0);
} }
public override void OnInterrupt() public override void OnInterrupt()