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

Commit 308cc991 authored by Joshua Mccloskey's avatar Joshua Mccloskey Committed by Android (Google) Code Review
Browse files

Merge "Set package name for learn more action" into sc-dev

parents b13bdd4a eafbcef5
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -64,9 +64,9 @@ public class BiometricActionDisabledByAdminController extends BaseActionDisabled
        return (dialog, which) -> {
        return (dialog, which) -> {
            Log.d(TAG, "Positive button clicked, component: " + enforcedAdmin.component);
            Log.d(TAG, "Positive button clicked, component: " + enforcedAdmin.component);
            final Intent intent = new Intent(ACTION_LEARN_MORE)
            final Intent intent = new Intent(ACTION_LEARN_MORE)
                    .setComponent(enforcedAdmin.component)
                    .putExtra(EXTRA_SETTING_KEY, EXTRA_SETTING_VALUE)
                    .putExtra(EXTRA_SETTING_KEY, EXTRA_SETTING_VALUE)
                    .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
                    .setPackage(enforcedAdmin.component.getPackageName());
            context.startActivity(intent);
            context.startActivity(intent);
        };
        };
    }
    }