| /* |
| * SPDX-FileCopyrightText: 2016 The CyanogenMod Project |
| * SPDX-FileCopyrightText: 2017-2024 The LineageOS Project |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| package org.lineageos.setupwizard; |
| |
| import android.content.Intent; |
| |
| public class ScreenLockActivity extends SubBaseActivity { |
| |
| private static final String ACTION_SETUP_LOCKSCREEN = "com.android.settings.SETUP_LOCK_SCREEN"; |
| |
| @Override |
| protected void onStartSubactivity() { |
| Intent intent = new Intent(ACTION_SETUP_LOCKSCREEN); |
| startSubactivity(intent); |
| } |
| } |