Merge "BiometricFragment should commitAllowingStateLoss" into rvc-dev

This commit is contained in:
Kevin Chyn
2020-06-12 19:56:01 +00:00
committed by Android (Google) Code Review

View File

@@ -124,7 +124,8 @@ public class BiometricFragment extends InstrumentedFragment {
private void cleanup() { private void cleanup() {
if (getActivity() != null) { if (getActivity() != null) {
getActivity().getSupportFragmentManager().beginTransaction().remove(this).commit(); getActivity().getSupportFragmentManager().beginTransaction().remove(this)
.commitAllowingStateLoss();
} }
} }