• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2014, The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.managedprovisioning;
18 
19 import android.app.Activity;
20 import android.content.Intent;
21 import android.os.Bundle;
22 import android.support.v4.content.LocalBroadcastManager;
23 
24 /*
25  * This class is used to make sure that we start the mdm after we shut the Setup wizard down.
26  * The shut down of the Setup wizard is initiated in the DeviceOwnerProvisioningActivity by setting
27  * Global.DEVICE_PROVISIONED. This will cause the Setup wizard to shut down and send a HOME intent.
28  * Instead of opening the home screen we want to open the mdm, so the HOME intent is caught by this
29  * activity instead, which notifies the DeviceOwnerProvisioningService to send the
30  * ACTION_PROFILE_PROVISIONING_COMPLETE to the mdm, which will then open up.
31  */
32 
33 public class HomeReceiverActivity extends Activity {
34     @Override
onCreate(Bundle savedInstanceState)35    public void onCreate(Bundle savedInstanceState) {
36         super.onCreate(savedInstanceState);
37         Intent indirectIntent = new Intent(DeviceOwnerProvisioningService.ACTION_HOME_INDIRECT);
38         LocalBroadcastManager.getInstance(this).sendBroadcast(indirectIntent);
39         finish();
40     }
41 }