Replace mIsPrimaryUser and UserManager calls with API Change-Id: I4c9661c6daf3dcb714db01d5229bf4cee37648c2
63 lines
2.1 KiB
Java
63 lines
2.1 KiB
Java
/*
|
|
* Copyright (C) 2017-2021 The LineageOS Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package org.lineageos.setupwizard;
|
|
|
|
import static android.content.Intent.FLAG_ACTIVITY_CLEAR_TASK;
|
|
import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
|
|
|
|
import static org.lineageos.setupwizard.SetupWizardApp.LOGV;
|
|
|
|
import android.annotation.Nullable;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.util.Log;
|
|
|
|
import org.lineageos.setupwizard.util.PhoneMonitor;
|
|
import org.lineageos.setupwizard.util.SetupWizardUtils;
|
|
|
|
public class SetupWizardExitActivity extends BaseSetupWizardActivity {
|
|
|
|
private static final String TAG = SetupWizardExitActivity.class.getSimpleName();
|
|
|
|
@Override
|
|
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
if (LOGV) {
|
|
Log.v(TAG, "onCreate savedInstanceState=" + savedInstanceState);
|
|
}
|
|
if (SetupWizardUtils.isOwner()) {
|
|
SetupWizardUtils.enableCaptivePortalDetection(this);
|
|
}
|
|
PhoneMonitor.onSetupFinished();
|
|
if (!SetupWizardUtils.isManagedProfile(this)) {
|
|
launchHome();
|
|
}
|
|
finish();
|
|
applyForwardTransition(TRANSITION_ID_FADE);
|
|
Intent i = new Intent();
|
|
i.setClassName(getPackageName(), SetupWizardExitService.class.getName());
|
|
startService(i);
|
|
}
|
|
|
|
private void launchHome() {
|
|
startActivity(new Intent("android.intent.action.MAIN")
|
|
.addCategory("android.intent.category.HOME")
|
|
.addFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_CLEAR_TASK));
|
|
}
|
|
|
|
}
|