Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1651dfeb authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Expressive style for Identity Check error dialogs" into main

parents e56206f7 aad5f8e0
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ package com.android.settings.biometrics;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.AlertDialog;
import androidx.appcompat.app.AlertDialog;
import android.app.Dialog;
import android.app.admin.DevicePolicyManager;
import android.content.BroadcastReceiver;
@@ -186,7 +186,8 @@ public class IdentityCheckBiometricErrorDialog extends InstrumentedDialogFragmen
            @Override
            public void onClick(View textView) {
                dismiss();
                final Intent autoLockSettingsIntent = new Intent(mActionIdentityCheckSettings);
                final Intent autoLockSettingsIntent = new Intent(mActionIdentityCheckSettings)
                        .setPackage(mIdentityCheckSettingsPackageName);
                final ResolveInfo autoLockSettingsInfo = getActivity().getPackageManager()
                        .resolveActivity(autoLockSettingsIntent, 0 /* flags */);
                if (autoLockSettingsInfo != null) {