PowerShell wrote BOM when doing the package rename; javac on Linux rejects files starting with 0xEF 0xBB 0xBF.
21 lines
535 B
Java
21 lines
535 B
Java
/*
|
|
* SPDX-FileCopyrightText: 2016 The CyanogenMod Project
|
|
* SPDX-FileCopyrightText: The LineageOS Project
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package me.pawlet.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);
|
|
}
|
|
}
|