mirror of
https://github.com/bitwarden/mobile
synced 2025-02-01 19:17:13 +01:00
Do some manual GCing
This commit is contained in:
parent
8d5d477b4a
commit
54159c9d05
@ -88,6 +88,7 @@ namespace Bit.Android
|
||||
var allEditTexts = GetWindowNodes(root, e, n => EditText(n));
|
||||
var usernameEditText = allEditTexts.TakeWhile(n => !n.Password).LastOrDefault();
|
||||
FillCredentials(usernameEditText, passwordNodes);
|
||||
allEditTexts = null;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -99,6 +100,7 @@ namespace Bit.Android
|
||||
AutofillActivity.LastCredentials = null;
|
||||
}
|
||||
|
||||
passwordNodes = null;
|
||||
if(cancelNotification)
|
||||
{
|
||||
CancelNotification();
|
||||
@ -107,6 +109,9 @@ namespace Bit.Android
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
root = null;
|
||||
GC.Collect(0);
|
||||
}
|
||||
|
||||
public override void OnInterrupt()
|
||||
|
Loading…
x
Reference in New Issue
Block a user