blob: 2c86dc21a5ae108d817a163ce4f6ab503574f623 [file] [log] [blame]
Dianne Hackbornd6847842010-01-12 18:14:19 -08001/*
2 * Copyright (C) 2010 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
Dianne Hackborn87bba1e2010-02-26 17:25:54 -080017package android.app.admin;
Dianne Hackbornd6847842010-01-12 18:14:19 -080018
Nicolas Prevot8f7698a2016-02-11 16:05:33 +000019import android.annotation.ColorInt;
Alan Treadwayafad8782016-01-19 15:15:08 +000020import android.annotation.IntDef;
Robin Lee25e26452015-06-02 09:56:29 -070021import android.annotation.NonNull;
22import android.annotation.Nullable;
Dianne Hackbornd6847842010-01-12 18:14:19 -080023import android.annotation.SdkConstant;
24import android.annotation.SdkConstant.SdkConstantType;
Justin Moreyb5deda72014-07-24 10:53:40 -050025import android.annotation.SystemApi;
Nicolas Prevot8f7698a2016-02-11 16:05:33 +000026import android.annotation.UserIdInt;
Jason Monkd7b86212014-06-16 13:15:38 -040027import android.app.Activity;
Michal Karpinski6235a942016-03-15 12:07:23 +000028import android.app.admin.SecurityLog.SecurityEvent;
Dianne Hackbornd6847842010-01-12 18:14:19 -080029import android.content.ComponentName;
30import android.content.Context;
Adam Connors010cfd42014-04-16 12:48:13 +010031import android.content.Intent;
Sander Alewijnsef475ca32014-02-17 15:13:58 +000032import android.content.IntentFilter;
Dianne Hackbornd6847842010-01-12 18:14:19 -080033import android.content.pm.PackageManager;
Victor Changcd14c0a2016-03-16 19:10:15 +000034import android.content.pm.PackageManager.NameNotFoundException;
Rubin Xuc3cd05f2016-01-11 12:11:35 +000035import android.content.pm.ParceledListSlice;
Sudheer Shanka978fc0d2016-01-28 13:51:10 +000036import android.content.pm.UserInfo;
Julia Reynoldsfca04ca2015-02-17 13:39:12 -050037import android.graphics.Bitmap;
Jason Monk03bc9912014-05-13 09:44:57 -040038import android.net.ProxyInfo;
Nicolas Prevot8b7991c2015-11-12 17:40:12 +000039import android.net.Uri;
Robin Lee66e5d962014-04-09 16:44:21 +010040import android.os.Bundle;
Jim Millere303bf42014-08-26 17:12:29 -070041import android.os.PersistableBundle;
Adam Connors776c5552014-01-09 10:42:56 +000042import android.os.Process;
Dianne Hackborn8ea138c2010-01-26 18:01:04 -080043import android.os.RemoteCallback;
Dianne Hackbornd6847842010-01-12 18:14:19 -080044import android.os.RemoteException;
45import android.os.ServiceManager;
Amith Yamasani599dd7c2012-09-14 23:20:08 -070046import android.os.UserHandle;
Julia Reynolds1e958392014-05-16 14:25:21 -040047import android.os.UserManager;
Ricky Wai494b95d2015-11-20 16:07:15 +000048import android.provider.ContactsContract.Directory;
Mahaver Chopra1ce53bc2015-12-14 13:35:14 +000049import android.provider.Settings;
Bernhard Bauer26408cc2014-09-08 14:07:31 +010050import android.security.Credentials;
Amith Yamasanid1d7c022014-08-19 17:03:41 -070051import android.service.restrictions.RestrictionsReceiver;
Mahaver Chopra1216ae52016-03-11 15:39:48 +000052import android.telephony.TelephonyManager;
Dianne Hackbornd6847842010-01-12 18:14:19 -080053import android.util.Log;
54
Makoto Onukicc4bbeb2015-09-17 10:28:24 -070055import com.android.internal.annotations.VisibleForTesting;
Maggie Benthallda51e682013-08-08 22:35:44 -040056import com.android.org.conscrypt.TrustedCertificateStore;
57
58import java.io.ByteArrayInputStream;
Dianne Hackbornd6847842010-01-12 18:14:19 -080059import java.io.IOException;
Alan Treadwayafad8782016-01-19 15:15:08 +000060import java.lang.annotation.Retention;
61import java.lang.annotation.RetentionPolicy;
Oscar Montemayor69238c62010-08-03 10:51:06 -070062import java.net.InetSocketAddress;
63import java.net.Proxy;
Robin Lee0d5ccb72014-09-12 17:41:44 +010064import java.security.KeyFactory;
Mahaver Chopra1ce53bc2015-12-14 13:35:14 +000065import java.security.NoSuchAlgorithmException;
Bernhard Bauer26408cc2014-09-08 14:07:31 +010066import java.security.PrivateKey;
67import java.security.cert.Certificate;
Maggie Benthallda51e682013-08-08 22:35:44 -040068import java.security.cert.CertificateException;
69import java.security.cert.CertificateFactory;
70import java.security.cert.X509Certificate;
Robin Lee0d5ccb72014-09-12 17:41:44 +010071import java.security.spec.InvalidKeySpecException;
Mahaver Chopra1ce53bc2015-12-14 13:35:14 +000072import java.security.spec.PKCS8EncodedKeySpec;
Jim Miller604e7552014-07-18 19:00:02 -070073import java.util.ArrayList;
Svetoslav976e8bd2014-07-16 15:12:03 -070074import java.util.Collections;
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -080075import java.util.List;
Bartosz Fabianowski4c052f22016-01-25 14:18:43 +010076import java.util.Set;
Dianne Hackbornd6847842010-01-12 18:14:19 -080077
78/**
Alexandra Gherghina541afcd2014-11-07 11:18:12 +000079 * Public interface for managing policies enforced on a device. Most clients of this class must be
Suprabh Shukla34d92ef2016-03-14 13:49:37 -070080 * registered with the system as a <a href="{@docRoot}guide/topics/admin/device-admin.html">device
81 * administrator</a>. Additionally, a device administrator may be registered as either a profile or
82 * device owner. A given method is accessible to all device administrators unless the documentation
83 * for that method specifies that it is restricted to either device or profile owners. Any
84 * application calling an api may only pass as an argument a device administrator component it
85 * owns. Otherwise, a {@link SecurityException} will be thrown.
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080086 * <div class="special reference">
87 * <h3>Developer Guides</h3>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -070088 * <p>
89 * For more information about managing policies for device administration, read the <a href=
90 * "{@docRoot}guide/topics/admin/device-admin.html">Device Administration</a> developer
91 * guide. </div>
Dianne Hackbornd6847842010-01-12 18:14:19 -080092 */
93public class DevicePolicyManager {
94 private static String TAG = "DevicePolicyManager";
Dianne Hackbornd6847842010-01-12 18:14:19 -080095
96 private final Context mContext;
Dianne Hackbornd6847842010-01-12 18:14:19 -080097 private final IDevicePolicyManager mService;
Esteban Talavera62399912016-01-11 15:37:55 +000098 private final boolean mParentInstance;
Konstantin Lopyrev32558232010-05-20 16:18:05 -070099
Clara Bayarri3e826ef2015-12-14 17:51:22 +0000100 private DevicePolicyManager(Context context, boolean parentInstance) {
Esteban Talavera62399912016-01-11 15:37:55 +0000101 this(context,
102 IDevicePolicyManager.Stub.asInterface(
103 ServiceManager.getService(Context.DEVICE_POLICY_SERVICE)),
104 parentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800105 }
106
Dianne Hackborn87bba1e2010-02-26 17:25:54 -0800107 /** @hide */
Makoto Onukicc4bbeb2015-09-17 10:28:24 -0700108 @VisibleForTesting
Esteban Talavera62399912016-01-11 15:37:55 +0000109 protected DevicePolicyManager(
110 Context context, IDevicePolicyManager service, boolean parentInstance) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -0700111 mContext = context;
112 mService = service;
Esteban Talavera62399912016-01-11 15:37:55 +0000113 mParentInstance = parentInstance;
Makoto Onukicc4bbeb2015-09-17 10:28:24 -0700114 }
115
116 /** @hide */
117 public static DevicePolicyManager create(Context context) {
Clara Bayarri3e826ef2015-12-14 17:51:22 +0000118 DevicePolicyManager me = new DevicePolicyManager(context, false);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -0800119 return me.mService != null ? me : null;
120 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700121
Makoto Onukicc4bbeb2015-09-17 10:28:24 -0700122 /** @hide test will override it. */
123 @VisibleForTesting
124 protected int myUserId() {
125 return UserHandle.myUserId();
126 }
127
Dianne Hackbornd6847842010-01-12 18:14:19 -0800128 /**
Jessica Hummelf72078b2014-03-06 16:13:12 +0000129 * Activity action: Starts the provisioning flow which sets up a managed profile.
Jessica Hummelf72078b2014-03-06 16:13:12 +0000130 *
Jessica Hummel9da60392014-05-21 12:32:57 +0100131 * <p>A managed profile allows data separation for example for the usage of a
132 * device as a personal and corporate device. The user which provisioning is started from and
133 * the managed profile share a launcher.
134 *
Andrew Solovay27f53372015-03-02 16:37:59 -0800135 * <p>This intent will typically be sent by a mobile device management application (MDM).
136 * Provisioning adds a managed profile and sets the MDM as the profile owner who has full
137 * control over the profile.
Jessica Hummel9da60392014-05-21 12:32:57 +0100138 *
Alan Treadway46dd4492015-11-09 13:57:19 +0000139 * <p>It is possible to check if provisioning is allowed or not by querying the method
140 * {@link #isProvisioningAllowed(String)}.
141 *
142 * <p>In version {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this intent must contain the
Nicolas Prevot18440252015-03-09 14:07:17 +0000143 * extra {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}.
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -0700144 * As of {@link android.os.Build.VERSION_CODES#M}, it should contain the extra
Nicolas Prevot18440252015-03-09 14:07:17 +0000145 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME} instead, although specifying only
146 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME} is still supported.
Nicolas Prevotcaf11cd2015-11-19 10:58:35 +0000147 *
Benjamin Franzea956242016-03-21 15:45:56 +0000148 * <p>The intent may also contain the following extras:
Nicolas Prevotcaf11cd2015-11-19 10:58:35 +0000149 * <ul>
Benjamin Franzea956242016-03-21 15:45:56 +0000150 * <li>{@link #EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE}, optional </li>
151 * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional, supported from
152 * {@link android.os.Build.VERSION_CODES#N}</li>
153 * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li>
154 * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li>
155 * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li>
Nicolas Prevotcaf11cd2015-11-19 10:58:35 +0000156 * </ul>
Jessica Hummelf72078b2014-03-06 16:13:12 +0000157 *
Benjamin Franzea956242016-03-21 15:45:56 +0000158 * <p>When managed provisioning has completed, broadcasts are sent to the application specified
Alexandra Gherghinadb4bc572015-01-08 12:17:40 +0000159 * in the provisioning intent. The
160 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} broadcast is sent in the
161 * managed profile and the {@link #ACTION_MANAGED_PROFILE_PROVISIONED} broadcast is sent in
162 * the primary profile.
Jessica Hummel9da60392014-05-21 12:32:57 +0100163 *
Benjamin Franzea956242016-03-21 15:45:56 +0000164 * <p>If provisioning fails, the managedProfile is removed so the device returns to its
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100165 * previous state.
Alan Treadway4582f812015-07-28 11:49:35 +0100166 *
167 * <p>If launched with {@link android.app.Activity#startActivityForResult(Intent, int)} a
168 * result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part of
169 * the provisioning flow was successful, although this doesn't guarantee the full flow will
170 * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies
171 * that the user backed-out of provisioning, or some precondition for provisioning wasn't met.
Jessica Hummelf72078b2014-03-06 16:13:12 +0000172 */
173 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
174 public static final String ACTION_PROVISION_MANAGED_PROFILE
Esteban Talaveraef9c5232014-09-08 13:51:18 +0100175 = "android.app.action.PROVISION_MANAGED_PROFILE";
Jessica Hummelf72078b2014-03-06 16:13:12 +0000176
177 /**
Mahaver Chopra7830daa2015-11-10 18:12:43 +0000178 * Activity action: Starts the provisioning flow which sets up a managed user.
179 *
180 * <p>This intent will typically be sent by a mobile device management application (MDM).
Makoto Onuki32b30572015-12-11 14:29:51 -0800181 * Provisioning configures the user as managed user and sets the MDM as the profile
Mahaver Chopra7830daa2015-11-10 18:12:43 +0000182 * owner who has full control over the user. Provisioning can only happen before user setup has
183 * been completed. Use {@link #isProvisioningAllowed(String)} to check if provisioning is
184 * allowed.
185 *
Benjamin Franzea956242016-03-21 15:45:56 +0000186 * <p>The intent contains the following extras:
187 * <ul>
188 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li>
189 * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional</li>
190 * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li>
191 * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li>
192 * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li>
193 * </ul>
Mahaver Chopra7830daa2015-11-10 18:12:43 +0000194 *
Benjamin Franzea956242016-03-21 15:45:56 +0000195 * <p>If provisioning fails, the device returns to its previous state.
Mahaver Chopra7830daa2015-11-10 18:12:43 +0000196 *
197 * <p>If launched with {@link android.app.Activity#startActivityForResult(Intent, int)} a
198 * result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part of
199 * the provisioning flow was successful, although this doesn't guarantee the full flow will
200 * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies
201 * that the user backed-out of provisioning, or some precondition for provisioning wasn't met.
Benjamin Franzea956242016-03-21 15:45:56 +0000202 *
203 * @hide
Mahaver Chopra5e732562015-11-05 11:55:12 +0000204 */
205 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
206 public static final String ACTION_PROVISION_MANAGED_USER
207 = "android.app.action.PROVISION_MANAGED_USER";
208
209 /**
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100210 * Activity action: Starts the provisioning flow which sets up a managed device.
211 * Must be started with {@link android.app.Activity#startActivityForResult(Intent, int)}.
212 *
213 * <p> During device owner provisioning a device admin app is set as the owner of the device.
214 * A device owner has full control over the device. The device owner can not be modified by the
215 * user.
216 *
217 * <p> A typical use case would be a device that is owned by a company, but used by either an
218 * employee or client.
219 *
220 * <p> An intent with this action can be sent only on an unprovisioned device.
Alan Treadway46dd4492015-11-09 13:57:19 +0000221 * It is possible to check if provisioning is allowed or not by querying the method
222 * {@link #isProvisioningAllowed(String)}.
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100223 *
Alan Treadway46dd4492015-11-09 13:57:19 +0000224 * <p>The intent contains the following extras:
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100225 * <ul>
226 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li>
227 * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional</li>
228 * <li>{@link #EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED}, optional</li>
Rubin Xua4f9dc12015-06-12 13:27:59 +0100229 * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li>
Nicolas Prevot8b7991c2015-11-12 17:40:12 +0000230 * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li>
Nicolas Prevotcaf11cd2015-11-19 10:58:35 +0000231 * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li>
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100232 * </ul>
233 *
Benjamin Franzea956242016-03-21 15:45:56 +0000234 * <p>When device owner provisioning has completed, an intent of the type
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100235 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} is broadcast to the
236 * device owner.
237 *
Benjamin Franzea956242016-03-21 15:45:56 +0000238 * <p>If provisioning fails, the device is factory reset.
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100239 *
Alan Treadway4582f812015-07-28 11:49:35 +0100240 * <p>A result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part
241 * of the provisioning flow was successful, although this doesn't guarantee the full flow will
242 * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies
243 * that the user backed-out of provisioning, or some precondition for provisioning wasn't met.
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100244 */
245 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
246 public static final String ACTION_PROVISION_MANAGED_DEVICE
247 = "android.app.action.PROVISION_MANAGED_DEVICE";
248
249 /**
Alan Treadway46dd4492015-11-09 13:57:19 +0000250 * Activity action: Starts the provisioning flow which sets up a managed device.
Steven Ng980a1b62016-02-02 17:43:18 +0000251 *
252 * <p>During device owner provisioning, a device admin app is downloaded and set as the owner of
253 * the device. A device owner has full control over the device. The device owner can not be
254 * modified by the user and the only way of resetting the device is via factory reset.
255 *
256 * <p>A typical use case would be a device that is owned by a company, but used by either an
257 * employee or client.
258 *
259 * <p>The provisioning message should be sent to an unprovisioned device.
260 *
261 * <p>Unlike {@link #ACTION_PROVISION_MANAGED_DEVICE}, the provisioning message can only be sent
262 * by a privileged app with the permission
263 * {@link android.Manifest.permission#DISPATCH_PROVISIONING_MESSAGE}.
264 *
265 * <p>The provisioning intent contains the following properties:
266 * <ul>
267 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li>
268 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}, optional</li>
269 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER}, optional</li>
270 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM}, optional</li>
271 * <li>{@link #EXTRA_PROVISIONING_LOCAL_TIME} (convert to String), optional</li>
272 * <li>{@link #EXTRA_PROVISIONING_TIME_ZONE}, optional</li>
273 * <li>{@link #EXTRA_PROVISIONING_LOCALE}, optional</li>
274 * <li>{@link #EXTRA_PROVISIONING_WIFI_SSID}, optional</li>
275 * <li>{@link #EXTRA_PROVISIONING_WIFI_HIDDEN} (convert to String), optional</li>
276 * <li>{@link #EXTRA_PROVISIONING_WIFI_SECURITY_TYPE}, optional</li>
277 * <li>{@link #EXTRA_PROVISIONING_WIFI_PASSWORD}, optional</li>
278 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_HOST}, optional</li>
279 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_PORT} (convert to String), optional</li>
280 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_BYPASS}, optional</li>
281 * <li>{@link #EXTRA_PROVISIONING_WIFI_PAC_URL}, optional</li>
282 * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li></ul>
283 *
284 * @hide
285 */
286 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
287 @SystemApi
288 public static final String ACTION_PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE =
289 "android.app.action.PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE";
290
291 /**
292 * Activity action: Starts the provisioning flow which sets up a managed device.
Alan Treadway46dd4492015-11-09 13:57:19 +0000293 * Must be started with {@link android.app.Activity#startActivityForResult(Intent, int)}.
294 *
295 * <p>NOTE: This is only supported on split system user devices, and puts the device into a
296 * management state that is distinct from that reached by
297 * {@link #ACTION_PROVISION_MANAGED_DEVICE} - specifically the device owner runs on the system
298 * user, and only has control over device-wide policies, not individual users and their data.
299 * The primary benefit is that multiple non-system users are supported when provisioning using
300 * this form of device management.
301 *
Benjamin Franzea956242016-03-21 15:45:56 +0000302 * <p>During device owner provisioning a device admin app is set as the owner of the device.
Alan Treadway46dd4492015-11-09 13:57:19 +0000303 * A device owner has full control over the device. The device owner can not be modified by the
304 * user.
305 *
Benjamin Franzea956242016-03-21 15:45:56 +0000306 * <p>A typical use case would be a device that is owned by a company, but used by either an
Alan Treadway46dd4492015-11-09 13:57:19 +0000307 * employee or client.
308 *
Benjamin Franzea956242016-03-21 15:45:56 +0000309 * <p>An intent with this action can be sent only on an unprovisioned device.
Alan Treadway46dd4492015-11-09 13:57:19 +0000310 * It is possible to check if provisioning is allowed or not by querying the method
311 * {@link #isProvisioningAllowed(String)}.
312 *
313 * <p>The intent contains the following extras:
314 * <ul>
315 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}</li>
316 * <li>{@link #EXTRA_PROVISIONING_SKIP_ENCRYPTION}, optional</li>
317 * <li>{@link #EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED}, optional</li>
318 * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional</li>
Benjamin Franzea956242016-03-21 15:45:56 +0000319 * <li>{@link #EXTRA_PROVISIONING_LOGO_URI}, optional</li>
320 * <li>{@link #EXTRA_PROVISIONING_MAIN_COLOR}, optional</li>
Alan Treadway46dd4492015-11-09 13:57:19 +0000321 * </ul>
322 *
Benjamin Franzea956242016-03-21 15:45:56 +0000323 * <p>When device owner provisioning has completed, an intent of the type
Alan Treadway46dd4492015-11-09 13:57:19 +0000324 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} is broadcast to the
325 * device owner.
326 *
Benjamin Franzea956242016-03-21 15:45:56 +0000327 * <p>If provisioning fails, the device is factory reset.
Alan Treadway46dd4492015-11-09 13:57:19 +0000328 *
329 * <p>A result code of {@link android.app.Activity#RESULT_OK} implies that the synchronous part
330 * of the provisioning flow was successful, although this doesn't guarantee the full flow will
331 * succeed. Conversely a result code of {@link android.app.Activity#RESULT_CANCELED} implies
332 * that the user backed-out of provisioning, or some precondition for provisioning wasn't met.
333 *
334 * @hide
335 */
336 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
337 public static final String ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE
338 = "android.app.action.PROVISION_MANAGED_SHAREABLE_DEVICE";
339
340 /**
Alan Treadwayafad8782016-01-19 15:15:08 +0000341 * Activity action: Finalizes management provisioning, should be used after user-setup
342 * has been completed and {@link #getUserProvisioningState()} returns one of:
343 * <ul>
344 * <li>{@link #STATE_USER_SETUP_INCOMPLETE}</li>
345 * <li>{@link #STATE_USER_SETUP_COMPLETE}</li>
346 * <li>{@link #STATE_USER_PROFILE_COMPLETE}</li>
347 * </ul>
348 *
349 * @hide
350 */
Benjamin Franzeed2a8e2016-02-19 14:19:05 +0000351 @SystemApi
Alan Treadwayafad8782016-01-19 15:15:08 +0000352 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
353 public static final String ACTION_PROVISION_FINALIZATION
354 = "android.app.action.PROVISION_FINALIZATION";
355
356 /**
Michal Karpinskiba244092016-02-25 17:28:24 +0000357 * Action: Bugreport sharing with device owner has been accepted by the user.
358 *
359 * @hide
360 */
361 public static final String ACTION_BUGREPORT_SHARING_ACCEPTED =
362 "com.android.server.action.BUGREPORT_SHARING_ACCEPTED";
363
364 /**
365 * Action: Bugreport sharing with device owner has been declined by the user.
366 *
367 * @hide
368 */
369 public static final String ACTION_BUGREPORT_SHARING_DECLINED =
370 "com.android.server.action.BUGREPORT_SHARING_DECLINED";
371
372 /**
373 * Action: Bugreport has been collected and is dispatched to {@link DevicePolicyManagerService}.
374 *
375 * @hide
376 */
377 public static final String ACTION_REMOTE_BUGREPORT_DISPATCH =
378 "android.intent.action.REMOTE_BUGREPORT_DISPATCH";
379
380 /**
381 * Extra for shared bugreport's SHA-256 hash.
382 *
383 * @hide
384 */
385 public static final String EXTRA_REMOTE_BUGREPORT_HASH =
386 "android.intent.extra.REMOTE_BUGREPORT_HASH";
387
388 /**
389 * Extra for remote bugreport notification shown type.
390 *
391 * @hide
392 */
393 public static final String EXTRA_BUGREPORT_NOTIFICATION_TYPE =
394 "android.app.extra.bugreport_notification_type";
395
396 /**
397 * Notification type for a started remote bugreport flow.
398 *
399 * @hide
400 */
401 public static final int NOTIFICATION_BUGREPORT_STARTED = 1;
402
403 /**
404 * Notification type for a bugreport that has already been accepted to be shared, but is still
405 * being taken.
406 *
407 * @hide
408 */
409 public static final int NOTIFICATION_BUGREPORT_ACCEPTED_NOT_FINISHED = 2;
410
411 /**
412 * Notification type for a bugreport that has been taken and can be shared or declined.
413 *
414 * @hide
415 */
416 public static final int NOTIFICATION_BUGREPORT_FINISHED_NOT_ACCEPTED = 3;
417
418 /**
Rubin Xua4f9dc12015-06-12 13:27:59 +0100419 * A {@link android.os.Parcelable} extra of type {@link android.os.PersistableBundle} that
Rubin Xu41f2ccb92015-08-05 16:29:13 +0100420 * allows a mobile device management application or NFC programmer application which starts
421 * managed provisioning to pass data to the management application instance after provisioning.
Rubin Xua4f9dc12015-06-12 13:27:59 +0100422 * <p>
423 * If used with {@link #ACTION_PROVISION_MANAGED_PROFILE} it can be used by the application that
424 * sends the intent to pass data to itself on the newly created profile.
425 * If used with {@link #ACTION_PROVISION_MANAGED_DEVICE} it allows passing data to the same
426 * instance of the app on the primary user.
Rubin Xu41f2ccb92015-08-05 16:29:13 +0100427 * Starting from {@link android.os.Build.VERSION_CODES#M}, if used with
428 * {@link #MIME_TYPE_PROVISIONING_NFC} as part of NFC managed device provisioning, the NFC
429 * message should contain a stringified {@link java.util.Properties} instance, whose string
430 * properties will be converted into a {@link android.os.PersistableBundle} and passed to the
431 * management application after provisioning.
432 *
Rubin Xua4f9dc12015-06-12 13:27:59 +0100433 * <p>
434 * In both cases the application receives the data in
Brian Carlstromf1fe51b2014-09-03 08:55:05 -0700435 * {@link DeviceAdminReceiver#onProfileProvisioningComplete} via an intent with the action
436 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE}. The bundle is not changed
Rubin Xua4f9dc12015-06-12 13:27:59 +0100437 * during the managed provisioning.
Sander Alewijnse90f14bf2014-08-20 16:22:44 +0100438 */
439 public static final String EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE =
Esteban Talavera37f01842014-09-05 10:50:57 +0100440 "android.app.extra.PROVISIONING_ADMIN_EXTRAS_BUNDLE";
Sander Alewijnse90f14bf2014-08-20 16:22:44 +0100441
442 /**
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100443 * A String extra holding the package name of the mobile device management application that
444 * will be set as the profile owner or device owner.
445 *
446 * <p>If an application starts provisioning directly via an intent with action
447 * {@link #ACTION_PROVISION_MANAGED_PROFILE} this package has to match the package name of the
448 * application that started provisioning. The package will be set as profile owner in that case.
449 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000450 * <p>This package is set as device owner when device owner provisioning is started by an NFC
451 * message containing an NFC record with MIME type {@link #MIME_TYPE_PROVISIONING_NFC}.
Nicolas Prevot18440252015-03-09 14:07:17 +0000452 *
453 * <p> When this extra is set, the application must have exactly one device admin receiver.
Robin Lee25e26452015-06-02 09:56:29 -0700454 * This receiver will be set as the profile or device owner and active admin.
Benjamin Franzea956242016-03-21 15:45:56 +0000455 *
Nicolas Prevot18440252015-03-09 14:07:17 +0000456 * @see DeviceAdminReceiver
457 * @deprecated Use {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME}. This extra is still
Nicolas Prevot8f78d6a2015-08-21 11:06:31 +0100458 * supported, but only if there is only one device admin receiver in the package that requires
459 * the permission {@link android.Manifest.permission#BIND_DEVICE_ADMIN}.
Jessica Hummelf72078b2014-03-06 16:13:12 +0000460 */
Nicolas Prevot18440252015-03-09 14:07:17 +0000461 @Deprecated
Jessica Hummelf72078b2014-03-06 16:13:12 +0000462 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME
Esteban Talaveraef9c5232014-09-08 13:51:18 +0100463 = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME";
Jessica Hummelf72078b2014-03-06 16:13:12 +0000464
465 /**
Nicolas Prevot18440252015-03-09 14:07:17 +0000466 * A ComponentName extra indicating the device admin receiver of the mobile device management
467 * application that will be set as the profile owner or device owner and active admin.
468 *
469 * <p>If an application starts provisioning directly via an intent with action
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100470 * {@link #ACTION_PROVISION_MANAGED_PROFILE} or
471 * {@link #ACTION_PROVISION_MANAGED_DEVICE} the package name of this
472 * component has to match the package name of the application that started provisioning.
Nicolas Prevot18440252015-03-09 14:07:17 +0000473 *
474 * <p>This component is set as device owner and active admin when device owner provisioning is
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100475 * started by an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE} or by an NFC
476 * message containing an NFC record with MIME type
Benjamin Franzea956242016-03-21 15:45:56 +0000477 * {@link #MIME_TYPE_PROVISIONING_NFC}. For the NFC record, the component name must be
Rubin Xu44ef750b2015-03-23 16:51:33 +0000478 * flattened to a string, via {@link ComponentName#flattenToShortString()}.
Nicolas Prevot18440252015-03-09 14:07:17 +0000479 *
480 * @see DeviceAdminReceiver
481 */
482 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME
483 = "android.app.extra.PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME";
484
485 /**
Alexandra Gherghinaaaf2f3e2014-11-13 12:46:15 +0000486 * An {@link android.accounts.Account} extra holding the account to migrate during managed
487 * profile provisioning. If the account supplied is present in the primary user, it will be
488 * copied, along with its credentials to the managed profile and removed from the primary user.
489 *
490 * Use with {@link #ACTION_PROVISION_MANAGED_PROFILE}.
491 */
492
493 public static final String EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE
494 = "android.app.extra.PROVISIONING_ACCOUNT_TO_MIGRATE";
495
496 /**
Jessica Hummele3da7902014-08-20 15:20:11 +0100497 * A String extra that, holds the email address of the account which a managed profile is
498 * created for. Used with {@link #ACTION_PROVISION_MANAGED_PROFILE} and
499 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE}.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100500 *
Sander Alewijnse2b338a22014-09-12 12:28:40 +0100501 * <p> This extra is part of the {@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}.
502 *
Jessica Hummele3da7902014-08-20 15:20:11 +0100503 * <p> If the {@link #ACTION_PROVISION_MANAGED_PROFILE} intent that starts managed provisioning
504 * contains this extra, it is forwarded in the
505 * {@link DeviceAdminReceiver#ACTION_PROFILE_PROVISIONING_COMPLETE} intent to the mobile
506 * device management application that was set as the profile owner during provisioning.
507 * It is usually used to avoid that the user has to enter their email address twice.
Nicolas Prevot07ac20b2014-05-27 15:37:45 +0100508 */
Sander Alewijnse2b338a22014-09-12 12:28:40 +0100509 public static final String EXTRA_PROVISIONING_EMAIL_ADDRESS
510 = "android.app.extra.PROVISIONING_EMAIL_ADDRESS";
Nicolas Prevot07ac20b2014-05-27 15:37:45 +0100511
512 /**
Nicolas Prevotcd2d8592015-11-23 13:27:21 +0000513 * A integer extra indicating the predominant color to show during the provisioning.
514 * Refer to {@link android.graphics.Color} for how the color is represented.
Nicolas Prevotcaf11cd2015-11-19 10:58:35 +0000515 *
516 * <p>Use with {@link #ACTION_PROVISION_MANAGED_PROFILE} or
517 * {@link #ACTION_PROVISION_MANAGED_DEVICE}.
518 */
519 public static final String EXTRA_PROVISIONING_MAIN_COLOR =
520 "android.app.extra.PROVISIONING_MAIN_COLOR";
521
522 /**
Sander Alewijnse8c411562014-11-12 18:03:11 +0000523 * A Boolean extra that can be used by the mobile device management application to skip the
Robin Lee25e26452015-06-02 09:56:29 -0700524 * disabling of system apps during provisioning when set to {@code true}.
Sander Alewijnse8c411562014-11-12 18:03:11 +0000525 *
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100526 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} or an intent with action
527 * {@link #ACTION_PROVISION_MANAGED_DEVICE} that starts device owner provisioning.
Sander Alewijnse8c411562014-11-12 18:03:11 +0000528 */
Sander Alewijnse5a144252014-11-18 13:25:04 +0000529 public static final String EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED =
530 "android.app.extra.PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED";
Sander Alewijnse8c411562014-11-12 18:03:11 +0000531
532 /**
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100533 * A String extra holding the time zone {@link android.app.AlarmManager} that the device
534 * will be set to.
535 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000536 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
537 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100538 */
539 public static final String EXTRA_PROVISIONING_TIME_ZONE
Esteban Talavera37f01842014-09-05 10:50:57 +0100540 = "android.app.extra.PROVISIONING_TIME_ZONE";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100541
542 /**
Esteban Talaverad469a0b2014-08-20 13:54:25 +0100543 * A Long extra holding the wall clock time (in milliseconds) to be set on the device's
544 * {@link android.app.AlarmManager}.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100545 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000546 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
547 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100548 */
549 public static final String EXTRA_PROVISIONING_LOCAL_TIME
Esteban Talavera37f01842014-09-05 10:50:57 +0100550 = "android.app.extra.PROVISIONING_LOCAL_TIME";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100551
552 /**
553 * A String extra holding the {@link java.util.Locale} that the device will be set to.
554 * Format: xx_yy, where xx is the language code, and yy the country code.
555 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000556 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
557 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100558 */
559 public static final String EXTRA_PROVISIONING_LOCALE
Esteban Talavera37f01842014-09-05 10:50:57 +0100560 = "android.app.extra.PROVISIONING_LOCALE";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100561
562 /**
563 * A String extra holding the ssid of the wifi network that should be used during nfc device
564 * owner provisioning for downloading the mobile device management application.
565 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000566 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
567 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100568 */
569 public static final String EXTRA_PROVISIONING_WIFI_SSID
Esteban Talavera37f01842014-09-05 10:50:57 +0100570 = "android.app.extra.PROVISIONING_WIFI_SSID";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100571
572 /**
573 * A boolean extra indicating whether the wifi network in {@link #EXTRA_PROVISIONING_WIFI_SSID}
574 * is hidden or not.
575 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000576 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
577 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100578 */
579 public static final String EXTRA_PROVISIONING_WIFI_HIDDEN
Esteban Talavera37f01842014-09-05 10:50:57 +0100580 = "android.app.extra.PROVISIONING_WIFI_HIDDEN";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100581
582 /**
583 * A String extra indicating the security type of the wifi network in
Mahaver Chopra76b08a92015-10-08 17:58:45 +0100584 * {@link #EXTRA_PROVISIONING_WIFI_SSID} and could be one of {@code NONE}, {@code WPA} or
585 * {@code WEP}.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100586 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000587 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
588 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100589 */
590 public static final String EXTRA_PROVISIONING_WIFI_SECURITY_TYPE
Esteban Talavera37f01842014-09-05 10:50:57 +0100591 = "android.app.extra.PROVISIONING_WIFI_SECURITY_TYPE";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100592
593 /**
594 * A String extra holding the password of the wifi network in
595 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
596 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000597 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
598 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100599 */
600 public static final String EXTRA_PROVISIONING_WIFI_PASSWORD
Esteban Talavera37f01842014-09-05 10:50:57 +0100601 = "android.app.extra.PROVISIONING_WIFI_PASSWORD";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100602
603 /**
604 * A String extra holding the proxy host for the wifi network in
605 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
606 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000607 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
608 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100609 */
610 public static final String EXTRA_PROVISIONING_WIFI_PROXY_HOST
Esteban Talavera37f01842014-09-05 10:50:57 +0100611 = "android.app.extra.PROVISIONING_WIFI_PROXY_HOST";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100612
613 /**
614 * An int extra holding the proxy port for the wifi network in
615 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
616 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000617 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
618 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100619 */
620 public static final String EXTRA_PROVISIONING_WIFI_PROXY_PORT
Esteban Talavera37f01842014-09-05 10:50:57 +0100621 = "android.app.extra.PROVISIONING_WIFI_PROXY_PORT";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100622
623 /**
624 * A String extra holding the proxy bypass for the wifi network in
625 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
626 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000627 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
628 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100629 */
630 public static final String EXTRA_PROVISIONING_WIFI_PROXY_BYPASS
Esteban Talavera37f01842014-09-05 10:50:57 +0100631 = "android.app.extra.PROVISIONING_WIFI_PROXY_BYPASS";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100632
633 /**
634 * A String extra holding the proxy auto-config (PAC) URL for the wifi network in
635 * {@link #EXTRA_PROVISIONING_WIFI_SSID}.
636 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000637 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
638 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100639 */
640 public static final String EXTRA_PROVISIONING_WIFI_PAC_URL
Esteban Talavera37f01842014-09-05 10:50:57 +0100641 = "android.app.extra.PROVISIONING_WIFI_PAC_URL";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100642
643 /**
644 * A String extra holding a url that specifies the download location of the device admin
645 * package. When not provided it is assumed that the device admin package is already installed.
646 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000647 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
648 * provisioning via an NFC bump.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100649 */
650 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION
Esteban Talavera37f01842014-09-05 10:50:57 +0100651 = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100652
653 /**
Julia Reynoldsc1731742015-03-19 14:56:28 -0400654 * An int extra holding a minimum required version code for the device admin package. If the
655 * device admin is already installed on the device, it will only be re-downloaded from
656 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION} if the version of the
657 * installed package is less than this version code.
658 *
Craig Lafayette3cc72ba2015-06-26 11:51:04 -0400659 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
Julia Reynoldsc1731742015-03-19 14:56:28 -0400660 * provisioning via an NFC bump.
661 */
662 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_MINIMUM_VERSION_CODE
663 = "android.app.extra.PROVISIONING_DEVICE_ADMIN_MINIMUM_VERSION_CODE";
664
665 /**
Sander Alewijnse681bce92014-07-24 16:46:26 +0100666 * A String extra holding a http cookie header which should be used in the http request to the
667 * url specified in {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}.
668 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000669 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
670 * provisioning via an NFC bump.
Sander Alewijnse681bce92014-07-24 16:46:26 +0100671 */
672 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER
Esteban Talavera37f01842014-09-05 10:50:57 +0100673 = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER";
Sander Alewijnse681bce92014-07-24 16:46:26 +0100674
675 /**
Rubin Xud92e7572015-05-18 17:01:13 +0100676 * A String extra holding the URL-safe base64 encoded SHA-256 or SHA-1 hash (see notes below) of
677 * the file at download location specified in
678 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}.
Sander Alewijnsee4f878cb2015-04-14 10:49:17 +0100679 *
Benjamin Franzea956242016-03-21 15:45:56 +0000680 * <p>Either this extra or {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_SIGNATURE_CHECKSUM} must be
681 * present. The provided checksum must match the checksum of the file at the download
Sander Alewijnsee4f878cb2015-04-14 10:49:17 +0100682 * location. If the checksum doesn't match an error will be shown to the user and the user will
683 * be asked to factory reset the device.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100684 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000685 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
686 * provisioning via an NFC bump.
Rubin Xud92e7572015-05-18 17:01:13 +0100687 *
688 * <p><strong>Note:</strong> for devices running {@link android.os.Build.VERSION_CODES#LOLLIPOP}
689 * and {@link android.os.Build.VERSION_CODES#LOLLIPOP_MR1} only SHA-1 hash is supported.
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -0700690 * Starting from {@link android.os.Build.VERSION_CODES#M}, this parameter accepts SHA-256 in
Rubin Xud92e7572015-05-18 17:01:13 +0100691 * addition to SHA-1. Support for SHA-1 is likely to be removed in future OS releases.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100692 */
693 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM
Esteban Talavera37f01842014-09-05 10:50:57 +0100694 = "android.app.extra.PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM";
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100695
696 /**
Rubin Xud92e7572015-05-18 17:01:13 +0100697 * A String extra holding the URL-safe base64 encoded SHA-256 checksum of any signature of the
Sander Alewijnsee4f878cb2015-04-14 10:49:17 +0100698 * android package archive at the download location specified in {@link
699 * #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}.
700 *
Rubin Xu5c82d2c2015-06-02 09:29:46 +0100701 * <p>The signatures of an android package archive can be obtained using
Sander Alewijnsee4f878cb2015-04-14 10:49:17 +0100702 * {@link android.content.pm.PackageManager#getPackageArchiveInfo} with flag
703 * {@link android.content.pm.PackageManager#GET_SIGNATURES}.
704 *
Benjamin Franzea956242016-03-21 15:45:56 +0000705 * <p>Either this extra or {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM} must be
706 * present. The provided checksum must match the checksum of any signature of the file at
Sander Alewijnsee4f878cb2015-04-14 10:49:17 +0100707 * the download location. If the checksum does not match an error will be shown to the user and
708 * the user will be asked to factory reset the device.
709 *
710 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} that starts device owner
711 * provisioning via an NFC bump.
712 */
Rubin Xu5c82d2c2015-06-02 09:29:46 +0100713 public static final String EXTRA_PROVISIONING_DEVICE_ADMIN_SIGNATURE_CHECKSUM
714 = "android.app.extra.PROVISIONING_DEVICE_ADMIN_SIGNATURE_CHECKSUM";
Sander Alewijnsee4f878cb2015-04-14 10:49:17 +0100715
716 /**
Alexandra Gherghinadb4bc572015-01-08 12:17:40 +0000717 * Broadcast Action: This broadcast is sent to indicate that provisioning of a managed profile
718 * has completed successfully.
719 *
720 * <p>The broadcast is limited to the primary profile, to the app specified in the provisioning
Nicolas Prevotebe2d992015-05-12 18:14:53 -0700721 * intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE}.
Alexandra Gherghinadb4bc572015-01-08 12:17:40 +0000722 *
Ying Wang7f38aab2015-02-20 11:50:09 -0800723 * <p>This intent will contain the extra {@link #EXTRA_PROVISIONING_ACCOUNT_TO_MIGRATE} which
Alexandra Gherghinadb4bc572015-01-08 12:17:40 +0000724 * corresponds to the account requested to be migrated at provisioning time, if any.
725 */
726 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
727 public static final String ACTION_MANAGED_PROFILE_PROVISIONED
728 = "android.app.action.MANAGED_PROFILE_PROVISIONED";
729
730 /**
Benjamin Franzea956242016-03-21 15:45:56 +0000731 * A boolean extra indicating whether device encryption can be skipped as part of device owner
732 * or managed profile provisioning.
Julia Reynoldsa9ec70b2015-02-02 09:54:26 -0500733 *
Craig Lafayette3cc72ba2015-06-26 11:51:04 -0400734 * <p>Use in an NFC record with {@link #MIME_TYPE_PROVISIONING_NFC} or an intent with action
Nicolas Prevot64bf7b22015-04-29 14:43:49 +0100735 * {@link #ACTION_PROVISION_MANAGED_DEVICE} that starts device owner provisioning.
Benjamin Franzea956242016-03-21 15:45:56 +0000736 *
737 * <p>From {@link android.os.Build.VERSION_CODES#N} onwards, this is also supported for an
738 * intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE}.
Julia Reynoldsa9ec70b2015-02-02 09:54:26 -0500739 */
740 public static final String EXTRA_PROVISIONING_SKIP_ENCRYPTION =
741 "android.app.extra.PROVISIONING_SKIP_ENCRYPTION";
742
743 /**
Nicolas Prevot8b7991c2015-11-12 17:40:12 +0000744 * A {@link Uri} extra pointing to a logo image. This image will be shown during the
745 * provisioning. If this extra is not passed, a default image will be shown.
746 * <h5>The following URI schemes are accepted:</h5>
747 * <ul>
748 * <li>content ({@link android.content.ContentResolver#SCHEME_CONTENT})</li>
749 * <li>android.resource ({@link android.content.ContentResolver#SCHEME_ANDROID_RESOURCE})</li>
750 * </ul>
751 *
752 * <p> It is the responsability of the caller to provide an image with a reasonable
753 * pixed density for the device.
754 *
755 * <p> If a content: URI is passed, the intent should have the flag
756 * {@link Intent#FLAG_GRANT_READ_URI_PERMISSION} and the uri should be added to the
757 * {@link android.content.ClipData} of the intent too.
758 *
759 * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_PROFILE} or
760 * {@link #ACTION_PROVISION_MANAGED_DEVICE}
761 */
762 public static final String EXTRA_PROVISIONING_LOGO_URI =
763 "android.app.extra.PROVISIONING_LOGO_URI";
764
765 /**
Alan Treadway94de8c82016-01-11 10:25:23 +0000766 * A boolean extra indicating if user setup should be skipped, for when provisioning is started
767 * during setup-wizard.
768 *
769 * <p>If unspecified, defaults to {@code true} to match the behavior in
770 * {@link android.os.Build.VERSION_CODES#M} and earlier.
771 *
Alan Treadway1a538d02016-01-18 16:42:30 +0000772 * <p>Use in an intent with action {@link #ACTION_PROVISION_MANAGED_DEVICE} or
773 * {@link #ACTION_PROVISION_MANAGED_USER}.
Alan Treadway94de8c82016-01-11 10:25:23 +0000774 *
775 * @hide
776 */
777 public static final String EXTRA_PROVISIONING_SKIP_USER_SETUP =
778 "android.app.extra.PROVISIONING_SKIP_USER_SETUP";
779
780 /**
Benjamin Franzea956242016-03-21 15:45:56 +0000781 * This MIME type is used for starting the device owner provisioning.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100782 *
Craig Lafayette3cc72ba2015-06-26 11:51:04 -0400783 * <p>During device owner provisioning a device admin app is set as the owner of the device.
784 * A device owner has full control over the device. The device owner can not be modified by the
785 * user and the only way of resetting the device is if the device owner app calls a factory
786 * reset.
787 *
788 * <p> A typical use case would be a device that is owned by a company, but used by either an
789 * employee or client.
790 *
Benjamin Franzea956242016-03-21 15:45:56 +0000791 * <p> The NFC message must be sent to an unprovisioned device.
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100792 *
Sander Alewijnse8c411562014-11-12 18:03:11 +0000793 * <p>The NFC record must contain a serialized {@link java.util.Properties} object which
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100794 * contains the following properties:
795 * <ul>
Andrei Kapishnikov35e71f52015-03-16 17:24:04 -0400796 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}</li>
797 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_LOCATION}, optional</li>
Sander Alewijnse681bce92014-07-24 16:46:26 +0100798 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_DOWNLOAD_COOKIE_HEADER}, optional</li>
Andrei Kapishnikov35e71f52015-03-16 17:24:04 -0400799 * <li>{@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_CHECKSUM}, optional</li>
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100800 * <li>{@link #EXTRA_PROVISIONING_LOCAL_TIME} (convert to String), optional</li>
801 * <li>{@link #EXTRA_PROVISIONING_TIME_ZONE}, optional</li>
802 * <li>{@link #EXTRA_PROVISIONING_LOCALE}, optional</li>
803 * <li>{@link #EXTRA_PROVISIONING_WIFI_SSID}, optional</li>
804 * <li>{@link #EXTRA_PROVISIONING_WIFI_HIDDEN} (convert to String), optional</li>
805 * <li>{@link #EXTRA_PROVISIONING_WIFI_SECURITY_TYPE}, optional</li>
806 * <li>{@link #EXTRA_PROVISIONING_WIFI_PASSWORD}, optional</li>
807 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_HOST}, optional</li>
808 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_PORT} (convert to String), optional</li>
809 * <li>{@link #EXTRA_PROVISIONING_WIFI_PROXY_BYPASS}, optional</li>
Rubin Xu41f2ccb92015-08-05 16:29:13 +0100810 * <li>{@link #EXTRA_PROVISIONING_WIFI_PAC_URL}, optional</li>
811 * <li>{@link #EXTRA_PROVISIONING_ADMIN_EXTRAS_BUNDLE}, optional, supported from
812 * {@link android.os.Build.VERSION_CODES#M} </li></ul>
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100813 *
Nicolas Prevot18440252015-03-09 14:07:17 +0000814 * <p>
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -0700815 * As of {@link android.os.Build.VERSION_CODES#M}, the properties should contain
Andrei Kapishnikov35e71f52015-03-16 17:24:04 -0400816 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME} instead of
817 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}, (although specifying only
818 * {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME} is still supported).
Andrei Kapishnikov35e71f52015-03-16 17:24:04 -0400819 */
820 public static final String MIME_TYPE_PROVISIONING_NFC
821 = "application/com.android.managedprovisioning";
822
Sander Alewijnse1cc4ecc2014-06-23 19:56:52 +0100823 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -0800824 * Activity action: ask the user to add a new device administrator to the system.
825 * The desired policy is the ComponentName of the policy in the
826 * {@link #EXTRA_DEVICE_ADMIN} extra field. This will invoke a UI to
827 * bring the user through adding the device administrator to the system (or
828 * allowing them to reject it).
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700829 *
Dianne Hackborn8ea138c2010-01-26 18:01:04 -0800830 * <p>You can optionally include the {@link #EXTRA_ADD_EXPLANATION}
831 * field to provide the user with additional explanation (in addition
832 * to your component's description) about what is being added.
Andy Stadlerc25f70a2010-12-08 15:56:45 -0800833 *
834 * <p>If your administrator is already active, this will ordinarily return immediately (without
835 * user intervention). However, if your administrator has been updated and is requesting
836 * additional uses-policy flags, the user will be presented with the new list. New policies
837 * will not be available to the updated administrator until the user has accepted the new list.
Dianne Hackbornd6847842010-01-12 18:14:19 -0800838 */
839 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
840 public static final String ACTION_ADD_DEVICE_ADMIN
841 = "android.app.action.ADD_DEVICE_ADMIN";
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700842
Dianne Hackbornd6847842010-01-12 18:14:19 -0800843 /**
Amith Yamasanibf3a9462014-07-28 14:26:42 -0700844 * @hide
845 * Activity action: ask the user to add a new device administrator as the profile owner
Amith Yamasani814e9872015-03-23 14:04:53 -0700846 * for this user. Only system apps can launch this intent.
Amith Yamasanibf3a9462014-07-28 14:26:42 -0700847 *
Amith Yamasani814e9872015-03-23 14:04:53 -0700848 * <p>The ComponentName of the profile owner admin is passed in the {@link #EXTRA_DEVICE_ADMIN}
849 * extra field. This will invoke a UI to bring the user through adding the profile owner admin
Amith Yamasanibf3a9462014-07-28 14:26:42 -0700850 * to remotely control restrictions on the user.
851 *
Makoto Onukic8a5a552015-11-19 14:29:12 -0800852 * <p>The intent must be invoked via {@link Activity#startActivityForResult} to receive the
Amith Yamasanibf3a9462014-07-28 14:26:42 -0700853 * result of whether or not the user approved the action. If approved, the result will
854 * be {@link Activity#RESULT_OK} and the component will be set as an active admin as well
855 * as a profile owner.
856 *
857 * <p>You can optionally include the {@link #EXTRA_ADD_EXPLANATION}
858 * field to provide the user with additional explanation (in addition
859 * to your component's description) about what is being added.
860 *
Amith Yamasani814e9872015-03-23 14:04:53 -0700861 * <p>If there is already a profile owner active or the caller is not a system app, the
862 * operation will return a failure result.
Amith Yamasanibf3a9462014-07-28 14:26:42 -0700863 */
864 @SystemApi
865 public static final String ACTION_SET_PROFILE_OWNER
866 = "android.app.action.SET_PROFILE_OWNER";
867
868 /**
869 * @hide
870 * Name of the profile owner admin that controls the user.
871 */
872 @SystemApi
873 public static final String EXTRA_PROFILE_OWNER_NAME
874 = "android.app.extra.PROFILE_OWNER_NAME";
875
876 /**
Nicolas Prevot00799002015-07-27 18:15:20 +0100877 * Broadcast action: send when any policy admin changes a policy.
Jim Miller284b62e2010-06-08 14:27:42 -0700878 * This is generally used to find out when a new policy is in effect.
Jim Miller3e5d3fd2011-09-02 17:30:35 -0700879 *
Jim Miller284b62e2010-06-08 14:27:42 -0700880 * @hide
881 */
882 public static final String ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED
883 = "android.app.action.DEVICE_POLICY_MANAGER_STATE_CHANGED";
884
885 /**
Nicolas Prevot00799002015-07-27 18:15:20 +0100886 * Broadcast action: sent when the device owner is set or changed.
887 *
888 * This broadcast is sent only to the primary user.
889 * @see #ACTION_PROVISION_MANAGED_DEVICE
890 */
891 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
892 public static final String ACTION_DEVICE_OWNER_CHANGED
893 = "android.app.action.DEVICE_OWNER_CHANGED";
894
895 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -0800896 * The ComponentName of the administrator component.
897 *
898 * @see #ACTION_ADD_DEVICE_ADMIN
899 */
900 public static final String EXTRA_DEVICE_ADMIN = "android.app.extra.DEVICE_ADMIN";
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700901
Dianne Hackbornd6847842010-01-12 18:14:19 -0800902 /**
Dianne Hackborn8ea138c2010-01-26 18:01:04 -0800903 * An optional CharSequence providing additional explanation for why the
904 * admin is being added.
905 *
906 * @see #ACTION_ADD_DEVICE_ADMIN
907 */
908 public static final String EXTRA_ADD_EXPLANATION = "android.app.extra.ADD_EXPLANATION";
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700909
Dianne Hackborn8ea138c2010-01-26 18:01:04 -0800910 /**
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700911 * Activity action: have the user enter a new password. This activity should
912 * be launched after using {@link #setPasswordQuality(ComponentName, int)},
913 * or {@link #setPasswordMinimumLength(ComponentName, int)} to have the user
914 * enter a new password that meets the current requirements. You can use
915 * {@link #isActivePasswordSufficient()} to determine whether you need to
916 * have the user select a new password in order to meet the current
917 * constraints. Upon being resumed from this activity, you can check the new
918 * password characteristics to see if they are sufficient.
Benjamin Franzc9921092016-01-08 17:17:44 +0000919 *
920 * If the intent is launched from within a managed profile with a profile
921 * owner built against {@link android.os.Build.VERSION_CODES#M} or before,
922 * this will trigger entering a new password for the parent of the profile.
923 * For all other cases it will trigger entering a new password for the user
924 * or profile it is launched from.
Esteban Talaverac1c83592016-02-17 17:56:15 +0000925 *
926 * @see #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD
Dianne Hackbornd6847842010-01-12 18:14:19 -0800927 */
928 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
929 public static final String ACTION_SET_NEW_PASSWORD
930 = "android.app.action.SET_NEW_PASSWORD";
Amith Yamasanibf3a9462014-07-28 14:26:42 -0700931
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000932 /**
Benjamin Franzc9921092016-01-08 17:17:44 +0000933 * Activity action: have the user enter a new password for the parent profile.
934 * If the intent is launched from within a managed profile, this will trigger
935 * entering a new password for the parent of the profile. In all other cases
936 * the behaviour is identical to {@link #ACTION_SET_NEW_PASSWORD}.
937 */
938 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
939 public static final String ACTION_SET_NEW_PARENT_PROFILE_PASSWORD
940 = "android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD";
941
942 /**
Nicolas Prevot2c1c5dd2015-01-12 12:32:56 +0000943 * Flag used by {@link #addCrossProfileIntentFilter} to allow activities in
944 * the parent profile to access intents sent from the managed profile.
945 * That is, when an app in the managed profile calls
946 * {@link Activity#startActivity(Intent)}, the intent can be resolved by a
947 * matching activity in the parent profile.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000948 */
Nicolas Prevot86a96732014-09-08 12:13:05 +0100949 public static final int FLAG_PARENT_CAN_ACCESS_MANAGED = 0x0001;
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000950
951 /**
Nicolas Prevot2c1c5dd2015-01-12 12:32:56 +0000952 * Flag used by {@link #addCrossProfileIntentFilter} to allow activities in
953 * the managed profile to access intents sent from the parent profile.
954 * That is, when an app in the parent profile calls
955 * {@link Activity#startActivity(Intent)}, the intent can be resolved by a
956 * matching activity in the managed profile.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000957 */
Nicolas Prevot86a96732014-09-08 12:13:05 +0100958 public static final int FLAG_MANAGED_CAN_ACCESS_PARENT = 0x0002;
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700959
Dianne Hackbornd6847842010-01-12 18:14:19 -0800960 /**
Rubin Xu5faad8e2015-04-20 17:43:48 +0100961 * Broadcast action: notify that a new local system update policy has been set by the device
962 * owner. The new policy can be retrieved by {@link #getSystemUpdatePolicy()}.
Rubin Xu8027a4f2015-03-10 17:52:37 +0000963 */
964 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
Rubin Xu5faad8e2015-04-20 17:43:48 +0100965 public static final String ACTION_SYSTEM_UPDATE_POLICY_CHANGED
966 = "android.app.action.SYSTEM_UPDATE_POLICY_CHANGED";
Rubin Xu8027a4f2015-03-10 17:52:37 +0000967
Amith Yamasanid49489b2015-04-28 14:00:26 -0700968 /**
969 * Permission policy to prompt user for new permission requests for runtime permissions.
970 * Already granted or denied permissions are not affected by this.
971 */
972 public static final int PERMISSION_POLICY_PROMPT = 0;
973
974 /**
975 * Permission policy to always grant new permission requests for runtime permissions.
976 * Already granted or denied permissions are not affected by this.
977 */
978 public static final int PERMISSION_POLICY_AUTO_GRANT = 1;
979
980 /**
981 * Permission policy to always deny new permission requests for runtime permissions.
982 * Already granted or denied permissions are not affected by this.
983 */
984 public static final int PERMISSION_POLICY_AUTO_DENY = 2;
985
Svet Ganovd8ecc5a2015-05-20 10:45:43 -0700986 /**
987 * Runtime permission state: The user can manage the permission
988 * through the UI.
989 */
990 public static final int PERMISSION_GRANT_STATE_DEFAULT = 0;
991
992 /**
993 * Runtime permission state: The permission is granted to the app
994 * and the user cannot manage the permission through the UI.
995 */
996 public static final int PERMISSION_GRANT_STATE_GRANTED = 1;
997
998 /**
999 * Runtime permission state: The permission is denied to the app
1000 * and the user cannot manage the permission through the UI.
1001 */
1002 public static final int PERMISSION_GRANT_STATE_DENIED = 2;
Rubin Xu8027a4f2015-03-10 17:52:37 +00001003
1004 /**
Alan Treadwayafad8782016-01-19 15:15:08 +00001005 * No management for current user in-effect. This is the default.
1006 * @hide
1007 */
Benjamin Franzeed2a8e2016-02-19 14:19:05 +00001008 @SystemApi
Alan Treadwayafad8782016-01-19 15:15:08 +00001009 public static final int STATE_USER_UNMANAGED = 0;
1010
1011 /**
1012 * Management partially setup, user setup needs to be completed.
1013 * @hide
1014 */
Benjamin Franzeed2a8e2016-02-19 14:19:05 +00001015 @SystemApi
Alan Treadwayafad8782016-01-19 15:15:08 +00001016 public static final int STATE_USER_SETUP_INCOMPLETE = 1;
1017
1018 /**
1019 * Management partially setup, user setup completed.
1020 * @hide
1021 */
Benjamin Franzeed2a8e2016-02-19 14:19:05 +00001022 @SystemApi
Alan Treadwayafad8782016-01-19 15:15:08 +00001023 public static final int STATE_USER_SETUP_COMPLETE = 2;
1024
1025 /**
1026 * Management setup and active on current user.
1027 * @hide
1028 */
Benjamin Franzeed2a8e2016-02-19 14:19:05 +00001029 @SystemApi
Alan Treadwayafad8782016-01-19 15:15:08 +00001030 public static final int STATE_USER_SETUP_FINALIZED = 3;
1031
1032 /**
1033 * Management partially setup on a managed profile.
1034 * @hide
1035 */
Benjamin Franzeed2a8e2016-02-19 14:19:05 +00001036 @SystemApi
Alan Treadwayafad8782016-01-19 15:15:08 +00001037 public static final int STATE_USER_PROFILE_COMPLETE = 4;
1038
1039 /**
1040 * @hide
1041 */
1042 @IntDef({STATE_USER_UNMANAGED, STATE_USER_SETUP_INCOMPLETE, STATE_USER_SETUP_COMPLETE,
1043 STATE_USER_SETUP_FINALIZED, STATE_USER_PROFILE_COMPLETE})
1044 @Retention(RetentionPolicy.SOURCE)
1045 public @interface UserProvisioningState {}
1046
1047 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001048 * Return true if the given administrator component is currently active (enabled) in the system.
1049 *
1050 * @param admin The administrator component to check for.
1051 * @return {@code true} if {@code admin} is currently enabled in the system, {@code false}
1052 * otherwise
Dianne Hackbornd6847842010-01-12 18:14:19 -08001053 */
Robin Lee25e26452015-06-02 09:56:29 -07001054 public boolean isAdminActive(@NonNull ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001055 return isAdminActiveAsUser(admin, myUserId());
Zoltan Szatmary-Ban3f1ddf82014-07-02 16:42:05 +01001056 }
1057
1058 /**
1059 * @see #isAdminActive(ComponentName)
1060 * @hide
1061 */
Robin Lee25e26452015-06-02 09:56:29 -07001062 public boolean isAdminActiveAsUser(@NonNull ComponentName admin, int userId) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001063 if (mService != null) {
1064 try {
Robin Lee25e26452015-06-02 09:56:29 -07001065 return mService.isAdminActive(admin, userId);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001066 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001067 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08001068 }
1069 }
1070 return false;
1071 }
Fyodor Kupolov96fb9322014-12-01 15:08:09 -08001072 /**
1073 * Return true if the given administrator component is currently being removed
1074 * for the user.
1075 * @hide
1076 */
Robin Lee25e26452015-06-02 09:56:29 -07001077 public boolean isRemovingAdmin(@NonNull ComponentName admin, int userId) {
Fyodor Kupolov96fb9322014-12-01 15:08:09 -08001078 if (mService != null) {
1079 try {
Robin Lee25e26452015-06-02 09:56:29 -07001080 return mService.isRemovingAdmin(admin, userId);
Fyodor Kupolov96fb9322014-12-01 15:08:09 -08001081 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001082 throw e.rethrowFromSystemServer();
Fyodor Kupolov96fb9322014-12-01 15:08:09 -08001083 }
1084 }
1085 return false;
1086 }
1087
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001088
Dianne Hackbornd6847842010-01-12 18:14:19 -08001089 /**
Robin Lee25e26452015-06-02 09:56:29 -07001090 * Return a list of all currently active device administrators' component
1091 * names. If there are no administrators {@code null} may be
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -08001092 * returned.
1093 */
1094 public List<ComponentName> getActiveAdmins() {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001095 return getActiveAdminsAsUser(myUserId());
Zoltan Szatmary-Ban3f1ddf82014-07-02 16:42:05 +01001096 }
1097
1098 /**
1099 * @see #getActiveAdmins()
1100 * @hide
1101 */
1102 public List<ComponentName> getActiveAdminsAsUser(int userId) {
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -08001103 if (mService != null) {
1104 try {
Zoltan Szatmary-Ban3f1ddf82014-07-02 16:42:05 +01001105 return mService.getActiveAdmins(userId);
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -08001106 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001107 throw e.rethrowFromSystemServer();
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -08001108 }
1109 }
1110 return null;
1111 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001112
Dianne Hackbornd47c6ed2010-01-27 16:21:20 -08001113 /**
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001114 * Used by package administration code to determine if a package can be stopped
1115 * or uninstalled.
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001116 * @hide
1117 */
1118 public boolean packageHasActiveAdmins(String packageName) {
Amith Yamasanica5d6d22016-02-16 13:58:46 -08001119 return packageHasActiveAdmins(packageName, myUserId());
1120 }
1121
1122 /**
1123 * Used by package administration code to determine if a package can be stopped
1124 * or uninstalled.
1125 * @hide
1126 */
1127 public boolean packageHasActiveAdmins(String packageName, int userId) {
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001128 if (mService != null) {
1129 try {
Amith Yamasanica5d6d22016-02-16 13:58:46 -08001130 return mService.packageHasActiveAdmins(packageName, userId);
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001131 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001132 throw e.rethrowFromSystemServer();
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001133 }
1134 }
1135 return false;
1136 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001137
Dianne Hackborn21f1bd12010-02-19 17:02:21 -08001138 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -08001139 * Remove a current administration component. This can only be called
1140 * by the application that owns the administration component; if you
1141 * try to remove someone else's component, a security exception will be
1142 * thrown.
Esteban Talavera552a5612016-02-19 17:02:24 +00001143 *
1144 * <p>Note that the operation is not synchronous and the admin might still be active (as
1145 * indicated by {@link #getActiveAdmins()}) by the time this method returns.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001146 *
1147 * @param admin The administration compononent to remove.
1148 * @throws SecurityException if the caller is not in the owner application of {@code admin}.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001149 */
Robin Lee25e26452015-06-02 09:56:29 -07001150 public void removeActiveAdmin(@NonNull ComponentName admin) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001151 if (mService != null) {
1152 try {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001153 mService.removeActiveAdmin(admin, myUserId());
Dianne Hackbornd6847842010-01-12 18:14:19 -08001154 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001155 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08001156 }
1157 }
1158 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001159
Dianne Hackbornd6847842010-01-12 18:14:19 -08001160 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001161 * Returns true if an administrator has been granted a particular device policy. This can be
1162 * used to check whether the administrator was activated under an earlier set of policies, but
1163 * requires additional policies after an upgrade.
Andy Stadlerc25f70a2010-12-08 15:56:45 -08001164 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001165 * @param admin Which {@link DeviceAdminReceiver} this request is associated with. Must be an
1166 * active administrator, or an exception will be thrown.
Andy Stadlerc25f70a2010-12-08 15:56:45 -08001167 * @param usesPolicy Which uses-policy to check, as defined in {@link DeviceAdminInfo}.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001168 * @throws SecurityException if {@code admin} is not an active administrator.
Andy Stadlerc25f70a2010-12-08 15:56:45 -08001169 */
Robin Lee25e26452015-06-02 09:56:29 -07001170 public boolean hasGrantedPolicy(@NonNull ComponentName admin, int usesPolicy) {
Andy Stadlerc25f70a2010-12-08 15:56:45 -08001171 if (mService != null) {
1172 try {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001173 return mService.hasGrantedPolicy(admin, usesPolicy, myUserId());
Andy Stadlerc25f70a2010-12-08 15:56:45 -08001174 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001175 throw e.rethrowFromSystemServer();
Andy Stadlerc25f70a2010-12-08 15:56:45 -08001176 }
1177 }
1178 return false;
1179 }
1180
1181 /**
Clara Bayarria1771112015-12-18 16:29:18 +00001182 * Returns true if the Profile Challenge is available to use for the given profile user.
1183 *
1184 * @hide
1185 */
1186 public boolean isSeparateProfileChallengeAllowed(int userHandle) {
1187 if (mService != null) {
1188 try {
1189 return mService.isSeparateProfileChallengeAllowed(userHandle);
1190 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001191 throw e.rethrowFromSystemServer();
Clara Bayarria1771112015-12-18 16:29:18 +00001192 }
1193 }
1194 return false;
1195 }
1196
1197 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001198 * Constant for {@link #setPasswordQuality}: the policy has no requirements
1199 * for the password. Note that quality constants are ordered so that higher
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001200 * values are more restrictive.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001201 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001202 public static final int PASSWORD_QUALITY_UNSPECIFIED = 0;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001203
Dianne Hackbornd6847842010-01-12 18:14:19 -08001204 /**
Jim Miller3e5d3fd2011-09-02 17:30:35 -07001205 * Constant for {@link #setPasswordQuality}: the policy allows for low-security biometric
1206 * recognition technology. This implies technologies that can recognize the identity of
1207 * an individual to about a 3 digit PIN (false detection is less than 1 in 1,000).
1208 * Note that quality constants are ordered so that higher values are more restrictive.
1209 */
1210 public static final int PASSWORD_QUALITY_BIOMETRIC_WEAK = 0x8000;
1211
1212 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001213 * Constant for {@link #setPasswordQuality}: the policy requires some kind
Benjamin Franzc6a96532015-06-16 11:23:38 +01001214 * of password or pattern, but doesn't care what it is. Note that quality constants
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001215 * are ordered so that higher values are more restrictive.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001216 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001217 public static final int PASSWORD_QUALITY_SOMETHING = 0x10000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001218
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001219 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001220 * Constant for {@link #setPasswordQuality}: the user must have entered a
1221 * password containing at least numeric characters. Note that quality
1222 * constants are ordered so that higher values are more restrictive.
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001223 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001224 public static final int PASSWORD_QUALITY_NUMERIC = 0x20000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001225
Dianne Hackbornd6847842010-01-12 18:14:19 -08001226 /**
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001227 * Constant for {@link #setPasswordQuality}: the user must have entered a
Jim Miller85516d02014-01-31 17:08:37 -08001228 * password containing at least numeric characters with no repeating (4444)
1229 * or ordered (1234, 4321, 2468) sequences. Note that quality
1230 * constants are ordered so that higher values are more restrictive.
1231 */
1232 public static final int PASSWORD_QUALITY_NUMERIC_COMPLEX = 0x30000;
1233
1234 /**
1235 * Constant for {@link #setPasswordQuality}: the user must have entered a
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -07001236 * password containing at least alphabetic (or other symbol) characters.
1237 * Note that quality constants are ordered so that higher values are more
1238 * restrictive.
1239 */
1240 public static final int PASSWORD_QUALITY_ALPHABETIC = 0x40000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001241
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -07001242 /**
1243 * Constant for {@link #setPasswordQuality}: the user must have entered a
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001244 * password containing at least <em>both></em> numeric <em>and</em>
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -07001245 * alphabetic (or other symbol) characters. Note that quality constants are
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001246 * ordered so that higher values are more restrictive.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001247 */
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -07001248 public static final int PASSWORD_QUALITY_ALPHANUMERIC = 0x50000;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001249
Dianne Hackbornd6847842010-01-12 18:14:19 -08001250 /**
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001251 * Constant for {@link #setPasswordQuality}: the user must have entered a
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001252 * password containing at least a letter, a numerical digit and a special
1253 * symbol, by default. With this password quality, passwords can be
1254 * restricted to contain various sets of characters, like at least an
1255 * uppercase letter, etc. These are specified using various methods,
1256 * like {@link #setPasswordMinimumLowerCase(ComponentName, int)}. Note
1257 * that quality constants are ordered so that higher values are more
1258 * restrictive.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001259 */
1260 public static final int PASSWORD_QUALITY_COMPLEX = 0x60000;
1261
1262 /**
Oleksandr Peletskyi0fdcd3d2016-01-13 16:49:56 +01001263 * Constant for {@link #setPasswordQuality}: the user is not allowed to
1264 * modify password. In case this password quality is set, the password is
1265 * managed by a profile owner. The profile owner can set any password,
1266 * as if {@link #PASSWORD_QUALITY_UNSPECIFIED} is used. Note
1267 * that quality constants are ordered so that higher values are more
1268 * restrictive. The value of {@link #PASSWORD_QUALITY_MANAGED} is
1269 * the highest.
1270 * @hide
1271 */
1272 public static final int PASSWORD_QUALITY_MANAGED = 0x80000;
1273
1274 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001275 * Called by an application that is administering the device to set the password restrictions it
1276 * is imposing. After setting this, the user will not be able to enter a new password that is
1277 * not at least as restrictive as what has been set. Note that the current password will remain
1278 * until the user has set a new one, so the change does not take place immediately. To prompt
1279 * the user for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or
Esteban Talaverac1c83592016-02-17 17:56:15 +00001280 * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after calling this method.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001281 * <p>
1282 * Quality constants are ordered so that higher values are more restrictive; thus the highest
1283 * requested quality constant (between the policy set here, the user's preference, and any other
1284 * considerations) is the one that is in effect.
1285 * <p>
1286 * The calling device admin must have requested
1287 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1288 * not, a security exception will be thrown.
1289 * <p>
1290 * This method can be called on the {@link DevicePolicyManager} instance returned by
1291 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1292 * profile.
Esteban Talaverac1c83592016-02-17 17:56:15 +00001293 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08001294 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001295 * @param quality The new desired quality. One of {@link #PASSWORD_QUALITY_UNSPECIFIED},
1296 * {@link #PASSWORD_QUALITY_SOMETHING}, {@link #PASSWORD_QUALITY_NUMERIC},
1297 * {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX}, {@link #PASSWORD_QUALITY_ALPHABETIC},
1298 * {@link #PASSWORD_QUALITY_ALPHANUMERIC} or {@link #PASSWORD_QUALITY_COMPLEX}.
1299 * @throws SecurityException if {@code admin} is not an active administrator or if {@code admin}
1300 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Dianne Hackbornd6847842010-01-12 18:14:19 -08001301 */
Robin Lee25e26452015-06-02 09:56:29 -07001302 public void setPasswordQuality(@NonNull ComponentName admin, int quality) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001303 if (mService != null) {
1304 try {
Clara Bayarri3e826ef2015-12-14 17:51:22 +00001305 mService.setPasswordQuality(admin, quality, mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001306 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001307 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08001308 }
1309 }
1310 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001311
Dianne Hackbornd6847842010-01-12 18:14:19 -08001312 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001313 * Retrieve the current minimum password quality for a particular admin or all admins that set
1314 * retrictions on this user and its participating profiles. Restrictions on profiles that have
1315 * a separate challenge are not taken into account.
1316 *
1317 * <p>This method can be called on the {@link DevicePolicyManager} instance
1318 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1319 * restrictions on the parent profile.
1320 *
Robin Lee25e26452015-06-02 09:56:29 -07001321 * @param admin The name of the admin component to check, or {@code null} to aggregate
Dianne Hackborn254cb442010-01-27 19:23:59 -08001322 * all admins.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001323 */
Robin Lee25e26452015-06-02 09:56:29 -07001324 public int getPasswordQuality(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001325 return getPasswordQuality(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001326 }
1327
1328 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001329 public int getPasswordQuality(@Nullable ComponentName admin, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001330 if (mService != null) {
1331 try {
Clara Bayarri3e826ef2015-12-14 17:51:22 +00001332 return mService.getPasswordQuality(admin, userHandle, mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001333 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001334 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08001335 }
1336 }
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001337 return PASSWORD_QUALITY_UNSPECIFIED;
Dianne Hackbornd6847842010-01-12 18:14:19 -08001338 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001339
Dianne Hackbornd6847842010-01-12 18:14:19 -08001340 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001341 * Called by an application that is administering the device to set the minimum allowed password
1342 * length. After setting this, the user will not be able to enter a new password that is not at
1343 * least as restrictive as what has been set. Note that the current password will remain until
1344 * the user has set a new one, so the change does not take place immediately. To prompt the user
1345 * for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or
1346 * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is
1347 * only imposed if the administrator has also requested either {@link #PASSWORD_QUALITY_NUMERIC}
1348 * , {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX}, {@link #PASSWORD_QUALITY_ALPHABETIC},
1349 * {@link #PASSWORD_QUALITY_ALPHANUMERIC}, or {@link #PASSWORD_QUALITY_COMPLEX} with
1350 * {@link #setPasswordQuality}.
1351 * <p>
1352 * The calling device admin must have requested
1353 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1354 * not, a security exception will be thrown.
1355 * <p>
1356 * This method can be called on the {@link DevicePolicyManager} instance returned by
1357 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1358 * profile.
Esteban Talaverac1c83592016-02-17 17:56:15 +00001359 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08001360 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001361 * @param length The new desired minimum password length. A value of 0 means there is no
1362 * restriction.
1363 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1364 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Dianne Hackbornd6847842010-01-12 18:14:19 -08001365 */
Robin Lee25e26452015-06-02 09:56:29 -07001366 public void setPasswordMinimumLength(@NonNull ComponentName admin, int length) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001367 if (mService != null) {
1368 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001369 mService.setPasswordMinimumLength(admin, length, mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001370 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001371 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08001372 }
1373 }
1374 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001375
Dianne Hackbornd6847842010-01-12 18:14:19 -08001376 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001377 * Retrieve the current minimum password length for a particular admin or all admins that set
1378 * retrictions on this user and its participating profiles. Restrictions on profiles that have
1379 * a separate challenge are not taken into account.
1380 *
1381 * <p>This method can be called on the {@link DevicePolicyManager} instance
1382 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1383 * restrictions on the parent profile.
1384 *
Jessica Hummel91da58d2014-04-10 17:39:43 +01001385 * user and its profiles or a particular one.
Robin Lee25e26452015-06-02 09:56:29 -07001386 * @param admin The name of the admin component to check, or {@code null} to aggregate
Dianne Hackborn254cb442010-01-27 19:23:59 -08001387 * all admins.
Dianne Hackbornd6847842010-01-12 18:14:19 -08001388 */
Robin Lee25e26452015-06-02 09:56:29 -07001389 public int getPasswordMinimumLength(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001390 return getPasswordMinimumLength(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001391 }
1392
1393 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001394 public int getPasswordMinimumLength(@Nullable ComponentName admin, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001395 if (mService != null) {
1396 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001397 return mService.getPasswordMinimumLength(admin, userHandle, mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001398 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001399 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08001400 }
1401 }
1402 return 0;
1403 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001404
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001405 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001406 * Called by an application that is administering the device to set the minimum number of upper
1407 * case letters required in the password. After setting this, the user will not be able to enter
1408 * a new password that is not at least as restrictive as what has been set. Note that the
1409 * current password will remain until the user has set a new one, so the change does not take
1410 * place immediately. To prompt the user for a new password, use
1411 * {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after
1412 * setting this value. This constraint is only imposed if the administrator has also requested
1413 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 0.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001414 * <p>
1415 * The calling device admin must have requested
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001416 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1417 * not, a security exception will be thrown.
1418 * <p>
1419 * This method can be called on the {@link DevicePolicyManager} instance returned by
1420 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1421 * profile.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001422 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001423 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1424 * @param length The new desired minimum number of upper case letters required in the password.
1425 * A value of 0 means there is no restriction.
1426 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1427 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001428 */
Robin Lee25e26452015-06-02 09:56:29 -07001429 public void setPasswordMinimumUpperCase(@NonNull ComponentName admin, int length) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001430 if (mService != null) {
1431 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001432 mService.setPasswordMinimumUpperCase(admin, length, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001433 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001434 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001435 }
1436 }
1437 }
1438
1439 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001440 * Retrieve the current number of upper case letters required in the password
1441 * for a particular admin or all admins that set retrictions on this user and
1442 * its participating profiles. Restrictions on profiles that have a separate challenge
1443 * are not taken into account.
Jessica Hummel91da58d2014-04-10 17:39:43 +01001444 * This is the same value as set by
Esteban Talaverac1c83592016-02-17 17:56:15 +00001445 * {@link #setPasswordMinimumUpperCase(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001446 * and only applies when the password quality is
1447 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001448 *
Esteban Talaverac1c83592016-02-17 17:56:15 +00001449 * <p>This method can be called on the {@link DevicePolicyManager} instance
1450 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1451 * restrictions on the parent profile.
1452 *
Robin Lee25e26452015-06-02 09:56:29 -07001453 * @param admin The name of the admin component to check, or {@code null} to
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001454 * aggregate all admins.
1455 * @return The minimum number of upper case letters required in the
1456 * password.
1457 */
Robin Lee25e26452015-06-02 09:56:29 -07001458 public int getPasswordMinimumUpperCase(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001459 return getPasswordMinimumUpperCase(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001460 }
1461
1462 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001463 public int getPasswordMinimumUpperCase(@Nullable ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001464 if (mService != null) {
1465 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001466 return mService.getPasswordMinimumUpperCase(admin, userHandle, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001467 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001468 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001469 }
1470 }
1471 return 0;
1472 }
1473
1474 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001475 * Called by an application that is administering the device to set the minimum number of lower
1476 * case letters required in the password. After setting this, the user will not be able to enter
1477 * a new password that is not at least as restrictive as what has been set. Note that the
1478 * current password will remain until the user has set a new one, so the change does not take
1479 * place immediately. To prompt the user for a new password, use
1480 * {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after
1481 * setting this value. This constraint is only imposed if the administrator has also requested
1482 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 0.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001483 * <p>
1484 * The calling device admin must have requested
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001485 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1486 * not, a security exception will be thrown.
1487 * <p>
1488 * This method can be called on the {@link DevicePolicyManager} instance returned by
1489 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1490 * profile.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001491 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001492 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1493 * @param length The new desired minimum number of lower case letters required in the password.
1494 * A value of 0 means there is no restriction.
1495 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1496 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001497 */
Robin Lee25e26452015-06-02 09:56:29 -07001498 public void setPasswordMinimumLowerCase(@NonNull ComponentName admin, int length) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001499 if (mService != null) {
1500 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001501 mService.setPasswordMinimumLowerCase(admin, length, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001502 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001503 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001504 }
1505 }
1506 }
1507
1508 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001509 * Retrieve the current number of lower case letters required in the password
1510 * for a particular admin or all admins that set retrictions on this user
1511 * and its participating profiles. Restrictions on profiles that have
1512 * a separate challenge are not taken into account.
Jessica Hummel91da58d2014-04-10 17:39:43 +01001513 * This is the same value as set by
Esteban Talaverac1c83592016-02-17 17:56:15 +00001514 * {@link #setPasswordMinimumLowerCase(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001515 * and only applies when the password quality is
1516 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001517 *
Esteban Talaverac1c83592016-02-17 17:56:15 +00001518 * <p>This method can be called on the {@link DevicePolicyManager} instance
1519 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1520 * restrictions on the parent profile.
1521 *
Robin Lee25e26452015-06-02 09:56:29 -07001522 * @param admin The name of the admin component to check, or {@code null} to
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001523 * aggregate all admins.
1524 * @return The minimum number of lower case letters required in the
1525 * password.
1526 */
Robin Lee25e26452015-06-02 09:56:29 -07001527 public int getPasswordMinimumLowerCase(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001528 return getPasswordMinimumLowerCase(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001529 }
1530
1531 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001532 public int getPasswordMinimumLowerCase(@Nullable ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001533 if (mService != null) {
1534 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001535 return mService.getPasswordMinimumLowerCase(admin, userHandle, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001536 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001537 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001538 }
1539 }
1540 return 0;
1541 }
1542
1543 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001544 * Called by an application that is administering the device to set the minimum number of
1545 * letters required in the password. After setting this, the user will not be able to enter a
1546 * new password that is not at least as restrictive as what has been set. Note that the current
1547 * password will remain until the user has set a new one, so the change does not take place
1548 * immediately. To prompt the user for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or
1549 * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is
1550 * only imposed if the administrator has also requested {@link #PASSWORD_QUALITY_COMPLEX} with
1551 * {@link #setPasswordQuality}. The default value is 1.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001552 * <p>
1553 * The calling device admin must have requested
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001554 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1555 * not, a security exception will be thrown.
1556 * <p>
1557 * This method can be called on the {@link DevicePolicyManager} instance returned by
1558 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1559 * profile.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001560 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001561 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1562 * @param length The new desired minimum number of letters required in the password. A value of
1563 * 0 means there is no restriction.
1564 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1565 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001566 */
Robin Lee25e26452015-06-02 09:56:29 -07001567 public void setPasswordMinimumLetters(@NonNull ComponentName admin, int length) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001568 if (mService != null) {
1569 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001570 mService.setPasswordMinimumLetters(admin, length, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001571 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001572 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001573 }
1574 }
1575 }
1576
1577 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001578 * Retrieve the current number of letters required in the password
1579 * for a particular admin or all admins that set retrictions on this user
1580 * and its participating profiles. Restrictions on profiles that have
1581 * a separate challenge are not taken into account.
1582 * This is the same value as set by
1583 * {@link #setPasswordMinimumLetters(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001584 * and only applies when the password quality is
1585 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001586 *
Esteban Talaverac1c83592016-02-17 17:56:15 +00001587 * <p>This method can be called on the {@link DevicePolicyManager} instance
1588 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1589 * restrictions on the parent profile.
1590 *
Robin Lee25e26452015-06-02 09:56:29 -07001591 * @param admin The name of the admin component to check, or {@code null} to
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001592 * aggregate all admins.
1593 * @return The minimum number of letters required in the password.
1594 */
Robin Lee25e26452015-06-02 09:56:29 -07001595 public int getPasswordMinimumLetters(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001596 return getPasswordMinimumLetters(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001597 }
1598
1599 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001600 public int getPasswordMinimumLetters(@Nullable ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001601 if (mService != null) {
1602 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001603 return mService.getPasswordMinimumLetters(admin, userHandle, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001604 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001605 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001606 }
1607 }
1608 return 0;
1609 }
1610
1611 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001612 * Called by an application that is administering the device to set the minimum number of
1613 * numerical digits required in the password. After setting this, the user will not be able to
1614 * enter a new password that is not at least as restrictive as what has been set. Note that the
1615 * current password will remain until the user has set a new one, so the change does not take
1616 * place immediately. To prompt the user for a new password, use
1617 * {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after
1618 * setting this value. This constraint is only imposed if the administrator has also requested
1619 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 1.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001620 * <p>
1621 * The calling device admin must have requested
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001622 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1623 * not, a security exception will be thrown.
1624 * <p>
1625 * This method can be called on the {@link DevicePolicyManager} instance returned by
1626 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1627 * profile.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001628 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001629 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1630 * @param length The new desired minimum number of numerical digits required in the password. A
1631 * value of 0 means there is no restriction.
1632 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1633 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001634 */
Robin Lee25e26452015-06-02 09:56:29 -07001635 public void setPasswordMinimumNumeric(@NonNull ComponentName admin, int length) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001636 if (mService != null) {
1637 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001638 mService.setPasswordMinimumNumeric(admin, length, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001639 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001640 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001641 }
1642 }
1643 }
1644
1645 /**
1646 * Retrieve the current number of numerical digits required in the password
Esteban Talaverac1c83592016-02-17 17:56:15 +00001647 * for a particular admin or all admins that set retrictions on this user
1648 * and its participating profiles. Restrictions on profiles that have
1649 * a separate challenge are not taken into account.
Jessica Hummel91da58d2014-04-10 17:39:43 +01001650 * This is the same value as set by
Esteban Talaverac1c83592016-02-17 17:56:15 +00001651 * {@link #setPasswordMinimumNumeric(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001652 * and only applies when the password quality is
1653 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001654 *
Esteban Talaverac1c83592016-02-17 17:56:15 +00001655 * <p>This method can be called on the {@link DevicePolicyManager} instance
1656 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1657 * restrictions on the parent profile.
1658 *
Robin Lee25e26452015-06-02 09:56:29 -07001659 * @param admin The name of the admin component to check, or {@code null} to
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001660 * aggregate all admins.
1661 * @return The minimum number of numerical digits required in the password.
1662 */
Robin Lee25e26452015-06-02 09:56:29 -07001663 public int getPasswordMinimumNumeric(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001664 return getPasswordMinimumNumeric(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001665 }
1666
1667 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001668 public int getPasswordMinimumNumeric(@Nullable ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001669 if (mService != null) {
1670 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001671 return mService.getPasswordMinimumNumeric(admin, userHandle, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001672 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001673 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001674 }
1675 }
1676 return 0;
1677 }
1678
1679 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001680 * Called by an application that is administering the device to set the minimum number of
1681 * symbols required in the password. After setting this, the user will not be able to enter a
1682 * new password that is not at least as restrictive as what has been set. Note that the current
1683 * password will remain until the user has set a new one, so the change does not take place
1684 * immediately. To prompt the user for a new password, use {@link #ACTION_SET_NEW_PASSWORD} or
1685 * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is
1686 * only imposed if the administrator has also requested {@link #PASSWORD_QUALITY_COMPLEX} with
1687 * {@link #setPasswordQuality}. The default value is 1.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001688 * <p>
1689 * The calling device admin must have requested
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001690 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1691 * not, a security exception will be thrown.
1692 * <p>
1693 * This method can be called on the {@link DevicePolicyManager} instance returned by
1694 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1695 * profile.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001696 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001697 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1698 * @param length The new desired minimum number of symbols required in the password. A value of
1699 * 0 means there is no restriction.
1700 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1701 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001702 */
Robin Lee25e26452015-06-02 09:56:29 -07001703 public void setPasswordMinimumSymbols(@NonNull ComponentName admin, int length) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001704 if (mService != null) {
1705 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001706 mService.setPasswordMinimumSymbols(admin, length, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001707 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001708 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001709 }
1710 }
1711 }
1712
1713 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001714 * Retrieve the current number of symbols required in the password
1715 * for a particular admin or all admins that set retrictions on this user
1716 * and its participating profiles. Restrictions on profiles that have
1717 * a separate challenge are not taken into account. This is the same value as
1718 * set by {@link #setPasswordMinimumSymbols(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001719 * and only applies when the password quality is
1720 * {@link #PASSWORD_QUALITY_COMPLEX}.
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001721 *
Esteban Talaverac1c83592016-02-17 17:56:15 +00001722 * <p>This method can be called on the {@link DevicePolicyManager} instance
1723 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1724 * restrictions on the parent profile.
1725 *
Robin Lee25e26452015-06-02 09:56:29 -07001726 * @param admin The name of the admin component to check, or {@code null} to
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001727 * aggregate all admins.
1728 * @return The minimum number of symbols required in the password.
1729 */
Robin Lee25e26452015-06-02 09:56:29 -07001730 public int getPasswordMinimumSymbols(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001731 return getPasswordMinimumSymbols(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001732 }
1733
1734 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001735 public int getPasswordMinimumSymbols(@Nullable ComponentName admin, int userHandle) {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001736 if (mService != null) {
1737 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001738 return mService.getPasswordMinimumSymbols(admin, userHandle, mParentInstance);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001739 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001740 throw e.rethrowFromSystemServer();
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001741 }
1742 }
1743 return 0;
1744 }
1745
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001746 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001747 * Called by an application that is administering the device to set the minimum number of
1748 * non-letter characters (numerical digits or symbols) required in the password. After setting
1749 * this, the user will not be able to enter a new password that is not at least as restrictive
1750 * as what has been set. Note that the current password will remain until the user has set a new
1751 * one, so the change does not take place immediately. To prompt the user for a new password,
1752 * use {@link #ACTION_SET_NEW_PASSWORD} or {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after
1753 * setting this value. This constraint is only imposed if the administrator has also requested
1754 * {@link #PASSWORD_QUALITY_COMPLEX} with {@link #setPasswordQuality}. The default value is 0.
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001755 * <p>
1756 * The calling device admin must have requested
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001757 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1758 * not, a security exception will be thrown.
1759 * <p>
1760 * This method can be called on the {@link DevicePolicyManager} instance returned by
1761 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1762 * profile.
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001763 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001764 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1765 * @param length The new desired minimum number of letters required in the password. A value of
1766 * 0 means there is no restriction.
1767 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1768 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001769 */
Robin Lee25e26452015-06-02 09:56:29 -07001770 public void setPasswordMinimumNonLetter(@NonNull ComponentName admin, int length) {
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001771 if (mService != null) {
1772 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001773 mService.setPasswordMinimumNonLetter(admin, length, mParentInstance);
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001774 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001775 throw e.rethrowFromSystemServer();
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001776 }
1777 }
1778 }
1779
1780 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001781 * Retrieve the current number of non-letter characters required in the password
1782 * for a particular admin or all admins that set retrictions on this user
1783 * and its participating profiles. Restrictions on profiles that have
1784 * a separate challenge are not taken into account.
Jessica Hummel91da58d2014-04-10 17:39:43 +01001785 * This is the same value as set by
Esteban Talaverac1c83592016-02-17 17:56:15 +00001786 * {@link #setPasswordMinimumNonLetter(ComponentName, int)}
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001787 * and only applies when the password quality is
1788 * {@link #PASSWORD_QUALITY_COMPLEX}.
1789 *
Esteban Talaverac1c83592016-02-17 17:56:15 +00001790 * <p>This method can be called on the {@link DevicePolicyManager} instance
1791 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1792 * restrictions on the parent profile.
1793 *
Robin Lee25e26452015-06-02 09:56:29 -07001794 * @param admin The name of the admin component to check, or {@code null} to
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001795 * aggregate all admins.
1796 * @return The minimum number of letters required in the password.
1797 */
Robin Lee25e26452015-06-02 09:56:29 -07001798 public int getPasswordMinimumNonLetter(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001799 return getPasswordMinimumNonLetter(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001800 }
1801
1802 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001803 public int getPasswordMinimumNonLetter(@Nullable ComponentName admin, int userHandle) {
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001804 if (mService != null) {
1805 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001806 return mService.getPasswordMinimumNonLetter(admin, userHandle, mParentInstance);
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001807 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001808 throw e.rethrowFromSystemServer();
Konstantin Lopyrevc8577402010-06-04 17:15:02 -07001809 }
1810 }
1811 return 0;
1812 }
1813
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001814 /**
1815 * Called by an application that is administering the device to set the length of the password
1816 * history. After setting this, the user will not be able to enter a new password that is the
1817 * same as any password in the history. Note that the current password will remain until the
1818 * user has set a new one, so the change does not take place immediately. To prompt the user for
1819 * a new password, use {@link #ACTION_SET_NEW_PASSWORD} or
1820 * {@link #ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} after setting this value. This constraint is
1821 * only imposed if the administrator has also requested either {@link #PASSWORD_QUALITY_NUMERIC}
1822 * , {@link #PASSWORD_QUALITY_NUMERIC_COMPLEX} {@link #PASSWORD_QUALITY_ALPHABETIC}, or
1823 * {@link #PASSWORD_QUALITY_ALPHANUMERIC} with {@link #setPasswordQuality}.
1824 * <p>
1825 * The calling device admin must have requested
1826 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1827 * not, a security exception will be thrown.
1828 * <p>
1829 * This method can be called on the {@link DevicePolicyManager} instance returned by
1830 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1831 * profile.
1832 *
1833 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
1834 * @param length The new desired length of password history. A value of 0 means there is no
1835 * restriction.
1836 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1837 * does not use {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
1838 */
Robin Lee25e26452015-06-02 09:56:29 -07001839 public void setPasswordHistoryLength(@NonNull ComponentName admin, int length) {
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001840 if (mService != null) {
1841 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001842 mService.setPasswordHistoryLength(admin, length, mParentInstance);
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001843 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001844 throw e.rethrowFromSystemServer();
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001845 }
1846 }
1847 }
1848
1849 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001850 * Called by a device admin to set the password expiration timeout. Calling this method will
1851 * restart the countdown for password expiration for the given admin, as will changing the
1852 * device password (for all admins).
1853 * <p>
1854 * The provided timeout is the time delta in ms and will be added to the current time. For
1855 * example, to have the password expire 5 days from now, timeout would be 5 * 86400 * 1000 =
1856 * 432000000 ms for timeout.
1857 * <p>
1858 * To disable password expiration, a value of 0 may be used for timeout.
1859 * <p>
1860 * The calling device admin must have requested
1861 * {@link DeviceAdminInfo#USES_POLICY_EXPIRE_PASSWORD} to be able to call this method; if it has
1862 * not, a security exception will be thrown.
1863 * <p>
1864 * Note that setting the password will automatically reset the expiration time for all active
1865 * admins. Active admins do not need to explicitly call this method in that case.
1866 * <p>
1867 * This method can be called on the {@link DevicePolicyManager} instance returned by
1868 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
1869 * profile.
Esteban Talaverac1c83592016-02-17 17:56:15 +00001870 *
Jim Millera4e28d12010-11-08 16:15:47 -08001871 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001872 * @param timeout The limit (in ms) that a password can remain in effect. A value of 0 means
1873 * there is no restriction (unlimited).
1874 * @throws SecurityException if {@code admin} is not an active administrator or {@code admin}
1875 * does not use {@link DeviceAdminInfo#USES_POLICY_EXPIRE_PASSWORD}
Jim Millera4e28d12010-11-08 16:15:47 -08001876 */
Robin Lee25e26452015-06-02 09:56:29 -07001877 public void setPasswordExpirationTimeout(@NonNull ComponentName admin, long timeout) {
Jim Millera4e28d12010-11-08 16:15:47 -08001878 if (mService != null) {
1879 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001880 mService.setPasswordExpirationTimeout(admin, timeout, mParentInstance);
Jim Millera4e28d12010-11-08 16:15:47 -08001881 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001882 throw e.rethrowFromSystemServer();
Jim Millera4e28d12010-11-08 16:15:47 -08001883 }
1884 }
1885 }
1886
1887 /**
Jim Miller6b857682011-02-16 16:27:41 -08001888 * Get the password expiration timeout for the given admin. The expiration timeout is the
1889 * recurring expiration timeout provided in the call to
1890 * {@link #setPasswordExpirationTimeout(ComponentName, long)} for the given admin or the
Esteban Talaverac1c83592016-02-17 17:56:15 +00001891 * aggregate of all participating policy administrators if {@code admin} is null. Admins that
1892 * have set restrictions on profiles that have a separate challenge are not taken into account.
1893 *
1894 * <p>This method can be called on the {@link DevicePolicyManager} instance
1895 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1896 * restrictions on the parent profile.
Jim Millera4e28d12010-11-08 16:15:47 -08001897 *
Robin Lee25e26452015-06-02 09:56:29 -07001898 * @param admin The name of the admin component to check, or {@code null} to aggregate all admins.
Jim Millera4e28d12010-11-08 16:15:47 -08001899 * @return The timeout for the given admin or the minimum of all timeouts
1900 */
Robin Lee25e26452015-06-02 09:56:29 -07001901 public long getPasswordExpirationTimeout(@Nullable ComponentName admin) {
Jim Millera4e28d12010-11-08 16:15:47 -08001902 if (mService != null) {
1903 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001904 return mService.getPasswordExpirationTimeout(admin, myUserId(), mParentInstance);
Jim Millera4e28d12010-11-08 16:15:47 -08001905 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001906 throw e.rethrowFromSystemServer();
Jim Millera4e28d12010-11-08 16:15:47 -08001907 }
1908 }
1909 return 0;
1910 }
1911
1912 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001913 * Get the current password expiration time for a particular admin or all admins that set
1914 * retrictions on this user and its participating profiles. Restrictions on profiles that have
1915 * a separate challenge are not taken into account. If admin is {@code null}, then a composite
1916 * of all expiration times is returned - which will be the minimum of all of them.
1917 *
1918 * <p>This method can be called on the {@link DevicePolicyManager} instance
1919 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1920 * the password expiration for the parent profile.
Jim Millera4e28d12010-11-08 16:15:47 -08001921 *
Robin Lee25e26452015-06-02 09:56:29 -07001922 * @param admin The name of the admin component to check, or {@code null} to aggregate all admins.
Esteban Talaverac1c83592016-02-17 17:56:15 +00001923 * @return The password expiration time, in milliseconds since epoch.
Jim Millera4e28d12010-11-08 16:15:47 -08001924 */
Robin Lee25e26452015-06-02 09:56:29 -07001925 public long getPasswordExpiration(@Nullable ComponentName admin) {
Jim Millera4e28d12010-11-08 16:15:47 -08001926 if (mService != null) {
1927 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001928 return mService.getPasswordExpiration(admin, myUserId(), mParentInstance);
Jim Millera4e28d12010-11-08 16:15:47 -08001929 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001930 throw e.rethrowFromSystemServer();
Jim Millera4e28d12010-11-08 16:15:47 -08001931 }
1932 }
1933 return 0;
1934 }
1935
1936 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00001937 * Retrieve the current password history length for a particular admin or all admins that
1938 * set retrictions on this user and its participating profiles. Restrictions on profiles that
1939 * have a separate challenge are not taken into account.
1940 *
1941 * <p>This method can be called on the {@link DevicePolicyManager} instance
1942 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
1943 * restrictions on the parent profile.
1944 *
Robin Lee25e26452015-06-02 09:56:29 -07001945 * @param admin The name of the admin component to check, or {@code null} to aggregate
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001946 * all admins.
1947 * @return The length of the password history
1948 */
Robin Lee25e26452015-06-02 09:56:29 -07001949 public int getPasswordHistoryLength(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07001950 return getPasswordHistoryLength(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001951 }
1952
1953 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07001954 public int getPasswordHistoryLength(@Nullable ComponentName admin, int userHandle) {
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001955 if (mService != null) {
1956 try {
Esteban Talavera62399912016-01-11 15:37:55 +00001957 return mService.getPasswordHistoryLength(admin, userHandle, mParentInstance);
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001958 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001959 throw e.rethrowFromSystemServer();
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001960 }
1961 }
1962 return 0;
1963 }
1964
Dianne Hackbornd6847842010-01-12 18:14:19 -08001965 /**
Dianne Hackborn254cb442010-01-27 19:23:59 -08001966 * Return the maximum password length that the device supports for a
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001967 * particular password quality.
Dianne Hackborn364f6e32010-01-29 17:38:20 -08001968 * @param quality The quality being interrogated.
Dianne Hackborn254cb442010-01-27 19:23:59 -08001969 * @return Returns the maximum length that the user can enter.
1970 */
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001971 public int getPasswordMaximumLength(int quality) {
Dianne Hackborn254cb442010-01-27 19:23:59 -08001972 // Kind-of arbitrary.
1973 return 16;
1974 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07001975
Dianne Hackborn254cb442010-01-27 19:23:59 -08001976 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001977 * Determine whether the current password the user has set is sufficient to meet the policy
1978 * requirements (e.g. quality, minimum length) that have been requested by the admins of this
1979 * user and its participating profiles. Restrictions on profiles that have a separate challenge
1980 * are not taken into account.
1981 * <p>
1982 * The calling device admin must have requested
1983 * {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD} to be able to call this method; if it has
1984 * not, a security exception will be thrown.
1985 * <p>
1986 * This method can be called on the {@link DevicePolicyManager} instance returned by
1987 * {@link #getParentProfileInstance(ComponentName)} in order to determine if the password set on
1988 * the parent profile is sufficient.
Esteban Talaverac1c83592016-02-17 17:56:15 +00001989 *
Jessica Hummel91da58d2014-04-10 17:39:43 +01001990 * @return Returns true if the password meets the current requirements, else false.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07001991 * @throws SecurityException if the calling application does not own an active administrator
1992 * that uses {@link DeviceAdminInfo#USES_POLICY_LIMIT_PASSWORD}
Dianne Hackbornd6847842010-01-12 18:14:19 -08001993 */
Dianne Hackborndf83afa2010-01-20 13:37:26 -08001994 public boolean isActivePasswordSufficient() {
Dianne Hackbornd6847842010-01-12 18:14:19 -08001995 if (mService != null) {
1996 try {
Clara Bayarri3e826ef2015-12-14 17:51:22 +00001997 return mService.isActivePasswordSufficient(myUserId(), mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08001998 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07001999 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08002000 }
2001 }
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002002 return false;
Dianne Hackbornd6847842010-01-12 18:14:19 -08002003 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002004
Dianne Hackbornd6847842010-01-12 18:14:19 -08002005 /**
Clara Bayarrid7693912016-01-22 17:26:31 +00002006 * Determine whether the current profile password the user has set is sufficient
Esteban Talaverac1c83592016-02-17 17:56:15 +00002007 * to meet the policy requirements (e.g. quality, minimum length) that have been
Clara Bayarrid7693912016-01-22 17:26:31 +00002008 * requested by the admins of the parent user and its profiles.
2009 *
2010 * @param userHandle the userId of the profile to check the password for.
2011 * @return Returns true if the password would meet the current requirements, else false.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002012 * @throws SecurityException if {@code userHandle} is not a managed profile.
Clara Bayarrid7693912016-01-22 17:26:31 +00002013 * @hide
2014 */
2015 public boolean isProfileActivePasswordSufficientForParent(int userHandle) {
2016 if (mService != null) {
2017 try {
2018 return mService.isProfileActivePasswordSufficientForParent(userHandle);
2019 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002020 throw e.rethrowFromSystemServer();
Clara Bayarrid7693912016-01-22 17:26:31 +00002021 }
2022 }
2023 return false;
2024 }
2025
2026 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002027 * Retrieve the number of times the user has failed at entering a password since that last
2028 * successful password entry.
2029 * <p>
2030 * This method can be called on the {@link DevicePolicyManager} instance returned by
2031 * {@link #getParentProfileInstance(ComponentName)} in order to retrieve the number of failed
2032 * password attemts for the parent user.
2033 * <p>
2034 * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN}
2035 * to be able to call this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002036 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002037 * @return The number of times user has entered an incorrect password since the last correct
2038 * password entry.
2039 * @throws SecurityException if the calling application does not own an active administrator
2040 * that uses {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN}
Dianne Hackbornd6847842010-01-12 18:14:19 -08002041 */
2042 public int getCurrentFailedPasswordAttempts() {
Clara Bayarri51e41ad2016-02-11 17:48:53 +00002043 return getCurrentFailedPasswordAttempts(myUserId());
2044 }
2045
2046 /**
2047 * Retrieve the number of times the given user has failed at entering a
2048 * password since that last successful password entry.
2049 *
2050 * <p>The calling device admin must have requested
2051 * {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} to be able to call this method; if it has
2052 * not and it is not the system uid, a security exception will be thrown.
2053 *
2054 * @hide
2055 */
2056 public int getCurrentFailedPasswordAttempts(int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08002057 if (mService != null) {
2058 try {
Clara Bayarri51e41ad2016-02-11 17:48:53 +00002059 return mService.getCurrentFailedPasswordAttempts(userHandle, mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08002060 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002061 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08002062 }
2063 }
2064 return -1;
2065 }
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002066
2067 /**
Craig Lafayette4e401fa2015-05-07 10:24:02 -04002068 * Queries whether {@link #RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT} flag is set.
Andrei Kapishnikov4eb6a362015-04-02 15:21:20 -04002069 *
Craig Lafayette4e401fa2015-05-07 10:24:02 -04002070 * @return true if RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT flag is set.
Andrei Kapishnikov4eb6a362015-04-02 15:21:20 -04002071 * @hide
2072 */
2073 public boolean getDoNotAskCredentialsOnBoot() {
2074 if (mService != null) {
2075 try {
2076 return mService.getDoNotAskCredentialsOnBoot();
2077 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002078 throw e.rethrowFromSystemServer();
Andrei Kapishnikov4eb6a362015-04-02 15:21:20 -04002079 }
2080 }
2081 return false;
2082 }
2083
2084 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002085 * Setting this to a value greater than zero enables a built-in policy that will perform a
2086 * device or profile wipe after too many incorrect device-unlock passwords have been entered.
2087 * This built-in policy combines watching for failed passwords and wiping the device, and
2088 * requires that you request both {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} and
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08002089 * {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA}}.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002090 * <p>
2091 * To implement any other policy (e.g. wiping data for a particular application only, erasing or
2092 * revoking credentials, or reporting the failure to a server), you should implement
2093 * {@link DeviceAdminReceiver#onPasswordFailed(Context, android.content.Intent)} instead. Do not
2094 * use this API, because if the maximum count is reached, the device or profile will be wiped
2095 * immediately, and your callback will not be invoked.
2096 * <p>
2097 * This method can be called on the {@link DevicePolicyManager} instance returned by
2098 * {@link #getParentProfileInstance(ComponentName)} in order to set a value on the parent
2099 * profile.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002100 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08002101 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002102 * @param num The number of failed password attempts at which point the device or profile will
2103 * be wiped.
2104 * @throws SecurityException if {@code admin} is not an active administrator or does not use
2105 * both {@link DeviceAdminInfo#USES_POLICY_WATCH_LOGIN} and
2106 * {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA}.
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08002107 */
Robin Lee25e26452015-06-02 09:56:29 -07002108 public void setMaximumFailedPasswordsForWipe(@NonNull ComponentName admin, int num) {
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08002109 if (mService != null) {
2110 try {
Esteban Talavera62399912016-01-11 15:37:55 +00002111 mService.setMaximumFailedPasswordsForWipe(admin, num, mParentInstance);
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08002112 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002113 throw e.rethrowFromSystemServer();
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08002114 }
2115 }
2116 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002117
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08002118 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00002119 * Retrieve the current maximum number of login attempts that are allowed before the device
2120 * or profile is wiped, for a particular admin or all admins that set retrictions on this user
2121 * and its participating profiles. Restrictions on profiles that have a separate challenge are
2122 * not taken into account.
2123 *
2124 * <p>This method can be called on the {@link DevicePolicyManager} instance
2125 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
2126 * the value for the parent profile.
2127 *
Robin Lee25e26452015-06-02 09:56:29 -07002128 * @param admin The name of the admin component to check, or {@code null} to aggregate
Dianne Hackborn254cb442010-01-27 19:23:59 -08002129 * all admins.
2130 */
Robin Lee25e26452015-06-02 09:56:29 -07002131 public int getMaximumFailedPasswordsForWipe(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07002132 return getMaximumFailedPasswordsForWipe(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07002133 }
2134
2135 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07002136 public int getMaximumFailedPasswordsForWipe(@Nullable ComponentName admin, int userHandle) {
Dianne Hackborn254cb442010-01-27 19:23:59 -08002137 if (mService != null) {
2138 try {
Esteban Talavera62399912016-01-11 15:37:55 +00002139 return mService.getMaximumFailedPasswordsForWipe(
2140 admin, userHandle, mParentInstance);
Dianne Hackborn254cb442010-01-27 19:23:59 -08002141 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002142 throw e.rethrowFromSystemServer();
Dianne Hackborn254cb442010-01-27 19:23:59 -08002143 }
2144 }
2145 return 0;
2146 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002147
Dianne Hackborn254cb442010-01-27 19:23:59 -08002148 /**
Amith Yamasani3a3d2122014-10-29 11:41:31 -07002149 * Returns the profile with the smallest maximum failed passwords for wipe,
2150 * for the given user. So for primary user, it might return the primary or
2151 * a managed profile. For a secondary user, it would be the same as the
2152 * user passed in.
2153 * @hide Used only by Keyguard
2154 */
2155 public int getProfileWithMinimumFailedPasswordsForWipe(int userHandle) {
2156 if (mService != null) {
2157 try {
Esteban Talavera62399912016-01-11 15:37:55 +00002158 return mService.getProfileWithMinimumFailedPasswordsForWipe(
2159 userHandle, mParentInstance);
Amith Yamasani3a3d2122014-10-29 11:41:31 -07002160 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002161 throw e.rethrowFromSystemServer();
Amith Yamasani3a3d2122014-10-29 11:41:31 -07002162 }
2163 }
2164 return UserHandle.USER_NULL;
2165 }
2166
2167 /**
Dianne Hackborn87bba1e2010-02-26 17:25:54 -08002168 * Flag for {@link #resetPassword}: don't allow other admins to change
2169 * the password again until the user has entered it.
2170 */
2171 public static final int RESET_PASSWORD_REQUIRE_ENTRY = 0x0001;
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002172
Dianne Hackborn87bba1e2010-02-26 17:25:54 -08002173 /**
Andrei Kapishnikov4eb6a362015-04-02 15:21:20 -04002174 * Flag for {@link #resetPassword}: don't ask for user credentials on device boot.
2175 * If the flag is set, the device can be booted without asking for user password.
2176 * The absence of this flag does not change the current boot requirements. This flag
2177 * can be set by the device owner only. If the app is not the device owner, the flag
2178 * is ignored. Once the flag is set, it cannot be reverted back without resetting the
2179 * device to factory defaults.
2180 */
Craig Lafayette4e401fa2015-05-07 10:24:02 -04002181 public static final int RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT = 0x0002;
Andrei Kapishnikov4eb6a362015-04-02 15:21:20 -04002182
2183 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002184 * Force a new device unlock password (the password needed to access the entire device, not for
2185 * individual accounts) on the user. This takes effect immediately.
2186 * <p>
2187 * Calling this from a managed profile that shares the password with the owner profile will
2188 * throw a security exception.
2189 * <p>
2190 * <em>Note: This API has been limited as of {@link android.os.Build.VERSION_CODES#N} for
Makoto Onuki70f929e2015-11-11 12:40:15 -08002191 * device admins that are not device owner and not profile owner.
2192 * The password can now only be changed if there is currently no password set. Device owner
2193 * and profile owner can still do this.</em>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002194 * <p>
2195 * The given password must be sufficient for the current password quality and length constraints
2196 * as returned by {@link #getPasswordQuality(ComponentName)} and
2197 * {@link #getPasswordMinimumLength(ComponentName)}; if it does not meet these constraints, then
2198 * it will be rejected and false returned. Note that the password may be a stronger quality
2199 * (containing alphanumeric characters when the requested quality is only numeric), in which
2200 * case the currently active quality will be increased to match.
2201 * <p>
2202 * Calling with a null or empty password will clear any existing PIN, pattern or password if the
2203 * current password constraints allow it. <em>Note: This will not
Makoto Onuki70f929e2015-11-11 12:40:15 -08002204 * work in {@link android.os.Build.VERSION_CODES#N} and later for device admins that are not
2205 * device owner and not profile owner. Once set, the password cannot be changed to null or
2206 * empty, except by device owner or profile owner.</em>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002207 * <p>
2208 * The calling device admin must have requested
2209 * {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD} to be able to call this method; if it has
2210 * not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002211 *
Adrian Roosf8f56bc2014-11-20 23:55:34 +01002212 * @param password The new password for the user. Null or empty clears the password.
Andrei Kapishnikov4eb6a362015-04-02 15:21:20 -04002213 * @param flags May be 0 or combination of {@link #RESET_PASSWORD_REQUIRE_ENTRY} and
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002214 * {@link #RESET_PASSWORD_DO_NOT_ASK_CREDENTIALS_ON_BOOT}.
2215 * @return Returns true if the password was applied, or false if it is not acceptable for the
2216 * current constraints or if the user has not been decrypted yet.
2217 * @throws SecurityException if the calling application does not own an active administrator
2218 * that uses {@link DeviceAdminInfo#USES_POLICY_RESET_PASSWORD}
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002219 */
Dianne Hackborn87bba1e2010-02-26 17:25:54 -08002220 public boolean resetPassword(String password, int flags) {
Clara Bayarri3e826ef2015-12-14 17:51:22 +00002221 if (mParentInstance) {
2222 throw new SecurityException("Reset password does not work across profiles.");
2223 }
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002224 if (mService != null) {
2225 try {
Fyodor Kupolovbdc58c62015-01-29 13:24:03 -08002226 return mService.resetPassword(password, flags);
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002227 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002228 throw e.rethrowFromSystemServer();
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002229 }
2230 }
2231 return false;
2232 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002233
Dianne Hackbornd6847842010-01-12 18:14:19 -08002234 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002235 * Called by an application that is administering the device to set the maximum time for user
2236 * activity until the device will lock. This limits the length that the user can set. It takes
2237 * effect immediately.
2238 * <p>
2239 * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK}
2240 * to be able to call this method; if it has not, a security exception will be thrown.
2241 * <p>
2242 * This method can be called on the {@link DevicePolicyManager} instance returned by
2243 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
2244 * profile.
Esteban Talaverac1c83592016-02-17 17:56:15 +00002245 *
Dianne Hackbornef6b22f2010-02-16 20:38:49 -08002246 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002247 * @param timeMs The new desired maximum time to lock in milliseconds. A value of 0 means there
2248 * is no restriction.
2249 * @throws SecurityException if {@code admin} is not an active administrator or it does not use
2250 * {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK}
Dianne Hackbornd6847842010-01-12 18:14:19 -08002251 */
Robin Lee25e26452015-06-02 09:56:29 -07002252 public void setMaximumTimeToLock(@NonNull ComponentName admin, long timeMs) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08002253 if (mService != null) {
2254 try {
Esteban Talavera62399912016-01-11 15:37:55 +00002255 mService.setMaximumTimeToLock(admin, timeMs, mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08002256 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002257 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08002258 }
2259 }
2260 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002261
Dianne Hackbornd6847842010-01-12 18:14:19 -08002262 /**
Esteban Talaverac1c83592016-02-17 17:56:15 +00002263 * Retrieve the current maximum time to unlock for a particular admin or all admins that set
2264 * retrictions on this user and its participating profiles. Restrictions on profiles that have
2265 * a separate challenge are not taken into account.
2266 *
2267 * <p>This method can be called on the {@link DevicePolicyManager} instance
2268 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
2269 * restrictions on the parent profile.
2270 *
Robin Lee25e26452015-06-02 09:56:29 -07002271 * @param admin The name of the admin component to check, or {@code null} to aggregate
Dianne Hackborn254cb442010-01-27 19:23:59 -08002272 * all admins.
Jim Millerd4efaac2014-08-14 18:02:45 -07002273 * @return time in milliseconds for the given admin or the minimum value (strictest) of
Jim Miller76b9b8b2014-08-22 17:04:57 -07002274 * all admins if admin is null. Returns 0 if there are no restrictions.
Dianne Hackbornd6847842010-01-12 18:14:19 -08002275 */
Robin Lee25e26452015-06-02 09:56:29 -07002276 public long getMaximumTimeToLock(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07002277 return getMaximumTimeToLock(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07002278 }
2279
2280 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07002281 public long getMaximumTimeToLock(@Nullable ComponentName admin, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08002282 if (mService != null) {
2283 try {
Esteban Talavera62399912016-01-11 15:37:55 +00002284 return mService.getMaximumTimeToLock(admin, userHandle, mParentInstance);
Dianne Hackbornd6847842010-01-12 18:14:19 -08002285 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002286 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08002287 }
2288 }
2289 return 0;
2290 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002291
Dianne Hackbornd6847842010-01-12 18:14:19 -08002292 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002293 * Make the device lock immediately, as if the lock screen timeout has expired at the point of
2294 * this call.
2295 * <p>
2296 * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK}
2297 * to be able to call this method; if it has not, a security exception will be thrown.
2298 * <p>
2299 * This method can be called on the {@link DevicePolicyManager} instance returned by
2300 * {@link #getParentProfileInstance(ComponentName)} in order to lock the parent profile.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002301 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002302 * @throws SecurityException if the calling application does not own an active administrator
2303 * that uses {@link DeviceAdminInfo#USES_POLICY_FORCE_LOCK}
Dianne Hackbornd6847842010-01-12 18:14:19 -08002304 */
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002305 public void lockNow() {
2306 if (mService != null) {
2307 try {
Esteban Talavera62399912016-01-11 15:37:55 +00002308 mService.lockNow(mParentInstance);
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002309 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002310 throw e.rethrowFromSystemServer();
Dianne Hackborndf83afa2010-01-20 13:37:26 -08002311 }
2312 }
2313 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002314
Dianne Hackbornd6847842010-01-12 18:14:19 -08002315 /**
Dianne Hackborn42499172010-10-15 18:45:07 -07002316 * Flag for {@link #wipeData(int)}: also erase the device's external
Paul Crowleya7e87ac2014-11-18 13:50:19 +00002317 * storage (such as SD cards).
Dianne Hackborn42499172010-10-15 18:45:07 -07002318 */
2319 public static final int WIPE_EXTERNAL_STORAGE = 0x0001;
2320
2321 /**
Paul Crowleya7e87ac2014-11-18 13:50:19 +00002322 * Flag for {@link #wipeData(int)}: also erase the factory reset protection
2323 * data.
2324 *
Paul Crowley2934b262014-12-02 11:21:13 +00002325 * <p>This flag may only be set by device owner admins; if it is set by
2326 * other admins a {@link SecurityException} will be thrown.
Paul Crowleya7e87ac2014-11-18 13:50:19 +00002327 */
2328 public static final int WIPE_RESET_PROTECTION_DATA = 0x0002;
2329
2330 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002331 * Ask the user data be wiped. Wiping the primary user will cause the device to reboot, erasing
2332 * all user data while next booting up.
2333 * <p>
2334 * The calling device admin must have requested {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA} to
2335 * be able to call this method; if it has not, a security exception will be thrown.
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002336 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002337 * @param flags Bit mask of additional options: currently supported flags are
2338 * {@link #WIPE_EXTERNAL_STORAGE} and {@link #WIPE_RESET_PROTECTION_DATA}.
2339 * @throws SecurityException if the calling application does not own an active administrator
2340 * that uses {@link DeviceAdminInfo#USES_POLICY_WIPE_DATA}
Dianne Hackbornd6847842010-01-12 18:14:19 -08002341 */
2342 public void wipeData(int flags) {
2343 if (mService != null) {
2344 try {
Makoto Onuki70f929e2015-11-11 12:40:15 -08002345 mService.wipeData(flags);
Dianne Hackbornd6847842010-01-12 18:14:19 -08002346 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002347 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08002348 }
2349 }
2350 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07002351
Dianne Hackbornd6847842010-01-12 18:14:19 -08002352 /**
Oscar Montemayor69238c62010-08-03 10:51:06 -07002353 * Called by an application that is administering the device to set the
2354 * global proxy and exclusion list.
2355 * <p>
2356 * The calling device admin must have requested
2357 * {@link DeviceAdminInfo#USES_POLICY_SETS_GLOBAL_PROXY} to be able to call
2358 * this method; if it has not, a security exception will be thrown.
2359 * Only the first device admin can set the proxy. If a second admin attempts
2360 * to set the proxy, the {@link ComponentName} of the admin originally setting the
Robin Lee25e26452015-06-02 09:56:29 -07002361 * proxy will be returned. If successful in setting the proxy, {@code null} will
Oscar Montemayor69238c62010-08-03 10:51:06 -07002362 * be returned.
2363 * The method can be called repeatedly by the device admin alrady setting the
2364 * proxy to update the proxy and exclusion list.
2365 *
Robin Lee25e26452015-06-02 09:56:29 -07002366 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Oscar Montemayor69238c62010-08-03 10:51:06 -07002367 * @param proxySpec the global proxy desired. Must be an HTTP Proxy.
2368 * Pass Proxy.NO_PROXY to reset the proxy.
2369 * @param exclusionList a list of domains to be excluded from the global proxy.
Robin Lee25e26452015-06-02 09:56:29 -07002370 * @return {@code null} if the proxy was successfully set, or otherwise a {@link ComponentName}
2371 * of the device admin that sets the proxy.
Andy Stadlerd2672722011-02-16 10:53:33 -08002372 * @hide
Oscar Montemayor69238c62010-08-03 10:51:06 -07002373 */
Robin Lee25e26452015-06-02 09:56:29 -07002374 public ComponentName setGlobalProxy(@NonNull ComponentName admin, Proxy proxySpec,
Oscar Montemayor69238c62010-08-03 10:51:06 -07002375 List<String> exclusionList ) {
2376 if (proxySpec == null) {
2377 throw new NullPointerException();
2378 }
2379 if (mService != null) {
2380 try {
2381 String hostSpec;
2382 String exclSpec;
2383 if (proxySpec.equals(Proxy.NO_PROXY)) {
2384 hostSpec = null;
2385 exclSpec = null;
2386 } else {
2387 if (!proxySpec.type().equals(Proxy.Type.HTTP)) {
2388 throw new IllegalArgumentException();
2389 }
2390 InetSocketAddress sa = (InetSocketAddress)proxySpec.address();
2391 String hostName = sa.getHostName();
2392 int port = sa.getPort();
2393 StringBuilder hostBuilder = new StringBuilder();
2394 hostSpec = hostBuilder.append(hostName)
2395 .append(":").append(Integer.toString(port)).toString();
2396 if (exclusionList == null) {
2397 exclSpec = "";
2398 } else {
2399 StringBuilder listBuilder = new StringBuilder();
2400 boolean firstDomain = true;
2401 for (String exclDomain : exclusionList) {
2402 if (!firstDomain) {
2403 listBuilder = listBuilder.append(",");
2404 } else {
2405 firstDomain = false;
2406 }
2407 listBuilder = listBuilder.append(exclDomain.trim());
2408 }
2409 exclSpec = listBuilder.toString();
2410 }
Yuhao Zheng90704842014-02-28 17:22:45 -08002411 if (android.net.Proxy.validate(hostName, Integer.toString(port), exclSpec)
2412 != android.net.Proxy.PROXY_VALID)
2413 throw new IllegalArgumentException();
Oscar Montemayor69238c62010-08-03 10:51:06 -07002414 }
Fyodor Kupolovbdc58c62015-01-29 13:24:03 -08002415 return mService.setGlobalProxy(admin, hostSpec, exclSpec);
Oscar Montemayor69238c62010-08-03 10:51:06 -07002416 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002417 throw e.rethrowFromSystemServer();
Oscar Montemayor69238c62010-08-03 10:51:06 -07002418 }
2419 }
2420 return null;
2421 }
2422
2423 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002424 * Set a network-independent global HTTP proxy. This is not normally what you want for typical
2425 * HTTP proxies - they are generally network dependent. However if you're doing something
2426 * unusual like general internal filtering this may be useful. On a private network where the
2427 * proxy is not accessible, you may break HTTP using this.
2428 * <p>
2429 * This method requires the caller to be the device owner.
2430 * <p>
2431 * This proxy is only a recommendation and it is possible that some apps will ignore it.
Jason Monk03bc9912014-05-13 09:44:57 -04002432 *
Jason Monk03bc9912014-05-13 09:44:57 -04002433 * @see ProxyInfo
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002434 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2435 * @param proxyInfo The a {@link ProxyInfo} object defining the new global HTTP proxy. A
2436 * {@code null} value will clear the global HTTP proxy.
2437 * @throws SecurityException if {@code admin} is not the device owner.
Jason Monk03bc9912014-05-13 09:44:57 -04002438 */
Robin Lee25e26452015-06-02 09:56:29 -07002439 public void setRecommendedGlobalProxy(@NonNull ComponentName admin, @Nullable ProxyInfo
2440 proxyInfo) {
Jason Monk03bc9912014-05-13 09:44:57 -04002441 if (mService != null) {
2442 try {
2443 mService.setRecommendedGlobalProxy(admin, proxyInfo);
2444 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002445 throw e.rethrowFromSystemServer();
Jason Monk03bc9912014-05-13 09:44:57 -04002446 }
2447 }
2448 }
2449
2450 /**
Oscar Montemayor69238c62010-08-03 10:51:06 -07002451 * Returns the component name setting the global proxy.
Robin Lee25e26452015-06-02 09:56:29 -07002452 * @return ComponentName object of the device admin that set the global proxy, or {@code null}
2453 * if no admin has set the proxy.
Andy Stadlerd2672722011-02-16 10:53:33 -08002454 * @hide
Oscar Montemayor69238c62010-08-03 10:51:06 -07002455 */
2456 public ComponentName getGlobalProxyAdmin() {
2457 if (mService != null) {
2458 try {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07002459 return mService.getGlobalProxyAdmin(myUserId());
Oscar Montemayor69238c62010-08-03 10:51:06 -07002460 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002461 throw e.rethrowFromSystemServer();
Oscar Montemayor69238c62010-08-03 10:51:06 -07002462 }
2463 }
2464 return null;
2465 }
2466
2467 /**
Andy Stadler22dbfda2011-01-17 12:47:31 -08002468 * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002469 * indicating that encryption is not supported.
2470 */
2471 public static final int ENCRYPTION_STATUS_UNSUPPORTED = 0;
2472
2473 /**
Andy Stadler22dbfda2011-01-17 12:47:31 -08002474 * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002475 * indicating that encryption is supported, but is not currently active.
2476 */
2477 public static final int ENCRYPTION_STATUS_INACTIVE = 1;
2478
2479 /**
Robin Lee3795fb02015-02-16 14:17:23 +00002480 * Result code for {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002481 * indicating that encryption is not currently active, but is currently
2482 * being activated. This is only reported by devices that support
2483 * encryption of data and only when the storage is currently
2484 * undergoing a process of becoming encrypted. A device that must reboot and/or wipe data
2485 * to become encrypted will never return this value.
2486 */
Andy Stadler22dbfda2011-01-17 12:47:31 -08002487 public static final int ENCRYPTION_STATUS_ACTIVATING = 2;
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002488
2489 /**
Andy Stadler22dbfda2011-01-17 12:47:31 -08002490 * Result code for {@link #setStorageEncryption} and {@link #getStorageEncryptionStatus}:
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002491 * indicating that encryption is active.
2492 */
Andy Stadler22dbfda2011-01-17 12:47:31 -08002493 public static final int ENCRYPTION_STATUS_ACTIVE = 3;
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002494
2495 /**
Robin Lee3795fb02015-02-16 14:17:23 +00002496 * Result code for {@link #getStorageEncryptionStatus}:
2497 * indicating that encryption is active, but an encryption key has not
2498 * been set by the user.
2499 */
2500 public static final int ENCRYPTION_STATUS_ACTIVE_DEFAULT_KEY = 4;
2501
2502 /**
Makoto Onukid4c9e542016-02-25 18:17:30 -08002503 * Result code for {@link #getStorageEncryptionStatus}:
2504 * indicating that encryption is active and the encryption key is tied to the user.
2505 */
2506 public static final int ENCRYPTION_STATUS_ACTIVE_PER_USER = 5;
2507
2508 /**
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002509 * Activity action: begin the process of encrypting data on the device. This activity should
2510 * be launched after using {@link #setStorageEncryption} to request encryption be activated.
2511 * After resuming from this activity, use {@link #getStorageEncryption}
2512 * to check encryption status. However, on some devices this activity may never return, as
2513 * it may trigger a reboot and in some cases a complete data wipe of the device.
2514 */
2515 @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
2516 public static final String ACTION_START_ENCRYPTION
2517 = "android.app.action.START_ENCRYPTION";
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002518 /**
Jim Millerb8ec4702012-08-31 17:19:10 -07002519 * Widgets are enabled in keyguard
2520 */
Jim Miller48b9b0d2012-09-19 23:16:50 -07002521 public static final int KEYGUARD_DISABLE_FEATURES_NONE = 0;
Jim Millerb8ec4702012-08-31 17:19:10 -07002522
2523 /**
Jim Miller50e62182014-04-23 17:25:00 -07002524 * Disable all keyguard widgets. Has no effect.
Jim Millerb8ec4702012-08-31 17:19:10 -07002525 */
Jim Miller48b9b0d2012-09-19 23:16:50 -07002526 public static final int KEYGUARD_DISABLE_WIDGETS_ALL = 1 << 0;
2527
2528 /**
2529 * Disable the camera on secure keyguard screens (e.g. PIN/Pattern/Password)
2530 */
2531 public static final int KEYGUARD_DISABLE_SECURE_CAMERA = 1 << 1;
2532
2533 /**
Jim Miller50e62182014-04-23 17:25:00 -07002534 * Disable showing all notifications on secure keyguard screens (e.g. PIN/Pattern/Password)
2535 */
2536 public static final int KEYGUARD_DISABLE_SECURE_NOTIFICATIONS = 1 << 2;
2537
2538 /**
2539 * Only allow redacted notifications on secure keyguard screens (e.g. PIN/Pattern/Password)
2540 */
2541 public static final int KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS = 1 << 3;
2542
2543 /**
Adrian Roosa06d5ca2014-07-28 15:14:21 +02002544 * Ignore trust agent state on secure keyguard screens
Jim Miller50e62182014-04-23 17:25:00 -07002545 * (e.g. PIN/Pattern/Password).
2546 */
2547 public static final int KEYGUARD_DISABLE_TRUST_AGENTS = 1 << 4;
2548
2549 /**
Jim Miller06e34502014-07-17 14:46:05 -07002550 * Disable fingerprint sensor on keyguard secure screens (e.g. PIN/Pattern/Password).
2551 */
2552 public static final int KEYGUARD_DISABLE_FINGERPRINT = 1 << 5;
2553
2554 /**
Jim Miller35207742012-11-02 15:33:20 -07002555 * Disable all current and future keyguard customizations.
Jim Miller48b9b0d2012-09-19 23:16:50 -07002556 */
2557 public static final int KEYGUARD_DISABLE_FEATURES_ALL = 0x7fffffff;
Jim Millerb8ec4702012-08-31 17:19:10 -07002558
2559 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002560 * Called by an application that is administering the device to request that the storage system
2561 * be encrypted.
2562 * <p>
2563 * When multiple device administrators attempt to control device encryption, the most secure,
2564 * supported setting will always be used. If any device administrator requests device
2565 * encryption, it will be enabled; Conversely, if a device administrator attempts to disable
2566 * device encryption while another device administrator has enabled it, the call to disable will
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002567 * fail (most commonly returning {@link #ENCRYPTION_STATUS_ACTIVE}).
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002568 * <p>
2569 * This policy controls encryption of the secure (application data) storage area. Data written
2570 * to other storage areas may or may not be encrypted, and this policy does not require or
2571 * control the encryption of any other storage areas. There is one exception: If
2572 * {@link android.os.Environment#isExternalStorageEmulated()} is {@code true}, then the
2573 * directory returned by {@link android.os.Environment#getExternalStorageDirectory()} must be
2574 * written to disk within the encrypted storage area.
2575 * <p>
2576 * Important Note: On some devices, it is possible to encrypt storage without requiring the user
2577 * to create a device PIN or Password. In this case, the storage is encrypted, but the
2578 * encryption key may not be fully secured. For maximum security, the administrator should also
2579 * require (and check for) a pattern, PIN, or password.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002580 *
2581 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2582 * @param encrypt true to request encryption, false to release any previous request
Andy Stadler22dbfda2011-01-17 12:47:31 -08002583 * @return the new request status (for all active admins) - will be one of
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002584 * {@link #ENCRYPTION_STATUS_UNSUPPORTED}, {@link #ENCRYPTION_STATUS_INACTIVE}, or
2585 * {@link #ENCRYPTION_STATUS_ACTIVE}. This is the value of the requests; Use
2586 * {@link #getStorageEncryptionStatus()} to query the actual device state.
2587 * @throws SecurityException if {@code admin} is not an active administrator or does not use
2588 * {@link DeviceAdminInfo#USES_ENCRYPTED_STORAGE}
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002589 */
Robin Lee25e26452015-06-02 09:56:29 -07002590 public int setStorageEncryption(@NonNull ComponentName admin, boolean encrypt) {
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002591 if (mService != null) {
2592 try {
Fyodor Kupolovbdc58c62015-01-29 13:24:03 -08002593 return mService.setStorageEncryption(admin, encrypt);
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002594 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002595 throw e.rethrowFromSystemServer();
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002596 }
2597 }
2598 return ENCRYPTION_STATUS_UNSUPPORTED;
2599 }
2600
2601 /**
2602 * Called by an application that is administering the device to
Andy Stadler22dbfda2011-01-17 12:47:31 -08002603 * determine the requested setting for secure storage.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002604 *
Andy Stadler22dbfda2011-01-17 12:47:31 -08002605 * @param admin Which {@link DeviceAdminReceiver} this request is associated with. If null,
2606 * this will return the requested encryption setting as an aggregate of all active
2607 * administrators.
2608 * @return true if the admin(s) are requesting encryption, false if not.
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002609 */
Robin Lee25e26452015-06-02 09:56:29 -07002610 public boolean getStorageEncryption(@Nullable ComponentName admin) {
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002611 if (mService != null) {
2612 try {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07002613 return mService.getStorageEncryption(admin, myUserId());
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002614 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002615 throw e.rethrowFromSystemServer();
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002616 }
2617 }
Andy Stadler22dbfda2011-01-17 12:47:31 -08002618 return false;
2619 }
2620
2621 /**
2622 * Called by an application that is administering the device to
2623 * determine the current encryption status of the device.
2624 *
2625 * Depending on the returned status code, the caller may proceed in different
2626 * ways. If the result is {@link #ENCRYPTION_STATUS_UNSUPPORTED}, the
2627 * storage system does not support encryption. If the
2628 * result is {@link #ENCRYPTION_STATUS_INACTIVE}, use {@link
2629 * #ACTION_START_ENCRYPTION} to begin the process of encrypting or decrypting the
Robin Lee3795fb02015-02-16 14:17:23 +00002630 * storage. If the result is {@link #ENCRYPTION_STATUS_ACTIVE_DEFAULT_KEY}, the
2631 * storage system has enabled encryption but no password is set so further action
2632 * may be required. If the result is {@link #ENCRYPTION_STATUS_ACTIVATING} or
Andy Stadler22dbfda2011-01-17 12:47:31 -08002633 * {@link #ENCRYPTION_STATUS_ACTIVE}, no further action is required.
2634 *
Robin Lee7e678712014-07-24 16:41:31 +01002635 * @return current status of encryption. The value will be one of
Andy Stadler22dbfda2011-01-17 12:47:31 -08002636 * {@link #ENCRYPTION_STATUS_UNSUPPORTED}, {@link #ENCRYPTION_STATUS_INACTIVE},
Robin Lee3795fb02015-02-16 14:17:23 +00002637 * {@link #ENCRYPTION_STATUS_ACTIVATING}, {@link #ENCRYPTION_STATUS_ACTIVE_DEFAULT_KEY},
2638 * or {@link #ENCRYPTION_STATUS_ACTIVE}.
Andy Stadler22dbfda2011-01-17 12:47:31 -08002639 */
2640 public int getStorageEncryptionStatus() {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07002641 return getStorageEncryptionStatus(myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07002642 }
2643
2644 /** @hide per-user version */
2645 public int getStorageEncryptionStatus(int userHandle) {
Andy Stadler22dbfda2011-01-17 12:47:31 -08002646 if (mService != null) {
2647 try {
Makoto Onukid4c9e542016-02-25 18:17:30 -08002648 return mService.getStorageEncryptionStatus(mContext.getPackageName(), userHandle);
Andy Stadler22dbfda2011-01-17 12:47:31 -08002649 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002650 throw e.rethrowFromSystemServer();
Andy Stadler22dbfda2011-01-17 12:47:31 -08002651 }
2652 }
Andy Stadler7b0f8f02011-01-12 14:59:52 -08002653 return ENCRYPTION_STATUS_UNSUPPORTED;
2654 }
2655
2656 /**
Robin Lee7e678712014-07-24 16:41:31 +01002657 * Installs the given certificate as a user CA.
2658 *
Robin Lee25e26452015-06-02 09:56:29 -07002659 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
2660 * {@code null} if calling from a delegated certificate installer.
Robin Lee7e678712014-07-24 16:41:31 +01002661 * @param certBuffer encoded form of the certificate to install.
Maggie Benthallda51e682013-08-08 22:35:44 -04002662 *
2663 * @return false if the certBuffer cannot be parsed or installation is
Robin Lee7e678712014-07-24 16:41:31 +01002664 * interrupted, true otherwise.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002665 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2666 * owner.
Maggie Benthallda51e682013-08-08 22:35:44 -04002667 */
Robin Lee25e26452015-06-02 09:56:29 -07002668 public boolean installCaCert(@Nullable ComponentName admin, byte[] certBuffer) {
Maggie Benthallda51e682013-08-08 22:35:44 -04002669 if (mService != null) {
2670 try {
Robin Lee7e678712014-07-24 16:41:31 +01002671 return mService.installCaCert(admin, certBuffer);
Maggie Benthallda51e682013-08-08 22:35:44 -04002672 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002673 throw e.rethrowFromSystemServer();
Maggie Benthallda51e682013-08-08 22:35:44 -04002674 }
2675 }
2676 return false;
2677 }
2678
2679 /**
Robin Lee7e678712014-07-24 16:41:31 +01002680 * Uninstalls the given certificate from trusted user CAs, if present.
2681 *
Robin Lee25e26452015-06-02 09:56:29 -07002682 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
2683 * {@code null} if calling from a delegated certificate installer.
Robin Lee7e678712014-07-24 16:41:31 +01002684 * @param certBuffer encoded form of the certificate to remove.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002685 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2686 * owner.
Maggie Benthallda51e682013-08-08 22:35:44 -04002687 */
Robin Lee25e26452015-06-02 09:56:29 -07002688 public void uninstallCaCert(@Nullable ComponentName admin, byte[] certBuffer) {
Maggie Benthallda51e682013-08-08 22:35:44 -04002689 if (mService != null) {
2690 try {
Robin Lee306fe082014-06-19 14:04:24 +00002691 final String alias = getCaCertAlias(certBuffer);
Robin Lee83881bd2015-06-09 16:04:38 -07002692 mService.uninstallCaCerts(admin, new String[] {alias});
Robin Lee306fe082014-06-19 14:04:24 +00002693 } catch (CertificateException e) {
2694 Log.w(TAG, "Unable to parse certificate", e);
Maggie Benthallda51e682013-08-08 22:35:44 -04002695 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002696 throw e.rethrowFromSystemServer();
Maggie Benthallda51e682013-08-08 22:35:44 -04002697 }
2698 }
2699 }
2700
2701 /**
Robin Lee7e678712014-07-24 16:41:31 +01002702 * Returns all CA certificates that are currently trusted, excluding system CA certificates.
2703 * If a user has installed any certificates by other means than device policy these will be
2704 * included too.
2705 *
Robin Lee25e26452015-06-02 09:56:29 -07002706 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
2707 * {@code null} if calling from a delegated certificate installer.
Robin Lee7e678712014-07-24 16:41:31 +01002708 * @return a List of byte[] arrays, each encoding one user CA certificate.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002709 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2710 * owner.
Maggie Benthallda51e682013-08-08 22:35:44 -04002711 */
Robin Lee25e26452015-06-02 09:56:29 -07002712 public List<byte[]> getInstalledCaCerts(@Nullable ComponentName admin) {
Robin Lee7e678712014-07-24 16:41:31 +01002713 List<byte[]> certs = new ArrayList<byte[]>();
Esteban Talavera808f6ef2014-08-28 17:15:54 +01002714 if (mService != null) {
Robin Lee7e678712014-07-24 16:41:31 +01002715 try {
Esteban Talavera808f6ef2014-08-28 17:15:54 +01002716 mService.enforceCanManageCaCerts(admin);
2717 final TrustedCertificateStore certStore = new TrustedCertificateStore();
2718 for (String alias : certStore.userAliases()) {
2719 try {
2720 certs.add(certStore.getCertificate(alias).getEncoded());
2721 } catch (CertificateException ce) {
2722 Log.w(TAG, "Could not encode certificate: " + alias, ce);
2723 }
2724 }
2725 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002726 throw re.rethrowFromSystemServer();
Robin Lee7e678712014-07-24 16:41:31 +01002727 }
2728 }
2729 return certs;
Maggie Benthallda51e682013-08-08 22:35:44 -04002730 }
2731
2732 /**
Robin Lee7e678712014-07-24 16:41:31 +01002733 * Uninstalls all custom trusted CA certificates from the profile. Certificates installed by
2734 * means other than device policy will also be removed, except for system CA certificates.
2735 *
Robin Lee25e26452015-06-02 09:56:29 -07002736 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
2737 * {@code null} if calling from a delegated certificate installer.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002738 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2739 * owner.
Robin Lee7e678712014-07-24 16:41:31 +01002740 */
Robin Lee25e26452015-06-02 09:56:29 -07002741 public void uninstallAllUserCaCerts(@Nullable ComponentName admin) {
Robin Lee7e678712014-07-24 16:41:31 +01002742 if (mService != null) {
Robin Lee83881bd2015-06-09 16:04:38 -07002743 try {
2744 mService.uninstallCaCerts(admin, new TrustedCertificateStore().userAliases()
2745 .toArray(new String[0]));
2746 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002747 throw re.rethrowFromSystemServer();
Robin Lee7e678712014-07-24 16:41:31 +01002748 }
2749 }
2750 }
2751
2752 /**
2753 * Returns whether this certificate is installed as a trusted CA.
2754 *
Robin Lee25e26452015-06-02 09:56:29 -07002755 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
2756 * {@code null} if calling from a delegated certificate installer.
Robin Lee7e678712014-07-24 16:41:31 +01002757 * @param certBuffer encoded form of the certificate to look up.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002758 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2759 * owner.
Maggie Benthallda51e682013-08-08 22:35:44 -04002760 */
Robin Lee25e26452015-06-02 09:56:29 -07002761 public boolean hasCaCertInstalled(@Nullable ComponentName admin, byte[] certBuffer) {
Esteban Talavera808f6ef2014-08-28 17:15:54 +01002762 if (mService != null) {
2763 try {
2764 mService.enforceCanManageCaCerts(admin);
2765 return getCaCertAlias(certBuffer) != null;
2766 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002767 throw re.rethrowFromSystemServer();
Esteban Talavera808f6ef2014-08-28 17:15:54 +01002768 } catch (CertificateException ce) {
2769 Log.w(TAG, "Could not parse certificate", ce);
2770 }
Maggie Benthallda51e682013-08-08 22:35:44 -04002771 }
2772 return false;
2773 }
2774
2775 /**
Robin Leece3399f2016-02-24 12:08:32 +00002776 * Called by a device or profile owner, or delegated certificate installer, to install a
2777 * certificate and corresponding private key. All apps within the profile will be able to access
2778 * the certificate and use the private key, given direct user approval.
2779 *
2780 * <p>Access to the installed credentials will not be granted to the caller of this API without
2781 * direct user approval. This is for security - should a certificate installer become
2782 * compromised, certificates it had already installed will be protected.
2783 *
2784 * <p>If the installer must have access to the credentials, call
2785 * {@link #installKeyPair(ComponentName, PrivateKey, Certificate, String, boolean)} instead.
Bernhard Bauer26408cc2014-09-08 14:07:31 +01002786 *
Robin Lee25e26452015-06-02 09:56:29 -07002787 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
2788 * {@code null} if calling from a delegated certificate installer.
Bernhard Bauer26408cc2014-09-08 14:07:31 +01002789 * @param privKey The private key to install.
2790 * @param cert The certificate to install.
2791 * @param alias The private key alias under which to install the certificate. If a certificate
2792 * with that alias already exists, it will be overwritten.
2793 * @return {@code true} if the keys were installed, {@code false} otherwise.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002794 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2795 * owner.
Bernhard Bauer26408cc2014-09-08 14:07:31 +01002796 */
Robin Leefbc65642015-08-03 16:21:22 +01002797 public boolean installKeyPair(@Nullable ComponentName admin, @NonNull PrivateKey privKey,
2798 @NonNull Certificate cert, @NonNull String alias) {
Robin Leece3399f2016-02-24 12:08:32 +00002799 return installKeyPair(admin, privKey, cert, alias, false);
2800 }
2801
2802 /**
2803 * Called by a device or profile owner, or delegated certificate installer, to install a
2804 * certificate and corresponding private key. All apps within the profile will be able to access
2805 * the certificate and use the private key, given direct user approval.
2806 *
Robin Leea1b290e2016-03-09 14:38:36 +00002807 * <p>The caller of this API may grant itself access to the certificate and private key
2808 * immediately, without user approval. It is a best practice not to request this unless strictly
2809 * necessary since it opens up additional security vulnerabilities.
Robin Leece3399f2016-02-24 12:08:32 +00002810 *
2811 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
Robin Leea1b290e2016-03-09 14:38:36 +00002812 * {@code null} if calling from a delegated certificate installer.
Robin Leece3399f2016-02-24 12:08:32 +00002813 * @param privKey The private key to install.
2814 * @param cert The certificate to install.
2815 * @param alias The private key alias under which to install the certificate. If a certificate
Robin Leea1b290e2016-03-09 14:38:36 +00002816 * with that alias already exists, it will be overwritten.
Robin Leece3399f2016-02-24 12:08:32 +00002817 * @param requestAccess {@code true} to request that the calling app be granted access to the
Robin Leea1b290e2016-03-09 14:38:36 +00002818 * credentials immediately. Otherwise, access to the credentials will be gated by user
2819 * approval.
Robin Leece3399f2016-02-24 12:08:32 +00002820 * @return {@code true} if the keys were installed, {@code false} otherwise.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002821 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2822 * owner.
Robin Leece3399f2016-02-24 12:08:32 +00002823 */
2824 public boolean installKeyPair(@Nullable ComponentName admin, @NonNull PrivateKey privKey,
2825 @NonNull Certificate cert, @NonNull String alias, boolean requestAccess) {
Bernhard Bauer26408cc2014-09-08 14:07:31 +01002826 try {
2827 final byte[] pemCert = Credentials.convertToPem(cert);
Robin Lee0d5ccb72014-09-12 17:41:44 +01002828 final byte[] pkcs8Key = KeyFactory.getInstance(privKey.getAlgorithm())
2829 .getKeySpec(privKey, PKCS8EncodedKeySpec.class).getEncoded();
Robin Leece3399f2016-02-24 12:08:32 +00002830 return mService.installKeyPair(admin, pkcs8Key, pemCert, alias, requestAccess);
Bernhard Bauer26408cc2014-09-08 14:07:31 +01002831 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002832 throw e.rethrowFromSystemServer();
Robin Lee0d5ccb72014-09-12 17:41:44 +01002833 } catch (NoSuchAlgorithmException | InvalidKeySpecException e) {
2834 Log.w(TAG, "Failed to obtain private key material", e);
2835 } catch (CertificateException | IOException e) {
2836 Log.w(TAG, "Could not pem-encode certificate", e);
Bernhard Bauer26408cc2014-09-08 14:07:31 +01002837 }
2838 return false;
2839 }
2840
2841 /**
Robin Leea1b290e2016-03-09 14:38:36 +00002842 * Called by a device or profile owner, or delegated certificate installer, to remove a
2843 * certificate and private key pair installed under a given alias.
Robin Leefbc65642015-08-03 16:21:22 +01002844 *
2845 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
Robin Leea1b290e2016-03-09 14:38:36 +00002846 * {@code null} if calling from a delegated certificate installer.
Robin Leefbc65642015-08-03 16:21:22 +01002847 * @param alias The private key alias under which the certificate is installed.
Robin Leea1b290e2016-03-09 14:38:36 +00002848 * @return {@code true} if the private key alias no longer exists, {@code false} otherwise.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002849 * @throws SecurityException if {@code admin} is not {@code null} and not a device or profile
2850 * owner.
Robin Leefbc65642015-08-03 16:21:22 +01002851 */
2852 public boolean removeKeyPair(@Nullable ComponentName admin, @NonNull String alias) {
2853 try {
2854 return mService.removeKeyPair(admin, alias);
2855 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002856 throw e.rethrowFromSystemServer();
Robin Leefbc65642015-08-03 16:21:22 +01002857 }
Robin Leefbc65642015-08-03 16:21:22 +01002858 }
2859
2860 /**
Robin Lee25e26452015-06-02 09:56:29 -07002861 * @return the alias of a given CA certificate in the certificate store, or {@code null} if it
Robin Lee306fe082014-06-19 14:04:24 +00002862 * doesn't exist.
2863 */
2864 private static String getCaCertAlias(byte[] certBuffer) throws CertificateException {
2865 final CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
2866 final X509Certificate cert = (X509Certificate) certFactory.generateCertificate(
2867 new ByteArrayInputStream(certBuffer));
2868 return new TrustedCertificateStore().getCertificateAlias(cert);
2869 }
2870
2871 /**
Rubin Xuec32b562015-03-03 17:34:05 +00002872 * Called by a profile owner or device owner to grant access to privileged certificate
Rubin Xuacdc1832015-04-02 12:40:20 +01002873 * manipulation APIs to a third-party certificate installer app. Granted APIs include
Rubin Xuec32b562015-03-03 17:34:05 +00002874 * {@link #getInstalledCaCerts}, {@link #hasCaCertInstalled}, {@link #installCaCert},
Rubin Xuacdc1832015-04-02 12:40:20 +01002875 * {@link #uninstallCaCert}, {@link #uninstallAllUserCaCerts} and {@link #installKeyPair}.
Rubin Xuec32b562015-03-03 17:34:05 +00002876 * <p>
2877 * Delegated certificate installer is a per-user state. The delegated access is persistent until
2878 * it is later cleared by calling this method with a null value or uninstallling the certificate
2879 * installer.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002880 * <p>
Rubin Xuf03d0a62016-02-10 14:54:15 +00002881 * <b>Note:</b>Starting from {@link android.os.Build.VERSION_CODES#N}, if the caller
2882 * application's target SDK version is {@link android.os.Build.VERSION_CODES#N} or newer, the
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002883 * supplied certificate installer package must be installed when calling this API, otherwise an
2884 * {@link IllegalArgumentException} will be thrown.
Rubin Xuec32b562015-03-03 17:34:05 +00002885 *
Robin Lee25e26452015-06-02 09:56:29 -07002886 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Rubin Xuec32b562015-03-03 17:34:05 +00002887 * @param installerPackage The package name of the certificate installer which will be given
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002888 * access. If {@code null} is given the current package will be cleared.
2889 * @throws SecurityException if {@code admin} is not a device or a profile owner.
Rubin Xuec32b562015-03-03 17:34:05 +00002890 */
Robin Lee25e26452015-06-02 09:56:29 -07002891 public void setCertInstallerPackage(@NonNull ComponentName admin, @Nullable String
2892 installerPackage) throws SecurityException {
Rubin Xuec32b562015-03-03 17:34:05 +00002893 if (mService != null) {
2894 try {
Robin Lee25e26452015-06-02 09:56:29 -07002895 mService.setCertInstallerPackage(admin, installerPackage);
Rubin Xuec32b562015-03-03 17:34:05 +00002896 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002897 throw e.rethrowFromSystemServer();
Rubin Xuec32b562015-03-03 17:34:05 +00002898 }
2899 }
2900 }
2901
2902 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002903 * Called by a profile owner or device owner to retrieve the certificate installer for the user.
2904 * null if none is set.
Rubin Xuec32b562015-03-03 17:34:05 +00002905 *
Robin Lee25e26452015-06-02 09:56:29 -07002906 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002907 * @return The package name of the current delegated certificate installer, or {@code null} if
2908 * none is set.
2909 * @throws SecurityException if {@code admin} is not a device or a profile owner.
Rubin Xuec32b562015-03-03 17:34:05 +00002910 */
Robin Lee25e26452015-06-02 09:56:29 -07002911 public String getCertInstallerPackage(@NonNull ComponentName admin) throws SecurityException {
Rubin Xuec32b562015-03-03 17:34:05 +00002912 if (mService != null) {
2913 try {
Robin Lee25e26452015-06-02 09:56:29 -07002914 return mService.getCertInstallerPackage(admin);
Rubin Xuec32b562015-03-03 17:34:05 +00002915 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002916 throw e.rethrowFromSystemServer();
Rubin Xuec32b562015-03-03 17:34:05 +00002917 }
2918 }
2919 return null;
2920 }
2921
2922 /**
Robin Lee244ce8e2016-01-05 18:03:46 +00002923 * Called by a device or profile owner to configure an always-on VPN connection through a
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002924 * specific application for the current user. This connection is automatically granted and
2925 * persisted after a reboot.
2926 * <p>
2927 * The designated package should declare a {@link android.net.VpnService} in its manifest
2928 * guarded by {@link android.Manifest.permission#BIND_VPN_SERVICE}, otherwise the call will
2929 * fail.
Robin Lee244ce8e2016-01-05 18:03:46 +00002930 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002931 * @param vpnPackage The package name for an installed VPN app on the device, or {@code null} to
2932 * remove an existing always-on VPN configuration.
2933 * @return {@code true} if the package is set as always-on VPN controller; {@code false}
2934 * otherwise.
2935 * @throws SecurityException if {@code admin} is not a device or a profile owner.
Robin Lee244ce8e2016-01-05 18:03:46 +00002936 */
2937 public boolean setAlwaysOnVpnPackage(@NonNull ComponentName admin,
2938 @Nullable String vpnPackage) {
2939 if (mService != null) {
2940 try {
2941 return mService.setAlwaysOnVpnPackage(admin, vpnPackage);
2942 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002943 throw e.rethrowFromSystemServer();
Robin Lee244ce8e2016-01-05 18:03:46 +00002944 }
2945 }
2946 return false;
2947 }
2948
2949 /**
2950 * Called by a device or profile owner to read the name of the package administering an
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002951 * always-on VPN connection for the current user. If there is no such package, or the always-on
2952 * VPN is provided by the system instead of by an application, {@code null} will be returned.
Robin Lee244ce8e2016-01-05 18:03:46 +00002953 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002954 * @return Package name of VPN controller responsible for always-on VPN, or {@code null} if none
2955 * is set.
2956 * @throws SecurityException if {@code admin} is not a device or a profile owner.
Robin Lee244ce8e2016-01-05 18:03:46 +00002957 */
2958 public String getAlwaysOnVpnPackage(@NonNull ComponentName admin) {
2959 if (mService != null) {
2960 try {
2961 return mService.getAlwaysOnVpnPackage(admin);
2962 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002963 throw e.rethrowFromSystemServer();
Robin Lee244ce8e2016-01-05 18:03:46 +00002964 }
2965 }
2966 return null;
2967 }
2968
2969 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002970 * Called by an application that is administering the device to disable all cameras on the
2971 * device, for this user. After setting this, no applications running as this user will be able
2972 * to access any cameras on the device.
2973 * <p>
2974 * If the caller is device owner, then the restriction will be applied to all users.
2975 * <p>
2976 * The calling device admin must have requested
2977 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_CAMERA} to be able to call this method; if it has
2978 * not, a security exception will be thrown.
Ben Komalo2447edd2011-05-09 16:05:33 -07002979 *
2980 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
2981 * @param disabled Whether or not the camera should be disabled.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07002982 * @throws SecurityException if {@code admin} is not an active administrator or does not use
2983 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_CAMERA}.
Ben Komalo2447edd2011-05-09 16:05:33 -07002984 */
Robin Lee25e26452015-06-02 09:56:29 -07002985 public void setCameraDisabled(@NonNull ComponentName admin, boolean disabled) {
Ben Komalo2447edd2011-05-09 16:05:33 -07002986 if (mService != null) {
2987 try {
Fyodor Kupolovbdc58c62015-01-29 13:24:03 -08002988 mService.setCameraDisabled(admin, disabled);
Ben Komalo2447edd2011-05-09 16:05:33 -07002989 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07002990 throw e.rethrowFromSystemServer();
Ben Komalo2447edd2011-05-09 16:05:33 -07002991 }
2992 }
2993 }
2994
2995 /**
Amith Yamasani242f4b12014-10-14 16:06:13 -07002996 * Determine whether or not the device's cameras have been disabled for this user,
Makoto Onuki32b30572015-12-11 14:29:51 -08002997 * either by the calling admin, if specified, or all admins.
Robin Lee25e26452015-06-02 09:56:29 -07002998 * @param admin The name of the admin component to check, or {@code null} to check whether any admins
Ben Komalo2447edd2011-05-09 16:05:33 -07002999 * have disabled the camera
3000 */
Robin Lee25e26452015-06-02 09:56:29 -07003001 public boolean getCameraDisabled(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07003002 return getCameraDisabled(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003003 }
3004
3005 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07003006 public boolean getCameraDisabled(@Nullable ComponentName admin, int userHandle) {
Ben Komalo2447edd2011-05-09 16:05:33 -07003007 if (mService != null) {
3008 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003009 return mService.getCameraDisabled(admin, userHandle);
Ben Komalo2447edd2011-05-09 16:05:33 -07003010 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003011 throw e.rethrowFromSystemServer();
Ben Komalo2447edd2011-05-09 16:05:33 -07003012 }
3013 }
3014 return false;
3015 }
3016
3017 /**
Michal Karpinski3fc437e2015-12-15 10:09:00 +00003018 * Called by a device owner to request a bugreport.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003019 * <p>
3020 * There must be only one user on the device, managed by the device owner. Otherwise a
3021 * {@link SecurityException} will be thrown.
Michal Karpinski3fc437e2015-12-15 10:09:00 +00003022 *
3023 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003024 * @return {@code true} if the bugreport collection started successfully, or {@code false} if it
3025 * wasn't triggered because a previous bugreport operation is still active (either the
3026 * bugreport is still running or waiting for the user to share or decline)
3027 * @throws SecurityException if {@code admin} is not a device owner, or if there are users other
3028 * than the one managed by the device owner.
Michal Karpinski3fc437e2015-12-15 10:09:00 +00003029 */
3030 public boolean requestBugreport(@NonNull ComponentName admin) {
3031 if (mService != null) {
3032 try {
3033 return mService.requestBugreport(admin);
3034 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003035 throw e.rethrowFromSystemServer();
Michal Karpinski3fc437e2015-12-15 10:09:00 +00003036 }
3037 }
3038 return false;
3039 }
3040
3041 /**
Fyodor Kupolovcd86ebf2015-09-29 17:06:50 -07003042 * Determine whether or not creating a guest user has been disabled for the device
3043 *
3044 * @hide
3045 */
3046 public boolean getGuestUserDisabled(@Nullable ComponentName admin) {
3047 // Currently guest users can always be created if multi-user is enabled
3048 // TODO introduce a policy for guest user creation
3049 return false;
3050 }
3051
3052 /**
Esteban Talavera1aee98f2014-08-21 14:03:55 +01003053 * Called by a device/profile owner to set whether the screen capture is disabled. Disabling
3054 * screen capture also prevents the content from being shown on display devices that do not have
3055 * a secure video output. See {@link android.view.Display#FLAG_SECURE} for more details about
3056 * secure surfaces and secure displays.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003057 * <p>
3058 * The calling device admin must be a device or profile owner. If it is not, a security
3059 * exception will be thrown.
3060 * <p>
3061 * From version {@link android.os.Build.VERSION_CODES#M} disabling screen capture also blocks
3062 * assist requests for all activities of the relevant user.
Benjamin Franzc200f442015-06-25 18:20:04 +01003063 *
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003064 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Sander Alewijnse0ced6272014-08-26 11:18:26 +01003065 * @param disabled Whether screen capture is disabled or not.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003066 * @throws SecurityException if {@code admin} is not a device or profile owner.
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003067 */
Robin Lee25e26452015-06-02 09:56:29 -07003068 public void setScreenCaptureDisabled(@NonNull ComponentName admin, boolean disabled) {
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003069 if (mService != null) {
3070 try {
Fyodor Kupolovbdc58c62015-01-29 13:24:03 -08003071 mService.setScreenCaptureDisabled(admin, disabled);
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003072 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003073 throw e.rethrowFromSystemServer();
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003074 }
3075 }
3076 }
3077
3078 /**
Makoto Onuki32b30572015-12-11 14:29:51 -08003079 * Determine whether or not screen capture has been disabled by the calling
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003080 * admin, if specified, or all admins.
Robin Lee25e26452015-06-02 09:56:29 -07003081 * @param admin The name of the admin component to check, or {@code null} to check whether any admins
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003082 * have disabled screen capture.
3083 */
Robin Lee25e26452015-06-02 09:56:29 -07003084 public boolean getScreenCaptureDisabled(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07003085 return getScreenCaptureDisabled(admin, myUserId());
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003086 }
3087
3088 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07003089 public boolean getScreenCaptureDisabled(@Nullable ComponentName admin, int userHandle) {
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003090 if (mService != null) {
3091 try {
3092 return mService.getScreenCaptureDisabled(admin, userHandle);
3093 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003094 throw e.rethrowFromSystemServer();
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +01003095 }
3096 }
3097 return false;
3098 }
3099
3100 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003101 * Called by a device owner to set whether auto time is required. If auto time is required the
3102 * user cannot set the date and time, but has to use network date and time.
3103 * <p>
3104 * Note: if auto time is required the user can still manually set the time zone.
3105 * <p>
3106 * The calling device admin must be a device owner. If it is not, a security exception will be
3107 * thrown.
Sander Alewijnse0ced6272014-08-26 11:18:26 +01003108 *
3109 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
3110 * @param required Whether auto time is set required or not.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003111 * @throws SecurityException if {@code admin} is not a device owner.
Sander Alewijnse0ced6272014-08-26 11:18:26 +01003112 */
Robin Lee25e26452015-06-02 09:56:29 -07003113 public void setAutoTimeRequired(@NonNull ComponentName admin, boolean required) {
Sander Alewijnse0ced6272014-08-26 11:18:26 +01003114 if (mService != null) {
3115 try {
Fyodor Kupolovbdc58c62015-01-29 13:24:03 -08003116 mService.setAutoTimeRequired(admin, required);
Sander Alewijnse0ced6272014-08-26 11:18:26 +01003117 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003118 throw e.rethrowFromSystemServer();
Sander Alewijnse0ced6272014-08-26 11:18:26 +01003119 }
3120 }
3121 }
3122
3123 /**
3124 * @return true if auto time is required.
3125 */
3126 public boolean getAutoTimeRequired() {
3127 if (mService != null) {
3128 try {
3129 return mService.getAutoTimeRequired();
3130 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003131 throw e.rethrowFromSystemServer();
Sander Alewijnse0ced6272014-08-26 11:18:26 +01003132 }
3133 }
3134 return false;
3135 }
3136
3137 /**
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003138 * Called by a device owner to set whether all users created on the device should be ephemeral.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003139 * <p>
3140 * The system user is exempt from this policy - it is never ephemeral.
3141 * <p>
3142 * The calling device admin must be the device owner. If it is not, a security exception will be
3143 * thrown.
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003144 *
3145 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
3146 * @param forceEphemeralUsers If true, all the existing users will be deleted and all
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003147 * subsequently created users will be ephemeral.
3148 * @throws SecurityException if {@code admin} is not a device owner.
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003149 * @hide
3150 */
3151 public void setForceEphemeralUsers(
3152 @NonNull ComponentName admin, boolean forceEphemeralUsers) {
3153 if (mService != null) {
3154 try {
3155 mService.setForceEphemeralUsers(admin, forceEphemeralUsers);
3156 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003157 throw e.rethrowFromSystemServer();
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003158 }
3159 }
3160 }
3161
3162 /**
3163 * @return true if all users are created ephemeral.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003164 * @throws SecurityException if {@code admin} is not a device owner.
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003165 * @hide
3166 */
3167 public boolean getForceEphemeralUsers(@NonNull ComponentName admin) {
3168 if (mService != null) {
3169 try {
3170 return mService.getForceEphemeralUsers(admin);
3171 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003172 throw e.rethrowFromSystemServer();
Lenka Trochtovaf348e8e2016-01-07 17:20:34 +01003173 }
3174 }
3175 return false;
3176 }
3177
3178 /**
Jim Miller48b9b0d2012-09-19 23:16:50 -07003179 * Called by an application that is administering the device to disable keyguard customizations,
3180 * such as widgets. After setting this, keyguard features will be disabled according to the
3181 * provided feature list.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003182 * <p>
3183 * The calling device admin must have requested
3184 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} to be able to call this method;
3185 * if it has not, a security exception will be thrown.
3186 * <p>
3187 * Calling this from a managed profile before version {@link android.os.Build.VERSION_CODES#M}
3188 * will throw a security exception. From version {@link android.os.Build.VERSION_CODES#M} the
3189 * profile owner of a managed profile can set:
Kenny Guy0b7dd1e2015-03-12 17:14:38 +00003190 * <ul>
Esteban Talaverac1c83592016-02-17 17:56:15 +00003191 * <li>{@link #KEYGUARD_DISABLE_TRUST_AGENTS}, which affects the parent user, but only if there
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003192 * is no separate challenge set on the managed profile.
Esteban Talaverac1c83592016-02-17 17:56:15 +00003193 * <li>{@link #KEYGUARD_DISABLE_FINGERPRINT} which affects the managed profile challenge if
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003194 * there is one, or the parent user otherwise.
3195 * <li>{@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS} which affects notifications generated
3196 * by applications in the managed profile.
Kenny Guy0b7dd1e2015-03-12 17:14:38 +00003197 * </ul>
Esteban Talaverac1c83592016-02-17 17:56:15 +00003198 * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} and {@link #KEYGUARD_DISABLE_FINGERPRINT} can also be
3199 * set on the {@link DevicePolicyManager} instance returned by
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003200 * {@link #getParentProfileInstance(ComponentName)} in order to set restrictions on the parent
3201 * profile.
3202 * <p>
3203 * Requests to disable other features on a managed profile will be ignored.
3204 * <p>
3205 * The admin can check which features have been disabled by calling
Kenny Guy0b7dd1e2015-03-12 17:14:38 +00003206 * {@link #getKeyguardDisabledFeatures(ComponentName)}
Amith Yamasani242f4b12014-10-14 16:06:13 -07003207 *
Jim Millerb8ec4702012-08-31 17:19:10 -07003208 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Jim Miller35207742012-11-02 15:33:20 -07003209 * @param which {@link #KEYGUARD_DISABLE_FEATURES_NONE} (default),
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003210 * {@link #KEYGUARD_DISABLE_WIDGETS_ALL}, {@link #KEYGUARD_DISABLE_SECURE_CAMERA},
3211 * {@link #KEYGUARD_DISABLE_SECURE_NOTIFICATIONS},
3212 * {@link #KEYGUARD_DISABLE_TRUST_AGENTS},
3213 * {@link #KEYGUARD_DISABLE_UNREDACTED_NOTIFICATIONS},
3214 * {@link #KEYGUARD_DISABLE_FINGERPRINT}, {@link #KEYGUARD_DISABLE_FEATURES_ALL}
3215 * @throws SecurityException if {@code admin} is not an active administrator or does not user
3216 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES}
Jim Millerb8ec4702012-08-31 17:19:10 -07003217 */
Robin Lee25e26452015-06-02 09:56:29 -07003218 public void setKeyguardDisabledFeatures(@NonNull ComponentName admin, int which) {
Jim Millerb8ec4702012-08-31 17:19:10 -07003219 if (mService != null) {
3220 try {
Esteban Talavera62399912016-01-11 15:37:55 +00003221 mService.setKeyguardDisabledFeatures(admin, which, mParentInstance);
Jim Millerb8ec4702012-08-31 17:19:10 -07003222 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003223 throw e.rethrowFromSystemServer();
Jim Millerb8ec4702012-08-31 17:19:10 -07003224 }
3225 }
3226 }
3227
3228 /**
Makoto Onuki32b30572015-12-11 14:29:51 -08003229 * Determine whether or not features have been disabled in keyguard either by the calling
Esteban Talaverac1c83592016-02-17 17:56:15 +00003230 * admin, if specified, or all admins that set retrictions on this user and its participating
3231 * profiles. Restrictions on profiles that have a separate challenge are not taken into account.
3232 *
3233 * <p>This method can be called on the {@link DevicePolicyManager} instance
3234 * returned by {@link #getParentProfileInstance(ComponentName)} in order to retrieve
3235 * restrictions on the parent profile.
3236 *
Esteban Talavera62399912016-01-11 15:37:55 +00003237 * @param admin The name of the admin component to check, or {@code null} to check whether any
3238 * admins have disabled features in keyguard.
Jim Miller35207742012-11-02 15:33:20 -07003239 * @return bitfield of flags. See {@link #setKeyguardDisabledFeatures(ComponentName, int)}
3240 * for a list.
Jim Millerb8ec4702012-08-31 17:19:10 -07003241 */
Robin Lee25e26452015-06-02 09:56:29 -07003242 public int getKeyguardDisabledFeatures(@Nullable ComponentName admin) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07003243 return getKeyguardDisabledFeatures(admin, myUserId());
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003244 }
3245
3246 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07003247 public int getKeyguardDisabledFeatures(@Nullable ComponentName admin, int userHandle) {
Jim Millerb8ec4702012-08-31 17:19:10 -07003248 if (mService != null) {
3249 try {
Esteban Talavera62399912016-01-11 15:37:55 +00003250 return mService.getKeyguardDisabledFeatures(admin, userHandle, mParentInstance);
Jim Millerb8ec4702012-08-31 17:19:10 -07003251 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003252 throw e.rethrowFromSystemServer();
Jim Millerb8ec4702012-08-31 17:19:10 -07003253 }
3254 }
Jim Miller48b9b0d2012-09-19 23:16:50 -07003255 return KEYGUARD_DISABLE_FEATURES_NONE;
Jim Millerb8ec4702012-08-31 17:19:10 -07003256 }
3257
3258 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -08003259 * @hide
3260 */
Robin Lee25e26452015-06-02 09:56:29 -07003261 public void setActiveAdmin(@NonNull ComponentName policyReceiver, boolean refreshing,
3262 int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08003263 if (mService != null) {
3264 try {
Jessica Hummel6d36b602014-04-04 12:42:17 +01003265 mService.setActiveAdmin(policyReceiver, refreshing, userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08003266 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003267 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08003268 }
3269 }
3270 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07003271
Dianne Hackbornd6847842010-01-12 18:14:19 -08003272 /**
Jessica Hummel6d36b602014-04-04 12:42:17 +01003273 * @hide
3274 */
Robin Lee25e26452015-06-02 09:56:29 -07003275 public void setActiveAdmin(@NonNull ComponentName policyReceiver, boolean refreshing) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07003276 setActiveAdmin(policyReceiver, refreshing, myUserId());
Jessica Hummel6d36b602014-04-04 12:42:17 +01003277 }
3278
3279 /**
Dianne Hackbornd6847842010-01-12 18:14:19 -08003280 * @hide
3281 */
Robin Lee25e26452015-06-02 09:56:29 -07003282 public void getRemoveWarning(@Nullable ComponentName admin, RemoteCallback result) {
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08003283 if (mService != null) {
3284 try {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07003285 mService.getRemoveWarning(admin, result, myUserId());
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08003286 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003287 throw e.rethrowFromSystemServer();
Dianne Hackborn8ea138c2010-01-26 18:01:04 -08003288 }
3289 }
3290 }
3291
3292 /**
3293 * @hide
3294 */
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07003295 public void setActivePasswordState(int quality, int length, int letters, int uppercase,
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003296 int lowercase, int numbers, int symbols, int nonletter, int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08003297 if (mService != null) {
3298 try {
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07003299 mService.setActivePasswordState(quality, length, letters, uppercase, lowercase,
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003300 numbers, symbols, nonletter, userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08003301 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003302 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08003303 }
3304 }
3305 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07003306
Dianne Hackbornd6847842010-01-12 18:14:19 -08003307 /**
3308 * @hide
3309 */
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003310 public void reportFailedPasswordAttempt(int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08003311 if (mService != null) {
3312 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003313 mService.reportFailedPasswordAttempt(userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08003314 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003315 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08003316 }
3317 }
3318 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -07003319
Dianne Hackbornd6847842010-01-12 18:14:19 -08003320 /**
3321 * @hide
3322 */
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003323 public void reportSuccessfulPasswordAttempt(int userHandle) {
Dianne Hackbornd6847842010-01-12 18:14:19 -08003324 if (mService != null) {
3325 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07003326 mService.reportSuccessfulPasswordAttempt(userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -08003327 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003328 throw e.rethrowFromSystemServer();
Dianne Hackbornd6847842010-01-12 18:14:19 -08003329 }
3330 }
3331 }
Amith Yamasani71e6c692013-03-24 17:39:28 -07003332
3333 /**
Michal Karpinskied5c8f02016-02-09 15:43:41 +00003334 * @hide
3335 */
3336 public void reportFailedFingerprintAttempt(int userHandle) {
3337 if (mService != null) {
3338 try {
3339 mService.reportFailedFingerprintAttempt(userHandle);
3340 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003341 throw e.rethrowFromSystemServer();
Michal Karpinskied5c8f02016-02-09 15:43:41 +00003342 }
3343 }
3344 }
3345
3346 /**
3347 * @hide
3348 */
3349 public void reportSuccessfulFingerprintAttempt(int userHandle) {
3350 if (mService != null) {
3351 try {
3352 mService.reportSuccessfulFingerprintAttempt(userHandle);
3353 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003354 throw e.rethrowFromSystemServer();
Michal Karpinskied5c8f02016-02-09 15:43:41 +00003355 }
3356 }
3357 }
3358
3359 /**
Michal Karpinski31502d32016-01-25 16:43:07 +00003360 * Should be called when keyguard has been dismissed.
3361 * @hide
3362 */
Michal Karpinskied5c8f02016-02-09 15:43:41 +00003363 public void reportKeyguardDismissed(int userHandle) {
Michal Karpinski31502d32016-01-25 16:43:07 +00003364 if (mService != null) {
3365 try {
Michal Karpinskied5c8f02016-02-09 15:43:41 +00003366 mService.reportKeyguardDismissed(userHandle);
Michal Karpinski31502d32016-01-25 16:43:07 +00003367 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003368 throw e.rethrowFromSystemServer();
Michal Karpinski31502d32016-01-25 16:43:07 +00003369 }
3370 }
3371 }
3372
3373 /**
3374 * Should be called when keyguard view has been shown to the user.
3375 * @hide
3376 */
Michal Karpinskied5c8f02016-02-09 15:43:41 +00003377 public void reportKeyguardSecured(int userHandle) {
Michal Karpinski31502d32016-01-25 16:43:07 +00003378 if (mService != null) {
3379 try {
Michal Karpinskied5c8f02016-02-09 15:43:41 +00003380 mService.reportKeyguardSecured(userHandle);
Michal Karpinski31502d32016-01-25 16:43:07 +00003381 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003382 throw e.rethrowFromSystemServer();
Michal Karpinski31502d32016-01-25 16:43:07 +00003383 }
3384 }
3385 }
3386
3387 /**
Amith Yamasani71e6c692013-03-24 17:39:28 -07003388 * @hide
Nicolas Prevot28063742015-01-08 15:37:12 +00003389 * Sets the given package as the device owner.
Makoto Onukia52562c2015-10-01 16:12:31 -07003390 * Same as {@link #setDeviceOwner(ComponentName, String)} but without setting a device owner name.
3391 * @param who the component name to be registered as device owner.
Amith Yamasani71e6c692013-03-24 17:39:28 -07003392 * @return whether the package was successfully registered as the device owner.
3393 * @throws IllegalArgumentException if the package name is null or invalid
Nicolas Prevot28063742015-01-08 15:37:12 +00003394 * @throws IllegalStateException If the preconditions mentioned are not met.
Amith Yamasani71e6c692013-03-24 17:39:28 -07003395 */
Makoto Onukia52562c2015-10-01 16:12:31 -07003396 public boolean setDeviceOwner(ComponentName who) {
3397 return setDeviceOwner(who, null);
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04003398 }
3399
3400 /**
3401 * @hide
Makoto Onuki58b684f2015-09-04 10:48:16 -07003402 */
Makoto Onukia52562c2015-10-01 16:12:31 -07003403 public boolean setDeviceOwner(ComponentName who, int userId) {
3404 return setDeviceOwner(who, null, userId);
Makoto Onuki58b684f2015-09-04 10:48:16 -07003405 }
3406
3407 /**
3408 * @hide
3409 */
Makoto Onukia52562c2015-10-01 16:12:31 -07003410 public boolean setDeviceOwner(ComponentName who, String ownerName) {
3411 return setDeviceOwner(who, ownerName, UserHandle.USER_SYSTEM);
Makoto Onuki58b684f2015-09-04 10:48:16 -07003412 }
3413
3414 /**
3415 * @hide
Nicolas Prevot28063742015-01-08 15:37:12 +00003416 * Sets the given package as the device owner. The package must already be installed. There
3417 * must not already be a device owner.
3418 * Only apps with the MANAGE_PROFILE_AND_DEVICE_OWNERS permission and the shell uid can call
3419 * this method.
3420 * Calling this after the setup phase of the primary user has completed is allowed only if
3421 * the caller is the shell uid, and there are no additional users and no accounts.
Makoto Onukia52562c2015-10-01 16:12:31 -07003422 * @param who the component name to be registered as device owner.
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04003423 * @param ownerName the human readable name of the institution that owns this device.
Makoto Onuki58b684f2015-09-04 10:48:16 -07003424 * @param userId ID of the user on which the device owner runs.
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04003425 * @return whether the package was successfully registered as the device owner.
3426 * @throws IllegalArgumentException if the package name is null or invalid
Nicolas Prevot28063742015-01-08 15:37:12 +00003427 * @throws IllegalStateException If the preconditions mentioned are not met.
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04003428 */
Makoto Onukia52562c2015-10-01 16:12:31 -07003429 public boolean setDeviceOwner(ComponentName who, String ownerName, int userId)
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04003430 throws IllegalArgumentException, IllegalStateException {
Amith Yamasani71e6c692013-03-24 17:39:28 -07003431 if (mService != null) {
3432 try {
Makoto Onukia52562c2015-10-01 16:12:31 -07003433 return mService.setDeviceOwner(who, ownerName, userId);
Amith Yamasani71e6c692013-03-24 17:39:28 -07003434 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003435 throw re.rethrowFromSystemServer();
Amith Yamasani71e6c692013-03-24 17:39:28 -07003436 }
3437 }
3438 return false;
3439 }
3440
3441 /**
Amith Yamasani3b458ad2013-04-18 18:40:07 -07003442 * Used to determine if a particular package has been registered as a Device Owner app.
3443 * A device owner app is a special device admin that cannot be deactivated by the user, once
Robin Lee25e26452015-06-02 09:56:29 -07003444 * activated as a device admin. It also cannot be uninstalled. To check whether a particular
Amith Yamasani3b458ad2013-04-18 18:40:07 -07003445 * package is currently registered as the device owner app, pass in the package name from
3446 * {@link Context#getPackageName()} to this method.<p/>This is useful for device
Robin Lee25e26452015-06-02 09:56:29 -07003447 * admin apps that want to check whether they are also registered as the device owner app. The
Amith Yamasani3b458ad2013-04-18 18:40:07 -07003448 * exact mechanism by which a device admin app is registered as a device owner app is defined by
3449 * the setup process.
3450 * @param packageName the package name of the app, to compare with the registered device owner
3451 * app, if any.
Makoto Onukic8a5a552015-11-19 14:29:12 -08003452 * @return whether or not the package is registered as the device owner app.
Amith Yamasani71e6c692013-03-24 17:39:28 -07003453 */
Amith Yamasani3b458ad2013-04-18 18:40:07 -07003454 public boolean isDeviceOwnerApp(String packageName) {
Makoto Onukic8a5a552015-11-19 14:29:12 -08003455 return isDeviceOwnerAppOnCallingUser(packageName);
3456 }
3457
3458 /**
3459 * @return true if a package is registered as device owner, only when it's running on the
3460 * calling user.
3461 *
3462 * <p>Same as {@link #isDeviceOwnerApp}, but bundled code should use it for clarity.
3463 * @hide
3464 */
3465 public boolean isDeviceOwnerAppOnCallingUser(String packageName) {
3466 return isDeviceOwnerAppOnAnyUserInner(packageName, /* callingUserOnly =*/ true);
3467 }
3468
3469 /**
3470 * @return true if a package is registered as device owner, even if it's running on a different
3471 * user.
3472 *
3473 * <p>Requires the MANAGE_USERS permission.
3474 *
3475 * @hide
3476 */
3477 public boolean isDeviceOwnerAppOnAnyUser(String packageName) {
3478 return isDeviceOwnerAppOnAnyUserInner(packageName, /* callingUserOnly =*/ false);
3479 }
3480
3481 /**
3482 * @return device owner component name, only when it's running on the calling user.
3483 *
3484 * @hide
3485 */
3486 public ComponentName getDeviceOwnerComponentOnCallingUser() {
3487 return getDeviceOwnerComponentInner(/* callingUserOnly =*/ true);
3488 }
3489
3490 /**
3491 * @return device owner component name, even if it's running on a different user.
3492 *
3493 * <p>Requires the MANAGE_USERS permission.
3494 *
3495 * @hide
3496 */
3497 public ComponentName getDeviceOwnerComponentOnAnyUser() {
3498 return getDeviceOwnerComponentInner(/* callingUserOnly =*/ false);
3499 }
3500
3501 private boolean isDeviceOwnerAppOnAnyUserInner(String packageName, boolean callingUserOnly) {
Makoto Onuki70f929e2015-11-11 12:40:15 -08003502 if (packageName == null) {
3503 return false;
Amith Yamasani71e6c692013-03-24 17:39:28 -07003504 }
Makoto Onukic8a5a552015-11-19 14:29:12 -08003505 final ComponentName deviceOwner = getDeviceOwnerComponentInner(callingUserOnly);
Makoto Onuki70f929e2015-11-11 12:40:15 -08003506 if (deviceOwner == null) {
3507 return false;
3508 }
3509 return packageName.equals(deviceOwner.getPackageName());
Amith Yamasani71e6c692013-03-24 17:39:28 -07003510 }
3511
Makoto Onukic8a5a552015-11-19 14:29:12 -08003512 private ComponentName getDeviceOwnerComponentInner(boolean callingUserOnly) {
3513 if (mService != null) {
3514 try {
3515 return mService.getDeviceOwnerComponent(callingUserOnly);
3516 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003517 throw re.rethrowFromSystemServer();
Makoto Onukic8a5a552015-11-19 14:29:12 -08003518 }
3519 }
3520 return null;
Amith Yamasani3b458ad2013-04-18 18:40:07 -07003521 }
3522
Jason Monkb0dced82014-06-06 14:36:20 -04003523 /**
Makoto Onukic8a5a552015-11-19 14:29:12 -08003524 * @return ID of the user who runs device owner, or {@link UserHandle#USER_NULL} if there's
3525 * no device owner.
3526 *
3527 * <p>Requires the MANAGE_USERS permission.
Makoto Onukia52562c2015-10-01 16:12:31 -07003528 *
3529 * @hide
3530 */
Makoto Onukic8a5a552015-11-19 14:29:12 -08003531 public int getDeviceOwnerUserId() {
3532 if (mService != null) {
3533 try {
3534 return mService.getDeviceOwnerUserId();
3535 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003536 throw re.rethrowFromSystemServer();
Makoto Onukic8a5a552015-11-19 14:29:12 -08003537 }
3538 }
3539 return UserHandle.USER_NULL;
Makoto Onukia52562c2015-10-01 16:12:31 -07003540 }
3541
3542 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003543 * Clears the current device owner. The caller must be the device owner. This function should be
3544 * used cautiously as once it is called it cannot be undone. The device owner can only be set as
3545 * a part of device setup before setup completes.
Jason Monk94d2cf92014-06-18 09:53:34 -04003546 *
3547 * @param packageName The package name of the device owner.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003548 * @throws SecurityException if the caller is not in {@code packageName} or {@code packageName}
3549 * does not own the current device owner component.
Jason Monkb0dced82014-06-06 14:36:20 -04003550 */
Jason Monk94d2cf92014-06-18 09:53:34 -04003551 public void clearDeviceOwnerApp(String packageName) {
Jason Monkb0dced82014-06-06 14:36:20 -04003552 if (mService != null) {
3553 try {
Jason Monk94d2cf92014-06-18 09:53:34 -04003554 mService.clearDeviceOwner(packageName);
Jason Monkb0dced82014-06-06 14:36:20 -04003555 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003556 throw re.rethrowFromSystemServer();
Jason Monkb0dced82014-06-06 14:36:20 -04003557 }
3558 }
3559 }
3560
Makoto Onukia52562c2015-10-01 16:12:31 -07003561 /**
Makoto Onukic8a5a552015-11-19 14:29:12 -08003562 * Returns the device owner package name, only if it's running on the calling user.
3563 *
3564 * <p>Bundled components should use {@code getDeviceOwnerComponentOnCallingUser()} for clarity.
Makoto Onukia52562c2015-10-01 16:12:31 -07003565 *
3566 * @hide
3567 */
Nicolas Prevot465acf32014-08-06 17:03:25 +01003568 @SystemApi
Amith Yamasani71e6c692013-03-24 17:39:28 -07003569 public String getDeviceOwner() {
Makoto Onukic8a5a552015-11-19 14:29:12 -08003570 final ComponentName name = getDeviceOwnerComponentOnCallingUser();
3571 return name != null ? name.getPackageName() : null;
Makoto Onukia52562c2015-10-01 16:12:31 -07003572 }
3573
3574 /**
Makoto Onukic8a5a552015-11-19 14:29:12 -08003575 * @return true if the device is managed by any device owner.
3576 *
3577 * <p>Requires the MANAGE_USERS permission.
Makoto Onukia52562c2015-10-01 16:12:31 -07003578 *
3579 * @hide
3580 */
Makoto Onukic8a5a552015-11-19 14:29:12 -08003581 public boolean isDeviceManaged() {
3582 return getDeviceOwnerComponentOnAnyUser() != null;
3583 }
3584
3585 /**
3586 * Returns the device owner name. Note this method *will* return the device owner
3587 * name when it's running on a different user.
3588 *
3589 * <p>Requires the MANAGE_USERS permission.
3590 *
3591 * @hide
3592 */
Makoto Onukia2b274b2016-01-19 13:26:02 -08003593 @SystemApi
Makoto Onukic8a5a552015-11-19 14:29:12 -08003594 public String getDeviceOwnerNameOnAnyUser() {
Amith Yamasani71e6c692013-03-24 17:39:28 -07003595 if (mService != null) {
3596 try {
Makoto Onukia52562c2015-10-01 16:12:31 -07003597 return mService.getDeviceOwnerName();
Amith Yamasani71e6c692013-03-24 17:39:28 -07003598 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003599 throw re.rethrowFromSystemServer();
Geoffrey Borggaard334c7e32013-08-08 14:31:36 -04003600 }
3601 }
3602 return null;
3603 }
Adam Connors776c5552014-01-09 10:42:56 +00003604
3605 /**
Julia Reynolds94e7bf62015-06-10 14:44:56 -04003606 * @hide
Craig Lafayettee7ee54e2015-09-21 13:48:53 -04003607 * @deprecated Do not use
3608 * @removed
Julia Reynolds20118f12015-02-11 12:34:08 -05003609 */
Craig Lafayettee7ee54e2015-09-21 13:48:53 -04003610 @Deprecated
Julia Reynolds20118f12015-02-11 12:34:08 -05003611 @SystemApi
3612 public String getDeviceInitializerApp() {
Julia Reynolds20118f12015-02-11 12:34:08 -05003613 return null;
3614 }
3615
3616 /**
Julia Reynoldseaafdf722015-04-02 08:49:47 -04003617 * @hide
Craig Lafayettee7ee54e2015-09-21 13:48:53 -04003618 * @deprecated Do not use
3619 * @removed
Julia Reynoldseaafdf722015-04-02 08:49:47 -04003620 */
Craig Lafayettee7ee54e2015-09-21 13:48:53 -04003621 @Deprecated
Julia Reynoldseaafdf722015-04-02 08:49:47 -04003622 @SystemApi
3623 public ComponentName getDeviceInitializerComponent() {
Julia Reynoldseaafdf722015-04-02 08:49:47 -04003624 return null;
3625 }
3626
Julia Reynolds20118f12015-02-11 12:34:08 -05003627 /**
Adam Connors776c5552014-01-09 10:42:56 +00003628 * @hide
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003629 * @deprecated Use #ACTION_SET_PROFILE_OWNER
Amith Yamasaniaba4f1b2014-07-01 15:36:12 +05303630 * Sets the given component as an active admin and registers the package as the profile
3631 * owner for this user. The package must already be installed and there shouldn't be
3632 * an existing profile owner registered for this user. Also, this method must be called
3633 * before the user setup has been completed.
3634 * <p>
3635 * This method can only be called by system apps that hold MANAGE_USERS permission and
3636 * MANAGE_DEVICE_ADMINS permission.
3637 * @param admin The component to register as an active admin and profile owner.
3638 * @param ownerName The user-visible name of the entity that is managing this user.
3639 * @return whether the admin was successfully registered as the profile owner.
3640 * @throws IllegalArgumentException if packageName is null, the package isn't installed, or
3641 * the user has already been set up.
3642 */
Justin Morey80440cc2014-07-24 09:16:35 -05003643 @SystemApi
Robin Lee25e26452015-06-02 09:56:29 -07003644 public boolean setActiveProfileOwner(@NonNull ComponentName admin, @Deprecated String ownerName)
Amith Yamasaniaba4f1b2014-07-01 15:36:12 +05303645 throws IllegalArgumentException {
3646 if (mService != null) {
3647 try {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07003648 final int myUserId = myUserId();
Amith Yamasaniaba4f1b2014-07-01 15:36:12 +05303649 mService.setActiveAdmin(admin, false, myUserId);
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003650 return mService.setProfileOwner(admin, ownerName, myUserId);
Amith Yamasaniaba4f1b2014-07-01 15:36:12 +05303651 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003652 throw re.rethrowFromSystemServer();
Amith Yamasaniaba4f1b2014-07-01 15:36:12 +05303653 }
3654 }
3655 return false;
3656 }
3657
3658 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003659 * Clears the active profile owner and removes all user restrictions. The caller must be from
3660 * the same package as the active profile owner for this user, otherwise a SecurityException
3661 * will be thrown.
3662 * <p>
3663 * This doesn't work for managed profile owners.
Makoto Onuki5bf68022016-01-27 13:49:19 -08003664 *
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003665 * @param admin The component to remove as the profile owner.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003666 * @throws SecurityException if {@code admin} is not an active profile owner.
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003667 */
Robin Lee25e26452015-06-02 09:56:29 -07003668 public void clearProfileOwner(@NonNull ComponentName admin) {
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003669 if (mService != null) {
3670 try {
3671 mService.clearProfileOwner(admin);
3672 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003673 throw re.rethrowFromSystemServer();
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003674 }
3675 }
3676 }
3677
3678 /**
Julia Reynoldse9254402015-02-11 12:34:08 -05003679 * @hide
Robin Lee25e26452015-06-02 09:56:29 -07003680 * Checks whether the user was already setup.
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003681 */
3682 public boolean hasUserSetupCompleted() {
3683 if (mService != null) {
3684 try {
3685 return mService.hasUserSetupCompleted();
3686 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003687 throw re.rethrowFromSystemServer();
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003688 }
3689 }
3690 return true;
3691 }
3692
3693 /**
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003694 * @hide
3695 * Sets the given component as the profile owner of the given user profile. The package must
Nicolas Prevot28063742015-01-08 15:37:12 +00003696 * already be installed. There must not already be a profile owner for this user.
3697 * Only apps with the MANAGE_PROFILE_AND_DEVICE_OWNERS permission and the shell uid can call
3698 * this method.
3699 * Calling this after the setup phase of the specified user has completed is allowed only if:
3700 * - the caller is SYSTEM_UID.
3701 * - or the caller is the shell uid, and there are no accounts on the specified user.
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003702 * @param admin the component name to be registered as profile owner.
3703 * @param ownerName the human readable name of the organisation associated with this DPM.
3704 * @param userHandle the userId to set the profile owner for.
3705 * @return whether the component was successfully registered as the profile owner.
Nicolas Prevot28063742015-01-08 15:37:12 +00003706 * @throws IllegalArgumentException if admin is null, the package isn't installed, or the
3707 * preconditions mentioned are not met.
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003708 */
Robin Lee25e26452015-06-02 09:56:29 -07003709 public boolean setProfileOwner(@NonNull ComponentName admin, @Deprecated String ownerName,
Robin Leeddd553f2015-04-30 14:18:22 +01003710 int userHandle) throws IllegalArgumentException {
Adam Connors776c5552014-01-09 10:42:56 +00003711 if (mService != null) {
3712 try {
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003713 if (ownerName == null) {
3714 ownerName = "";
3715 }
3716 return mService.setProfileOwner(admin, ownerName, userHandle);
Adam Connors776c5552014-01-09 10:42:56 +00003717 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003718 throw re.rethrowFromSystemServer();
Adam Connors776c5552014-01-09 10:42:56 +00003719 }
3720 }
3721 return false;
3722 }
3723
3724 /**
Andrei Stingaceanu6644cd92015-11-10 13:03:31 +00003725 * Sets the device owner information to be shown on the lock screen.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003726 * <p>
3727 * If the device owner information is {@code null} or empty then the device owner info is
Andrei Stingaceanu6644cd92015-11-10 13:03:31 +00003728 * cleared and the user owner info is shown on the lock screen if it is set.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003729 * <p>
3730 * If the device owner information contains only whitespaces then the message on the lock screen
3731 * will be blank and the user will not be allowed to change it.
3732 * <p>
3733 * If the device owner information needs to be localized, it is the responsibility of the
Benjamin Franz3e8a7092016-01-25 16:19:08 +00003734 * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast
3735 * and set a new version of this string accordingly.
3736 *
Andrei Stingaceanu6644cd92015-11-10 13:03:31 +00003737 * @param admin The name of the admin component to check.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003738 * @param info Device owner information which will be displayed instead of the user owner info.
Andrei Stingaceanu6644cd92015-11-10 13:03:31 +00003739 * @return Whether the device owner information has been set.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003740 * @throws SecurityException if {@code admin} is not a device owner.
Andrei Stingaceanu6644cd92015-11-10 13:03:31 +00003741 */
3742 public boolean setDeviceOwnerLockScreenInfo(@NonNull ComponentName admin, String info) {
3743 if (mService != null) {
3744 try {
3745 return mService.setDeviceOwnerLockScreenInfo(admin, info);
3746 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003747 throw re.rethrowFromSystemServer();
Andrei Stingaceanu6644cd92015-11-10 13:03:31 +00003748 }
3749 }
3750 return false;
3751 }
3752
3753 /**
3754 * @return The device owner information. If it is not set returns {@code null}.
3755 */
3756 public String getDeviceOwnerLockScreenInfo() {
3757 if (mService != null) {
3758 try {
3759 return mService.getDeviceOwnerLockScreenInfo();
3760 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003761 throw re.rethrowFromSystemServer();
Andrei Stingaceanu6644cd92015-11-10 13:03:31 +00003762 }
3763 }
3764 return null;
3765 }
3766
3767 /**
Andrei Stingaceanueb84b182016-01-26 18:39:55 +00003768 * Called by device or profile owners to suspend packages for this user.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003769 * <p>
3770 * A suspended package will not be able to start activities. Its notifications will be hidden,
3771 * it will not show up in recents, will not be able to show toasts or dialogs or ring the
3772 * device.
3773 * <p>
3774 * The package must already be installed. If the package is uninstalled while suspended the
3775 * package will no longer be suspended. The admin can block this by using
Kenny Guy871f3eb2016-03-09 20:06:16 +00003776 * {@link #setUninstallBlocked}.
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003777 *
3778 * @param admin The name of the admin component to check.
Andrei Stingaceanueb84b182016-01-26 18:39:55 +00003779 * @param packageNames The package names to suspend or unsuspend.
3780 * @param suspended If set to {@code true} than the packages will be suspended, if set to
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003781 * {@code false} the packages will be unsuspended.
Andrei Stingaceanueb84b182016-01-26 18:39:55 +00003782 * @return an array of package names for which the suspended status is not set as requested in
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003783 * this method.
3784 * @throws SecurityException if {@code admin} is not a device or profile owner.
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003785 */
Andrei Stingaceanueb84b182016-01-26 18:39:55 +00003786 public String[] setPackagesSuspended(@NonNull ComponentName admin, String[] packageNames,
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003787 boolean suspended) {
3788 if (mService != null) {
3789 try {
Andrei Stingaceanueb84b182016-01-26 18:39:55 +00003790 return mService.setPackagesSuspended(admin, packageNames, suspended);
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003791 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003792 throw re.rethrowFromSystemServer();
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003793 }
3794 }
Andrei Stingaceanueb84b182016-01-26 18:39:55 +00003795 return packageNames;
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003796 }
3797
3798 /**
3799 * Called by device or profile owners to determine if a package is suspended.
3800 *
3801 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
3802 * @param packageName The name of the package to retrieve the suspended status of.
Andrei Stingaceanu355b2322016-02-12 16:43:51 +00003803 * @return {@code true} if the package is suspended or {@code false} if the package is not
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003804 * suspended, could not be found or an error occurred.
3805 * @throws SecurityException if {@code admin} is not a device or profile owner.
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003806 */
3807 public boolean getPackageSuspended(@NonNull ComponentName admin, String packageName) {
3808 if (mService != null) {
3809 try {
3810 return mService.getPackageSuspended(admin, packageName);
3811 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003812 throw e.rethrowFromSystemServer();
Andrei Stingaceanu1e283912015-11-26 15:26:28 +00003813 }
3814 }
3815 return false;
3816 }
3817
3818 /**
Alexandra Gherghina512675b2014-04-02 11:23:54 +01003819 * Sets the enabled state of the profile. A profile should be enabled only once it is ready to
3820 * be used. Only the profile owner can call this.
3821 *
Alexandra Gherghinadf35d572014-04-09 13:54:39 +01003822 * @see #isProfileOwnerApp
Alexandra Gherghina512675b2014-04-02 11:23:54 +01003823 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003824 * @throws SecurityException if {@code admin} is not a profile owner.
Alexandra Gherghina512675b2014-04-02 11:23:54 +01003825 */
Robin Lee25e26452015-06-02 09:56:29 -07003826 public void setProfileEnabled(@NonNull ComponentName admin) {
Alexandra Gherghina512675b2014-04-02 11:23:54 +01003827 if (mService != null) {
3828 try {
3829 mService.setProfileEnabled(admin);
3830 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003831 throw e.rethrowFromSystemServer();
Alexandra Gherghina512675b2014-04-02 11:23:54 +01003832 }
3833 }
3834 }
3835
3836 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003837 * Sets the name of the profile. In the device owner case it sets the name of the user which it
3838 * is called from. Only a profile owner or device owner can call this. If this is never called
3839 * by the profile or device owner, the name will be set to default values.
Jessica Hummel1333ea12014-06-23 11:20:10 +01003840 *
3841 * @see #isProfileOwnerApp
3842 * @see #isDeviceOwnerApp
Robin Lee25e26452015-06-02 09:56:29 -07003843 * @param admin Which {@link DeviceAdminReceiver} this request is associate with.
Jessica Hummel1333ea12014-06-23 11:20:10 +01003844 * @param profileName The name of the profile.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003845 * @throws SecurityException if {@code admin} is not a device or profile owner.
Jessica Hummel1333ea12014-06-23 11:20:10 +01003846 */
Robin Lee25e26452015-06-02 09:56:29 -07003847 public void setProfileName(@NonNull ComponentName admin, String profileName) {
Jessica Hummel1333ea12014-06-23 11:20:10 +01003848 if (mService != null) {
3849 try {
Robin Lee25e26452015-06-02 09:56:29 -07003850 mService.setProfileName(admin, profileName);
Fyodor Kupolov78f13142015-05-27 16:52:45 -07003851 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003852 throw e.rethrowFromSystemServer();
Fyodor Kupolov78f13142015-05-27 16:52:45 -07003853 }
Jessica Hummel1333ea12014-06-23 11:20:10 +01003854 }
3855 }
Jessica Hummel1333ea12014-06-23 11:20:10 +01003856
3857 /**
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07003858 * Used to determine if a particular package is registered as the profile owner for the
Makoto Onuki32b30572015-12-11 14:29:51 -08003859 * user. A profile owner is a special device admin that has additional privileges
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07003860 * within the profile.
Adam Connors776c5552014-01-09 10:42:56 +00003861 *
3862 * @param packageName The package name of the app to compare with the registered profile owner.
3863 * @return Whether or not the package is registered as the profile owner.
3864 */
3865 public boolean isProfileOwnerApp(String packageName) {
3866 if (mService != null) {
3867 try {
Makoto Onuki90b89652016-01-28 14:44:18 -08003868 ComponentName profileOwner = mService.getProfileOwner(myUserId());
Nicolas Prevot90af6d72014-07-30 14:19:12 +01003869 return profileOwner != null
3870 && profileOwner.getPackageName().equals(packageName);
Adam Connors776c5552014-01-09 10:42:56 +00003871 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003872 throw re.rethrowFromSystemServer();
Adam Connors776c5552014-01-09 10:42:56 +00003873 }
3874 }
3875 return false;
3876 }
3877
3878 /**
3879 * @hide
Robin Lee25e26452015-06-02 09:56:29 -07003880 * @return the packageName of the owner of the given user profile or {@code null} if no profile
Adam Connors776c5552014-01-09 10:42:56 +00003881 * owner has been set for that user.
3882 * @throws IllegalArgumentException if the userId is invalid.
3883 */
Nicolas Prevot465acf32014-08-06 17:03:25 +01003884 @SystemApi
Amith Yamasanibf3a9462014-07-28 14:26:42 -07003885 public ComponentName getProfileOwner() throws IllegalArgumentException {
Zoltan Szatmary-Ban3f1ddf82014-07-02 16:42:05 +01003886 return getProfileOwnerAsUser(Process.myUserHandle().getIdentifier());
3887 }
3888
3889 /**
3890 * @see #getProfileOwner()
3891 * @hide
3892 */
3893 public ComponentName getProfileOwnerAsUser(final int userId) throws IllegalArgumentException {
Adam Connors776c5552014-01-09 10:42:56 +00003894 if (mService != null) {
3895 try {
Zoltan Szatmary-Ban3f1ddf82014-07-02 16:42:05 +01003896 return mService.getProfileOwner(userId);
Adam Connors776c5552014-01-09 10:42:56 +00003897 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003898 throw re.rethrowFromSystemServer();
Adam Connors776c5552014-01-09 10:42:56 +00003899 }
3900 }
3901 return null;
3902 }
3903
3904 /**
3905 * @hide
Robin Lee25e26452015-06-02 09:56:29 -07003906 * @return the human readable name of the organisation associated with this DPM or {@code null}
3907 * if one is not set.
Adam Connors776c5552014-01-09 10:42:56 +00003908 * @throws IllegalArgumentException if the userId is invalid.
3909 */
3910 public String getProfileOwnerName() throws IllegalArgumentException {
3911 if (mService != null) {
3912 try {
3913 return mService.getProfileOwnerName(Process.myUserHandle().getIdentifier());
3914 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003915 throw re.rethrowFromSystemServer();
Adam Connors776c5552014-01-09 10:42:56 +00003916 }
3917 }
3918 return null;
3919 }
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003920
3921 /**
Amith Yamasani38f836b2014-08-20 14:51:15 -07003922 * @hide
Makoto Onukic8a5a552015-11-19 14:29:12 -08003923 * @param userId The user for whom to fetch the profile owner name, if any.
Amith Yamasani38f836b2014-08-20 14:51:15 -07003924 * @return the human readable name of the organisation associated with this profile owner or
3925 * null if one is not set.
3926 * @throws IllegalArgumentException if the userId is invalid.
3927 */
3928 @SystemApi
Selim Cinek24ac55e2014-08-27 12:51:45 +02003929 public String getProfileOwnerNameAsUser(int userId) throws IllegalArgumentException {
Amith Yamasani38f836b2014-08-20 14:51:15 -07003930 if (mService != null) {
3931 try {
Selim Cinek24ac55e2014-08-27 12:51:45 +02003932 return mService.getProfileOwnerName(userId);
Amith Yamasani38f836b2014-08-20 14:51:15 -07003933 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003934 throw re.rethrowFromSystemServer();
Amith Yamasani38f836b2014-08-20 14:51:15 -07003935 }
3936 }
3937 return null;
3938 }
3939
3940 /**
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003941 * Called by a profile owner or device owner to add a default intent handler activity for
3942 * intents that match a certain intent filter. This activity will remain the default intent
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003943 * handler even if the set of potential event handlers for the intent filter changes and if the
3944 * intent preferences are reset.
3945 * <p>
3946 * The default disambiguation mechanism takes over if the activity is not installed (anymore).
3947 * When the activity is (re)installed, it is automatically reset as default intent handler for
3948 * the filter.
3949 * <p>
3950 * The calling device admin must be a profile owner or device owner. If it is not, a security
3951 * exception will be thrown.
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003952 *
3953 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
3954 * @param filter The IntentFilter for which a default handler is added.
3955 * @param activity The Activity that is added as default intent handler.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003956 * @throws SecurityException if {@code admin} is not a device or profile owner.
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003957 */
Robin Lee25e26452015-06-02 09:56:29 -07003958 public void addPersistentPreferredActivity(@NonNull ComponentName admin, IntentFilter filter,
3959 @NonNull ComponentName activity) {
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003960 if (mService != null) {
3961 try {
3962 mService.addPersistentPreferredActivity(admin, filter, activity);
3963 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003964 throw e.rethrowFromSystemServer();
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003965 }
3966 }
3967 }
3968
3969 /**
3970 * Called by a profile owner or device owner to remove all persistent intent handler preferences
Torne (Richard Coles)875e2102014-02-24 14:11:56 +00003971 * associated with the given package that were set by {@link #addPersistentPreferredActivity}.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003972 * <p>
3973 * The calling device admin must be a profile owner. If it is not, a security exception will be
3974 * thrown.
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003975 *
3976 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
3977 * @param packageName The name of the package for which preferences are removed.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07003978 * @throws SecurityException if {@code admin} is not a device or profile owner.
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003979 */
Robin Lee25e26452015-06-02 09:56:29 -07003980 public void clearPackagePersistentPreferredActivities(@NonNull ComponentName admin,
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003981 String packageName) {
3982 if (mService != null) {
3983 try {
3984 mService.clearPackagePersistentPreferredActivities(admin, packageName);
3985 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07003986 throw e.rethrowFromSystemServer();
Sander Alewijnsef475ca32014-02-17 15:13:58 +00003987 }
3988 }
3989 }
Robin Lee66e5d962014-04-09 16:44:21 +01003990
3991 /**
Esteban Talaverabf60f722015-12-10 16:26:44 +00003992 * Called by a profile owner or device owner to grant permission to a package to manage
3993 * application restrictions for the calling user via {@link #setApplicationRestrictions} and
3994 * {@link #getApplicationRestrictions}.
3995 * <p>
3996 * This permission is persistent until it is later cleared by calling this method with a
3997 * {@code null} value or uninstalling the managing package.
Rubin Xuf03d0a62016-02-10 14:54:15 +00003998 * <p>
3999 * The supplied application restriction managing package must be installed when calling this
Victor Changcd14c0a2016-03-16 19:10:15 +00004000 * API, otherwise an {@link NameNotFoundException} will be thrown.
Esteban Talaverabf60f722015-12-10 16:26:44 +00004001 *
4002 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4003 * @param packageName The package name which will be given access to application restrictions
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004004 * APIs. If {@code null} is given the current package will be cleared.
4005 * @throws SecurityException if {@code admin} is not a device or profile owner.
Victor Changcd14c0a2016-03-16 19:10:15 +00004006 * @throws NameNotFoundException if {@code packageName} is not found
Esteban Talaverabf60f722015-12-10 16:26:44 +00004007 */
4008 public void setApplicationRestrictionsManagingPackage(@NonNull ComponentName admin,
Victor Changcd14c0a2016-03-16 19:10:15 +00004009 @Nullable String packageName) throws NameNotFoundException {
Esteban Talaverabf60f722015-12-10 16:26:44 +00004010 if (mService != null) {
4011 try {
Victor Changcd14c0a2016-03-16 19:10:15 +00004012 if (!mService.setApplicationRestrictionsManagingPackage(admin, packageName)) {
4013 throw new NameNotFoundException(packageName);
4014 }
Esteban Talaverabf60f722015-12-10 16:26:44 +00004015 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004016 throw e.rethrowFromSystemServer();
Esteban Talaverabf60f722015-12-10 16:26:44 +00004017 }
4018 }
4019 }
4020
4021 /**
4022 * Called by a profile owner or device owner to retrieve the application restrictions managing
4023 * package for the current user, or {@code null} if none is set.
4024 *
4025 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4026 * @return The package name allowed to manage application restrictions on the current user, or
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004027 * {@code null} if none is set.
4028 * @throws SecurityException if {@code admin} is not a device or profile owner.
Esteban Talaverabf60f722015-12-10 16:26:44 +00004029 */
4030 public String getApplicationRestrictionsManagingPackage(@NonNull ComponentName admin) {
4031 if (mService != null) {
4032 try {
4033 return mService.getApplicationRestrictionsManagingPackage(admin);
4034 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004035 throw e.rethrowFromSystemServer();
Esteban Talaverabf60f722015-12-10 16:26:44 +00004036 }
4037 }
4038 return null;
4039 }
4040
4041 /**
Esteban Talavera96895ca2016-03-16 12:00:40 +00004042 * Called by any application to find out whether it has been granted permission via
4043 * {@link #setApplicationRestrictionsManagingPackage} to manage application restrictions
4044 * for the calling user.
4045 *
4046 * <p>This is done by comparing the calling Linux uid with the uid of the package specified by
4047 * that method.
Esteban Talaverabf60f722015-12-10 16:26:44 +00004048 */
4049 public boolean isCallerApplicationRestrictionsManagingPackage() {
4050 if (mService != null) {
4051 try {
4052 return mService.isCallerApplicationRestrictionsManagingPackage();
4053 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004054 throw e.rethrowFromSystemServer();
Esteban Talaverabf60f722015-12-10 16:26:44 +00004055 }
4056 }
4057 return false;
4058 }
4059
4060 /**
4061 * Sets the application restrictions for a given target application running in the calling user.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004062 * <p>
4063 * The caller must be a profile or device owner on that user, or the package allowed to manage
4064 * application restrictions via {@link #setApplicationRestrictionsManagingPackage}; otherwise a
4065 * security exception will be thrown.
4066 * <p>
4067 * The provided {@link Bundle} consists of key-value pairs, where the types of values may be:
Esteban Talavera6b8e0642015-08-10 17:26:04 +01004068 * <ul>
4069 * <li>{@code boolean}
4070 * <li>{@code int}
4071 * <li>{@code String} or {@code String[]}
4072 * <li>From {@link android.os.Build.VERSION_CODES#M}, {@code Bundle} or {@code Bundle[]}
4073 * </ul>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004074 * <p>
4075 * If the restrictions are not available yet, but may be applied in the near future, the caller
4076 * can notify the target application of that by adding
Sander Alewijnse53d63dc2014-11-07 21:43:00 +00004077 * {@link UserManager#KEY_RESTRICTIONS_PENDING} to the settings parameter.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004078 * <p>
4079 * The application restrictions are only made visible to the target application via
4080 * {@link UserManager#getApplicationRestrictions(String)}, in addition to the profile or device
4081 * owner, and the application restrictions managing package via
Esteban Talaverabf60f722015-12-10 16:26:44 +00004082 * {@link #getApplicationRestrictions}.
Robin Lee66e5d962014-04-09 16:44:21 +01004083 *
Esteban Talaverabf60f722015-12-10 16:26:44 +00004084 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004085 * {@code null} if called by the application restrictions managing package.
Robin Lee66e5d962014-04-09 16:44:21 +01004086 * @param packageName The name of the package to update restricted settings for.
4087 * @param settings A {@link Bundle} to be parsed by the receiving application, conveying a new
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004088 * set of active restrictions.
4089 * @throws SecurityException if {@code admin} is not a device or profile owner.
Esteban Talaverabf60f722015-12-10 16:26:44 +00004090 * @see #setApplicationRestrictionsManagingPackage
Sander Alewijnse53d63dc2014-11-07 21:43:00 +00004091 * @see UserManager#KEY_RESTRICTIONS_PENDING
Robin Lee66e5d962014-04-09 16:44:21 +01004092 */
Esteban Talaverabf60f722015-12-10 16:26:44 +00004093 public void setApplicationRestrictions(@Nullable ComponentName admin, String packageName,
Robin Lee66e5d962014-04-09 16:44:21 +01004094 Bundle settings) {
4095 if (mService != null) {
4096 try {
4097 mService.setApplicationRestrictions(admin, packageName, settings);
4098 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004099 throw e.rethrowFromSystemServer();
Robin Lee66e5d962014-04-09 16:44:21 +01004100 }
4101 }
4102 }
4103
4104 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004105 * Sets a list of configuration features to enable for a TrustAgent component. This is meant to
4106 * be used in conjunction with {@link #KEYGUARD_DISABLE_TRUST_AGENTS}, which disables all trust
4107 * agents but those enabled by this function call. If flag
Jim Millere303bf42014-08-26 17:12:29 -07004108 * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} is not set, then this call has no effect.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004109 * <p>
4110 * The calling device admin must have requested
4111 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES} to be able to call this method;
4112 * if not, a security exception will be thrown.
Jim Miller604e7552014-07-18 19:00:02 -07004113 *
4114 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Jim Millere303bf42014-08-26 17:12:29 -07004115 * @param target Component name of the agent to be enabled.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004116 * @param configuration TrustAgent-specific feature bundle. If null for any admin, agent will be
4117 * strictly disabled according to the state of the
4118 * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} flag.
4119 * <p>
4120 * If {@link #KEYGUARD_DISABLE_TRUST_AGENTS} is set and options is not null for all
4121 * admins, then it's up to the TrustAgent itself to aggregate the values from all
4122 * device admins.
4123 * <p>
4124 * Consult documentation for the specific TrustAgent to determine legal options
4125 * parameters.
4126 * @throws SecurityException if {@code admin} is not an active administrator or does not use
4127 * {@link DeviceAdminInfo#USES_POLICY_DISABLE_KEYGUARD_FEATURES}
Jim Miller604e7552014-07-18 19:00:02 -07004128 */
Robin Lee25e26452015-06-02 09:56:29 -07004129 public void setTrustAgentConfiguration(@NonNull ComponentName admin,
4130 @NonNull ComponentName target, PersistableBundle configuration) {
Jim Miller604e7552014-07-18 19:00:02 -07004131 if (mService != null) {
4132 try {
Fyodor Kupolovbdc58c62015-01-29 13:24:03 -08004133 mService.setTrustAgentConfiguration(admin, target, configuration);
Jim Miller604e7552014-07-18 19:00:02 -07004134 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004135 throw e.rethrowFromSystemServer();
Jim Miller604e7552014-07-18 19:00:02 -07004136 }
4137 }
4138 }
4139
4140 /**
Jim Millere303bf42014-08-26 17:12:29 -07004141 * Gets configuration for the given trust agent based on aggregating all calls to
4142 * {@link #setTrustAgentConfiguration(ComponentName, ComponentName, PersistableBundle)} for
4143 * all device admins.
Jim Miller604e7552014-07-18 19:00:02 -07004144 *
Jim Millerb5db57a2015-01-14 18:17:19 -08004145 * @param admin Which {@link DeviceAdminReceiver} this request is associated with. If null,
4146 * this function returns a list of configurations for all admins that declare
4147 * {@link #KEYGUARD_DISABLE_TRUST_AGENTS}. If any admin declares
4148 * {@link #KEYGUARD_DISABLE_TRUST_AGENTS} but doesn't call
4149 * {@link #setTrustAgentConfiguration(ComponentName, ComponentName, PersistableBundle)}
4150 * for this {@param agent} or calls it with a null configuration, null is returned.
Jim Miller604e7552014-07-18 19:00:02 -07004151 * @param agent Which component to get enabled features for.
Jim Millere303bf42014-08-26 17:12:29 -07004152 * @return configuration for the given trust agent.
Jim Miller604e7552014-07-18 19:00:02 -07004153 */
Robin Lee25e26452015-06-02 09:56:29 -07004154 public List<PersistableBundle> getTrustAgentConfiguration(@Nullable ComponentName admin,
4155 @NonNull ComponentName agent) {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07004156 return getTrustAgentConfiguration(admin, agent, myUserId());
Jim Millere303bf42014-08-26 17:12:29 -07004157 }
4158
4159 /** @hide per-user version */
Robin Lee25e26452015-06-02 09:56:29 -07004160 public List<PersistableBundle> getTrustAgentConfiguration(@Nullable ComponentName admin,
4161 @NonNull ComponentName agent, int userHandle) {
Jim Miller604e7552014-07-18 19:00:02 -07004162 if (mService != null) {
4163 try {
Jim Millere303bf42014-08-26 17:12:29 -07004164 return mService.getTrustAgentConfiguration(admin, agent, userHandle);
Jim Miller604e7552014-07-18 19:00:02 -07004165 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004166 throw e.rethrowFromSystemServer();
Jim Miller604e7552014-07-18 19:00:02 -07004167 }
4168 }
Jim Millere303bf42014-08-26 17:12:29 -07004169 return new ArrayList<PersistableBundle>(); // empty list
Jim Miller604e7552014-07-18 19:00:02 -07004170 }
4171
4172 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004173 * Called by a profile owner of a managed profile to set whether caller-Id information from the
4174 * managed profile will be shown in the parent profile, for incoming calls.
4175 * <p>
4176 * The calling device admin must be a profile owner. If it is not, a security exception will be
4177 * thrown.
Adam Connors210fe212014-07-17 15:41:43 +01004178 *
Robin Lee25e26452015-06-02 09:56:29 -07004179 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Adam Connors210fe212014-07-17 15:41:43 +01004180 * @param disabled If true caller-Id information in the managed profile is not displayed.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004181 * @throws SecurityException if {@code admin} is not a device or profile owner.
Adam Connors210fe212014-07-17 15:41:43 +01004182 */
Robin Lee25e26452015-06-02 09:56:29 -07004183 public void setCrossProfileCallerIdDisabled(@NonNull ComponentName admin, boolean disabled) {
Adam Connors210fe212014-07-17 15:41:43 +01004184 if (mService != null) {
4185 try {
Robin Lee25e26452015-06-02 09:56:29 -07004186 mService.setCrossProfileCallerIdDisabled(admin, disabled);
Adam Connors210fe212014-07-17 15:41:43 +01004187 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004188 throw e.rethrowFromSystemServer();
Adam Connors210fe212014-07-17 15:41:43 +01004189 }
4190 }
4191 }
4192
4193 /**
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07004194 * Called by a profile owner of a managed profile to determine whether or not caller-Id
4195 * information has been disabled.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004196 * <p>
4197 * The calling device admin must be a profile owner. If it is not, a security exception will be
4198 * thrown.
Adam Connors210fe212014-07-17 15:41:43 +01004199 *
Robin Lee25e26452015-06-02 09:56:29 -07004200 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004201 * @throws SecurityException if {@code admin} is not a device or profile owner.
Adam Connors210fe212014-07-17 15:41:43 +01004202 */
Robin Lee25e26452015-06-02 09:56:29 -07004203 public boolean getCrossProfileCallerIdDisabled(@NonNull ComponentName admin) {
Adam Connors210fe212014-07-17 15:41:43 +01004204 if (mService != null) {
4205 try {
Robin Lee25e26452015-06-02 09:56:29 -07004206 return mService.getCrossProfileCallerIdDisabled(admin);
Adam Connors210fe212014-07-17 15:41:43 +01004207 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004208 throw e.rethrowFromSystemServer();
Adam Connors210fe212014-07-17 15:41:43 +01004209 }
4210 }
4211 return false;
4212 }
4213
4214 /**
Amith Yamasani570002f2014-07-18 15:48:54 -07004215 * Determine whether or not caller-Id information has been disabled.
4216 *
4217 * @param userHandle The user for whom to check the caller-id permission
4218 * @hide
4219 */
4220 public boolean getCrossProfileCallerIdDisabled(UserHandle userHandle) {
4221 if (mService != null) {
4222 try {
4223 return mService.getCrossProfileCallerIdDisabledForUser(userHandle.getIdentifier());
4224 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004225 throw e.rethrowFromSystemServer();
Amith Yamasani570002f2014-07-18 15:48:54 -07004226 }
4227 }
4228 return false;
4229 }
4230
4231 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004232 * Called by a profile owner of a managed profile to set whether contacts search from the
4233 * managed profile will be shown in the parent profile, for incoming calls.
4234 * <p>
4235 * The calling device admin must be a profile owner. If it is not, a security exception will be
4236 * thrown.
Victor Chang1060c6182016-01-04 20:16:23 +00004237 *
4238 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4239 * @param disabled If true contacts search in the managed profile is not displayed.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004240 * @throws SecurityException if {@code admin} is not a device or profile owner.
Victor Chang1060c6182016-01-04 20:16:23 +00004241 */
4242 public void setCrossProfileContactsSearchDisabled(@NonNull ComponentName admin,
4243 boolean disabled) {
4244 if (mService != null) {
4245 try {
4246 mService.setCrossProfileContactsSearchDisabled(admin, disabled);
4247 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004248 throw e.rethrowFromSystemServer();
Victor Chang1060c6182016-01-04 20:16:23 +00004249 }
4250 }
4251 }
4252
4253 /**
4254 * Called by a profile owner of a managed profile to determine whether or not contacts search
4255 * has been disabled.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004256 * <p>
4257 * The calling device admin must be a profile owner. If it is not, a security exception will be
4258 * thrown.
Victor Chang1060c6182016-01-04 20:16:23 +00004259 *
4260 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004261 * @throws SecurityException if {@code admin} is not a device or profile owner.
Victor Chang1060c6182016-01-04 20:16:23 +00004262 */
4263 public boolean getCrossProfileContactsSearchDisabled(@NonNull ComponentName admin) {
4264 if (mService != null) {
4265 try {
4266 return mService.getCrossProfileContactsSearchDisabled(admin);
4267 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004268 throw e.rethrowFromSystemServer();
Victor Chang1060c6182016-01-04 20:16:23 +00004269 }
4270 }
4271 return false;
4272 }
4273
4274
4275 /**
4276 * Determine whether or not contacts search has been disabled.
4277 *
4278 * @param userHandle The user for whom to check the contacts search permission
4279 * @hide
4280 */
4281 public boolean getCrossProfileContactsSearchDisabled(@NonNull UserHandle userHandle) {
4282 if (mService != null) {
4283 try {
4284 return mService
4285 .getCrossProfileContactsSearchDisabledForUser(userHandle.getIdentifier());
4286 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004287 throw e.rethrowFromSystemServer();
Victor Chang1060c6182016-01-04 20:16:23 +00004288 }
4289 }
4290 return false;
4291 }
4292
4293 /**
Makoto Onuki32b30572015-12-11 14:29:51 -08004294 * Start Quick Contact on the managed profile for the user, if the policy allows.
Victor Chang97bdacc2016-01-21 22:24:11 +00004295 *
Makoto Onuki1040da12015-03-19 11:24:00 -07004296 * @hide
4297 */
4298 public void startManagedQuickContact(String actualLookupKey, long actualContactId,
Victor Chang97bdacc2016-01-21 22:24:11 +00004299 boolean isContactIdIgnored, long directoryId, Intent originalIntent) {
Makoto Onuki1040da12015-03-19 11:24:00 -07004300 if (mService != null) {
4301 try {
Victor Chang97bdacc2016-01-21 22:24:11 +00004302 mService.startManagedQuickContact(actualLookupKey, actualContactId,
4303 isContactIdIgnored, directoryId, originalIntent);
Makoto Onuki1040da12015-03-19 11:24:00 -07004304 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004305 throw e.rethrowFromSystemServer();
Makoto Onuki1040da12015-03-19 11:24:00 -07004306 }
4307 }
4308 }
4309
4310 /**
Makoto Onuki32b30572015-12-11 14:29:51 -08004311 * Start Quick Contact on the managed profile for the user, if the policy allows.
Ricky Wai494b95d2015-11-20 16:07:15 +00004312 * @hide
4313 */
4314 public void startManagedQuickContact(String actualLookupKey, long actualContactId,
4315 Intent originalIntent) {
Victor Chang97bdacc2016-01-21 22:24:11 +00004316 startManagedQuickContact(actualLookupKey, actualContactId, false, Directory.DEFAULT,
Ricky Wai494b95d2015-11-20 16:07:15 +00004317 originalIntent);
4318 }
4319
4320 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004321 * Called by a profile owner of a managed profile to set whether bluetooth devices can access
4322 * enterprise contacts.
Ricky Wai778ba132015-03-31 14:21:22 +01004323 * <p>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004324 * The calling device admin must be a profile owner. If it is not, a security exception will be
4325 * thrown.
Ricky Wai778ba132015-03-31 14:21:22 +01004326 * <p>
4327 * This API works on managed profile only.
4328 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004329 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4330 * @param disabled If true, bluetooth devices cannot access enterprise contacts.
4331 * @throws SecurityException if {@code admin} is not a device or profile owner.
Ricky Wai778ba132015-03-31 14:21:22 +01004332 */
Robin Lee25e26452015-06-02 09:56:29 -07004333 public void setBluetoothContactSharingDisabled(@NonNull ComponentName admin, boolean disabled) {
Ricky Wai778ba132015-03-31 14:21:22 +01004334 if (mService != null) {
4335 try {
Robin Lee25e26452015-06-02 09:56:29 -07004336 mService.setBluetoothContactSharingDisabled(admin, disabled);
Ricky Wai778ba132015-03-31 14:21:22 +01004337 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004338 throw e.rethrowFromSystemServer();
Ricky Wai778ba132015-03-31 14:21:22 +01004339 }
4340 }
4341 }
4342
4343 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004344 * Called by a profile owner of a managed profile to determine whether or not Bluetooth devices
4345 * cannot access enterprise contacts.
Ricky Wai778ba132015-03-31 14:21:22 +01004346 * <p>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004347 * The calling device admin must be a profile owner. If it is not, a security exception will be
4348 * thrown.
Ricky Wai778ba132015-03-31 14:21:22 +01004349 * <p>
4350 * This API works on managed profile only.
4351 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004352 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4353 * @throws SecurityException if {@code admin} is not a device or profile owner.
Ricky Wai778ba132015-03-31 14:21:22 +01004354 */
Robin Lee25e26452015-06-02 09:56:29 -07004355 public boolean getBluetoothContactSharingDisabled(@NonNull ComponentName admin) {
Ricky Wai778ba132015-03-31 14:21:22 +01004356 if (mService != null) {
4357 try {
Robin Lee25e26452015-06-02 09:56:29 -07004358 return mService.getBluetoothContactSharingDisabled(admin);
Ricky Wai778ba132015-03-31 14:21:22 +01004359 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004360 throw e.rethrowFromSystemServer();
Ricky Wai778ba132015-03-31 14:21:22 +01004361 }
4362 }
4363 return true;
4364 }
4365
4366 /**
4367 * Determine whether or not Bluetooth devices cannot access contacts.
4368 * <p>
4369 * This API works on managed profile UserHandle only.
4370 *
4371 * @param userHandle The user for whom to check the caller-id permission
4372 * @hide
4373 */
4374 public boolean getBluetoothContactSharingDisabled(UserHandle userHandle) {
4375 if (mService != null) {
4376 try {
4377 return mService.getBluetoothContactSharingDisabledForUser(userHandle
4378 .getIdentifier());
4379 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004380 throw e.rethrowFromSystemServer();
Ricky Wai778ba132015-03-31 14:21:22 +01004381 }
4382 }
4383 return true;
4384 }
4385
4386 /**
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07004387 * Called by the profile owner of a managed profile so that some intents sent in the managed
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004388 * profile can also be resolved in the parent, or vice versa. Only activity intents are
4389 * supported.
Nicolas Prevotfc7b4442014-12-17 15:28:29 +00004390 *
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004391 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Nicolas Prevot81948992014-05-16 18:25:26 +01004392 * @param filter The {@link IntentFilter} the intent has to match to be also resolved in the
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004393 * other profile
Nicolas Prevot41d926e2014-06-09 11:48:56 +01004394 * @param flags {@link DevicePolicyManager#FLAG_MANAGED_CAN_ACCESS_PARENT} and
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004395 * {@link DevicePolicyManager#FLAG_PARENT_CAN_ACCESS_MANAGED} are supported.
4396 * @throws SecurityException if {@code admin} is not a device or profile owner.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004397 */
Robin Lee25e26452015-06-02 09:56:29 -07004398 public void addCrossProfileIntentFilter(@NonNull ComponentName admin, IntentFilter filter, int flags) {
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004399 if (mService != null) {
4400 try {
Nicolas Prevot81948992014-05-16 18:25:26 +01004401 mService.addCrossProfileIntentFilter(admin, filter, flags);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004402 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004403 throw e.rethrowFromSystemServer();
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004404 }
4405 }
4406 }
4407
4408 /**
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07004409 * Called by a profile owner of a managed profile to remove the cross-profile intent filters
4410 * that go from the managed profile to the parent, or from the parent to the managed profile.
Nicolas Prevot3f7777f2014-07-24 15:58:39 +01004411 * Only removes those that have been set by the profile owner.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004412 *
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004413 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004414 * @throws SecurityException if {@code admin} is not a device or profile owner.
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004415 */
Robin Lee25e26452015-06-02 09:56:29 -07004416 public void clearCrossProfileIntentFilters(@NonNull ComponentName admin) {
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004417 if (mService != null) {
4418 try {
Nicolas Prevot81948992014-05-16 18:25:26 +01004419 mService.clearCrossProfileIntentFilters(admin);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004420 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004421 throw e.rethrowFromSystemServer();
Nicolas Prevot10fa67c2014-03-24 13:44:38 +00004422 }
4423 }
4424 }
4425
4426 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004427 * Called by a profile or device owner to set the permitted accessibility services. When set by
4428 * a device owner or profile owner the restriction applies to all profiles of the user the
4429 * device owner or profile owner is an admin for. By default the user can use any accessiblity
4430 * service. When zero or more packages have been added, accessiblity services that are not in
4431 * the list and not part of the system can not be enabled by the user.
4432 * <p>
4433 * Calling with a null value for the list disables the restriction so that all services can be
4434 * used, calling with an empty list only allows the builtin system's services.
4435 * <p>
4436 * System accesibility services are always available to the user the list can't modify this.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004437 *
4438 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4439 * @param packageNames List of accessibility service package names.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004440 * @return true if setting the restriction succeeded. It fail if there is one or more non-system
4441 * accessibility services enabled, that are not in the list.
4442 * @throws SecurityException if {@code admin} is not a device or profile owner.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004443 */
Robin Lee25e26452015-06-02 09:56:29 -07004444 public boolean setPermittedAccessibilityServices(@NonNull ComponentName admin,
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004445 List<String> packageNames) {
4446 if (mService != null) {
4447 try {
4448 return mService.setPermittedAccessibilityServices(admin, packageNames);
4449 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004450 throw e.rethrowFromSystemServer();
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004451 }
4452 }
4453 return false;
4454 }
4455
4456 /**
4457 * Returns the list of permitted accessibility services set by this device or profile owner.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004458 * <p>
4459 * An empty list means no accessibility services except system services are allowed. Null means
4460 * all accessibility services are allowed.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004461 *
4462 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4463 * @return List of accessiblity service package names.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004464 * @throws SecurityException if {@code admin} is not a device or profile owner.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004465 */
Robin Lee25e26452015-06-02 09:56:29 -07004466 public List<String> getPermittedAccessibilityServices(@NonNull ComponentName admin) {
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004467 if (mService != null) {
4468 try {
4469 return mService.getPermittedAccessibilityServices(admin);
4470 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004471 throw e.rethrowFromSystemServer();
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004472 }
4473 }
4474 return null;
4475 }
4476
4477 /**
Sudheer Shanka56925862016-01-28 19:43:59 +00004478 * Called by the system to check if a specific accessibility service is disabled by admin.
4479 *
4480 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4481 * @param packageName Accessibility service package name that needs to be checked.
4482 * @param userHandle user id the admin is running as.
4483 * @return true if the accessibility service is permitted, otherwise false.
4484 *
4485 * @hide
4486 */
4487 public boolean isAccessibilityServicePermittedByAdmin(@NonNull ComponentName admin,
4488 @NonNull String packageName, int userHandle) {
4489 if (mService != null) {
4490 try {
4491 return mService.isAccessibilityServicePermittedByAdmin(admin, packageName,
4492 userHandle);
4493 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004494 throw e.rethrowFromSystemServer();
Sudheer Shanka56925862016-01-28 19:43:59 +00004495 }
4496 }
4497 return false;
4498 }
4499
4500 /**
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004501 * Returns the list of accessibility services permitted by the device or profiles
4502 * owners of this user.
4503 *
4504 * <p>Null means all accessibility services are allowed, if a non-null list is returned
4505 * it will contain the intersection of the permitted lists for any device or profile
4506 * owners that apply to this user. It will also include any system accessibility services.
4507 *
4508 * @param userId which user to check for.
4509 * @return List of accessiblity service package names.
4510 * @hide
4511 */
4512 @SystemApi
4513 public List<String> getPermittedAccessibilityServices(int userId) {
4514 if (mService != null) {
4515 try {
4516 return mService.getPermittedAccessibilityServicesForUser(userId);
4517 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004518 throw e.rethrowFromSystemServer();
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004519 }
4520 }
4521 return null;
4522 }
4523
4524 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004525 * Called by a profile or device owner to set the permitted input methods services. When set by
4526 * a device owner or profile owner the restriction applies to all profiles of the user the
4527 * device owner or profile owner is an admin for. By default the user can use any input method.
4528 * When zero or more packages have been added, input method that are not in the list and not
4529 * part of the system can not be enabled by the user. This method will fail if it is called for
4530 * a admin that is not for the foreground user or a profile of the foreground user.
4531 * <p>
4532 * Calling with a null value for the list disables the restriction so that all input methods can
4533 * be used, calling with an empty list disables all but the system's own input methods.
4534 * <p>
4535 * System input methods are always available to the user this method can't modify this.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004536 *
4537 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4538 * @param packageNames List of input method package names.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004539 * @return true if setting the restriction succeeded. It will fail if there are one or more
4540 * non-system input methods currently enabled that are not in the packageNames list.
4541 * @throws SecurityException if {@code admin} is not a device or profile owner.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004542 */
Robin Lee25e26452015-06-02 09:56:29 -07004543 public boolean setPermittedInputMethods(@NonNull ComponentName admin, List<String> packageNames) {
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004544 if (mService != null) {
4545 try {
4546 return mService.setPermittedInputMethods(admin, packageNames);
4547 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004548 throw e.rethrowFromSystemServer();
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004549 }
4550 }
4551 return false;
4552 }
4553
4554
4555 /**
4556 * Returns the list of permitted input methods set by this device or profile owner.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004557 * <p>
4558 * An empty list means no input methods except system input methods are allowed. Null means all
4559 * input methods are allowed.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004560 *
4561 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4562 * @return List of input method package names.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004563 * @throws SecurityException if {@code admin} is not a device or profile owner.
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004564 */
Robin Lee25e26452015-06-02 09:56:29 -07004565 public List<String> getPermittedInputMethods(@NonNull ComponentName admin) {
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004566 if (mService != null) {
4567 try {
4568 return mService.getPermittedInputMethods(admin);
4569 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004570 throw e.rethrowFromSystemServer();
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004571 }
4572 }
4573 return null;
4574 }
4575
4576 /**
Sudheer Shanka56925862016-01-28 19:43:59 +00004577 * Called by the system to check if a specific input method is disabled by admin.
4578 *
4579 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4580 * @param packageName Input method package name that needs to be checked.
4581 * @param userHandle user id the admin is running as.
4582 * @return true if the input method is permitted, otherwise false.
4583 *
4584 * @hide
4585 */
4586 public boolean isInputMethodPermittedByAdmin(@NonNull ComponentName admin,
4587 @NonNull String packageName, int userHandle) {
4588 if (mService != null) {
4589 try {
4590 return mService.isInputMethodPermittedByAdmin(admin, packageName, userHandle);
4591 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004592 throw e.rethrowFromSystemServer();
Sudheer Shanka56925862016-01-28 19:43:59 +00004593 }
4594 }
4595 return false;
4596 }
4597
4598 /**
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004599 * Returns the list of input methods permitted by the device or profiles
Makoto Onuki32b30572015-12-11 14:29:51 -08004600 * owners of the current user. (*Not* calling user, due to a limitation in InputMethodManager.)
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004601 *
4602 * <p>Null means all input methods are allowed, if a non-null list is returned
4603 * it will contain the intersection of the permitted lists for any device or profile
4604 * owners that apply to this user. It will also include any system input methods.
4605 *
4606 * @return List of input method package names.
4607 * @hide
4608 */
4609 @SystemApi
4610 public List<String> getPermittedInputMethodsForCurrentUser() {
4611 if (mService != null) {
4612 try {
4613 return mService.getPermittedInputMethodsForCurrentUser();
4614 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004615 throw e.rethrowFromSystemServer();
Kenny Guyfa80a4f2014-08-20 19:40:59 +01004616 }
4617 }
4618 return null;
4619 }
4620
4621 /**
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -08004622 * Called by a device owner to get the list of apps to keep around as APKs even if no user has
4623 * currently installed it.
4624 *
4625 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4626 *
4627 * @return List of package names to keep cached.
4628 * @hide
4629 */
4630 public List<String> getKeepUninstalledPackages(@NonNull ComponentName admin) {
4631 if (mService != null) {
4632 try {
4633 return mService.getKeepUninstalledPackages(admin);
4634 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004635 throw e.rethrowFromSystemServer();
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -08004636 }
4637 }
4638 return null;
4639 }
4640
4641 /**
4642 * Called by a device owner to set a list of apps to keep around as APKs even if no user has
4643 * currently installed it.
4644 *
4645 * <p>Please note that setting this policy does not imply that specified apps will be
4646 * automatically pre-cached.</p>
4647 *
4648 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4649 * @param packageNames List of package names to keep cached.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004650 * @throws SecurityException if {@code admin} is not a device owner.
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -08004651 * @hide
4652 */
4653 public void setKeepUninstalledPackages(@NonNull ComponentName admin,
4654 @NonNull List<String> packageNames) {
4655 if (mService != null) {
4656 try {
4657 mService.setKeepUninstalledPackages(admin, packageNames);
4658 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004659 throw e.rethrowFromSystemServer();
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -08004660 }
4661 }
4662 }
4663
4664 /**
Julia Reynolds1e958392014-05-16 14:25:21 -04004665 * Called by a device owner to create a user with the specified name. The UserHandle returned
4666 * by this method should not be persisted as user handles are recycled as users are removed and
4667 * created. If you need to persist an identifier for this user, use
4668 * {@link UserManager#getSerialNumberForUser}.
4669 *
4670 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4671 * @param name the user's name
4672 * @see UserHandle
Robin Lee25e26452015-06-02 09:56:29 -07004673 * @return the {@link android.os.UserHandle} object for the created user, or {@code null} if the
4674 * user could not be created.
Kenny Guy14f48e52015-06-29 15:12:36 +01004675 *
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -07004676 * @deprecated From {@link android.os.Build.VERSION_CODES#M}
phweiss27ee3342016-02-08 16:40:45 +01004677 * @removed From {@link android.os.Build.VERSION_CODES#N}
Julia Reynolds1e958392014-05-16 14:25:21 -04004678 */
Kenny Guy14f48e52015-06-29 15:12:36 +01004679 @Deprecated
Robin Lee25e26452015-06-02 09:56:29 -07004680 public UserHandle createUser(@NonNull ComponentName admin, String name) {
Julia Reynolds1e958392014-05-16 14:25:21 -04004681 return null;
4682 }
4683
4684 /**
Jason Monk03978a42014-06-10 15:05:30 -04004685 * Called by a device owner to create a user with the specified name. The UserHandle returned
4686 * by this method should not be persisted as user handles are recycled as users are removed and
4687 * created. If you need to persist an identifier for this user, use
4688 * {@link UserManager#getSerialNumberForUser}. The new user will be started in the background
4689 * immediately.
4690 *
4691 * <p> profileOwnerComponent is the {@link DeviceAdminReceiver} to be the profile owner as well
4692 * as registered as an active admin on the new user. The profile owner package will be
4693 * installed on the new user if it already is installed on the device.
4694 *
4695 * <p>If the optionalInitializeData is not null, then the extras will be passed to the
4696 * profileOwnerComponent when onEnable is called.
4697 *
4698 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4699 * @param name the user's name
4700 * @param ownerName the human readable name of the organisation associated with this DPM.
4701 * @param profileOwnerComponent The {@link DeviceAdminReceiver} that will be an active admin on
4702 * the user.
4703 * @param adminExtras Extras that will be passed to onEnable of the admin receiver
4704 * on the new user.
4705 * @see UserHandle
Robin Lee25e26452015-06-02 09:56:29 -07004706 * @return the {@link android.os.UserHandle} object for the created user, or {@code null} if the
4707 * user could not be created.
Kenny Guy14f48e52015-06-29 15:12:36 +01004708 *
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -07004709 * @deprecated From {@link android.os.Build.VERSION_CODES#M}
phweiss27ee3342016-02-08 16:40:45 +01004710 * @removed From {@link android.os.Build.VERSION_CODES#N}
Jason Monk03978a42014-06-10 15:05:30 -04004711 */
Kenny Guy14f48e52015-06-29 15:12:36 +01004712 @Deprecated
Robin Lee25e26452015-06-02 09:56:29 -07004713 public UserHandle createAndInitializeUser(@NonNull ComponentName admin, String name,
4714 String ownerName, @NonNull ComponentName profileOwnerComponent, Bundle adminExtras) {
Jason Monk03978a42014-06-10 15:05:30 -04004715 return null;
4716 }
4717
4718 /**
phweissa92e1212016-01-25 17:14:10 +01004719 * Flag used by {@link #createAndManageUser} to skip setup wizard after creating a new user.
phweiss343fb332016-01-25 14:48:59 +01004720 */
4721 public static final int SKIP_SETUP_WIZARD = 0x0001;
4722
4723 /**
Lenka Trochtovac8202c82016-01-26 15:11:09 +01004724 * Flag used by {@link #createAndManageUser} to specify that the user should be created
4725 * ephemeral.
4726 * @hide
4727 */
4728 public static final int MAKE_USER_EPHEMERAL = 0x0002;
4729
4730 /**
phweissa92e1212016-01-25 17:14:10 +01004731 * Called by a device owner to create a user with the specified name and a given component of
4732 * the calling package as profile owner. The UserHandle returned by this method should not be
4733 * persisted as user handles are recycled as users are removed and created. If you need to
4734 * persist an identifier for this user, use {@link UserManager#getSerialNumberForUser}. The new
4735 * user will not be started in the background.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004736 * <p>
4737 * admin is the {@link DeviceAdminReceiver} which is the device owner. profileOwner is also a
4738 * DeviceAdminReceiver in the same package as admin, and will become the profile owner and will
4739 * be registered as an active admin on the new user. The profile owner package will be installed
4740 * on the new user.
4741 * <p>
4742 * If the adminExtras are not null, they will be stored on the device until the user is started
4743 * for the first time. Then the extras will be passed to the admin when onEnable is called.
phweiss343fb332016-01-25 14:48:59 +01004744 *
4745 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4746 * @param name The user's name.
phweissa92e1212016-01-25 17:14:10 +01004747 * @param profileOwner Which {@link DeviceAdminReceiver} will be profile owner. Has to be in the
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004748 * same package as admin, otherwise no user is created and an
4749 * IllegalArgumentException is thrown.
phweiss343fb332016-01-25 14:48:59 +01004750 * @param adminExtras Extras that will be passed to onEnable of the admin receiver on the new
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004751 * user.
phweissa92e1212016-01-25 17:14:10 +01004752 * @param flags {@link #SKIP_SETUP_WIZARD} is supported.
phweiss343fb332016-01-25 14:48:59 +01004753 * @see UserHandle
4754 * @return the {@link android.os.UserHandle} object for the created user, or {@code null} if the
4755 * user could not be created.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004756 * @throws SecurityException if {@code admin} is not a device owner.
phweiss343fb332016-01-25 14:48:59 +01004757 */
4758 public UserHandle createAndManageUser(@NonNull ComponentName admin, @NonNull String name,
phweissa92e1212016-01-25 17:14:10 +01004759 @NonNull ComponentName profileOwner, @Nullable PersistableBundle adminExtras,
4760 int flags) {
phweiss343fb332016-01-25 14:48:59 +01004761 try {
phweissa92e1212016-01-25 17:14:10 +01004762 return mService.createAndManageUser(admin, name, profileOwner, adminExtras, flags);
phweiss343fb332016-01-25 14:48:59 +01004763 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004764 throw re.rethrowFromSystemServer();
phweiss343fb332016-01-25 14:48:59 +01004765 }
phweiss343fb332016-01-25 14:48:59 +01004766 }
4767
4768 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004769 * Called by a device owner to remove a user and all associated data. The primary user can not
4770 * be removed.
Julia Reynolds1e958392014-05-16 14:25:21 -04004771 *
4772 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4773 * @param userHandle the user to remove.
4774 * @return {@code true} if the user was removed, {@code false} otherwise.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004775 * @throws SecurityException if {@code admin} is not a device owner.
Julia Reynolds1e958392014-05-16 14:25:21 -04004776 */
Robin Lee25e26452015-06-02 09:56:29 -07004777 public boolean removeUser(@NonNull ComponentName admin, UserHandle userHandle) {
Julia Reynolds1e958392014-05-16 14:25:21 -04004778 try {
4779 return mService.removeUser(admin, userHandle);
4780 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004781 throw re.rethrowFromSystemServer();
Julia Reynolds1e958392014-05-16 14:25:21 -04004782 }
4783 }
4784
4785 /**
Jason Monk582d9112014-07-09 19:57:08 -04004786 * Called by a device owner to switch the specified user to the foreground.
4787 *
4788 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4789 * @param userHandle the user to switch to; null will switch to primary.
4790 * @return {@code true} if the switch was successful, {@code false} otherwise.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004791 * @throws SecurityException if {@code admin} is not a device owner.
Jason Monk582d9112014-07-09 19:57:08 -04004792 * @see Intent#ACTION_USER_FOREGROUND
4793 */
Robin Lee25e26452015-06-02 09:56:29 -07004794 public boolean switchUser(@NonNull ComponentName admin, @Nullable UserHandle userHandle) {
Jason Monk582d9112014-07-09 19:57:08 -04004795 try {
4796 return mService.switchUser(admin, userHandle);
4797 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004798 throw re.rethrowFromSystemServer();
Jason Monk582d9112014-07-09 19:57:08 -04004799 }
4800 }
4801
4802 /**
Esteban Talaverabf60f722015-12-10 16:26:44 +00004803 * Retrieves the application restrictions for a given target application running in the calling
4804 * user.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004805 * <p>
4806 * The caller must be a profile or device owner on that user, or the package allowed to manage
4807 * application restrictions via {@link #setApplicationRestrictionsManagingPackage}; otherwise a
4808 * security exception will be thrown.
Robin Lee66e5d962014-04-09 16:44:21 +01004809 *
Esteban Talaverabf60f722015-12-10 16:26:44 +00004810 * @param admin Which {@link DeviceAdminReceiver} this request is associated with, or
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004811 * {@code null} if called by the application restrictions managing package.
Robin Lee66e5d962014-04-09 16:44:21 +01004812 * @param packageName The name of the package to fetch restricted settings of.
4813 * @return {@link Bundle} of settings corresponding to what was set last time
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004814 * {@link DevicePolicyManager#setApplicationRestrictions} was called, or an empty
4815 * {@link Bundle} if no restrictions have been set.
4816 * @throws SecurityException if {@code admin} is not a device or profile owner.
Esteban Talaverabf60f722015-12-10 16:26:44 +00004817 * @see {@link #setApplicationRestrictionsManagingPackage}
Robin Lee66e5d962014-04-09 16:44:21 +01004818 */
Esteban Talaverabf60f722015-12-10 16:26:44 +00004819 public Bundle getApplicationRestrictions(@Nullable ComponentName admin, String packageName) {
Robin Lee66e5d962014-04-09 16:44:21 +01004820 if (mService != null) {
4821 try {
4822 return mService.getApplicationRestrictions(admin, packageName);
4823 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004824 throw e.rethrowFromSystemServer();
Robin Lee66e5d962014-04-09 16:44:21 +01004825 }
4826 }
4827 return null;
4828 }
Amith Yamasanibe465322014-04-24 13:45:17 -07004829
4830 /**
Julia Reynolds20118f12015-02-11 12:34:08 -05004831 * Called by a profile or device owner to set a user restriction specified by the key.
Amith Yamasanibe465322014-04-24 13:45:17 -07004832 * <p>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004833 * The calling device admin must be a profile or device owner; if it is not, a security
4834 * exception will be thrown.
Jim Millerdf2258b2014-04-27 20:10:26 -07004835 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004836 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4837 * @param key The key of the restriction. See the constants in {@link android.os.UserManager}
4838 * for the list of keys.
4839 * @throws SecurityException if {@code admin} is not a device or profile owner.
Amith Yamasanibe465322014-04-24 13:45:17 -07004840 */
Robin Lee25e26452015-06-02 09:56:29 -07004841 public void addUserRestriction(@NonNull ComponentName admin, String key) {
Amith Yamasanibe465322014-04-24 13:45:17 -07004842 if (mService != null) {
4843 try {
4844 mService.setUserRestriction(admin, key, true);
4845 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004846 throw e.rethrowFromSystemServer();
Amith Yamasanibe465322014-04-24 13:45:17 -07004847 }
4848 }
4849 }
4850
4851 /**
Julia Reynolds20118f12015-02-11 12:34:08 -05004852 * Called by a profile or device owner to clear a user restriction specified by the key.
Amith Yamasanibe465322014-04-24 13:45:17 -07004853 * <p>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004854 * The calling device admin must be a profile or device owner; if it is not, a security
4855 * exception will be thrown.
Jim Millerdf2258b2014-04-27 20:10:26 -07004856 *
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004857 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4858 * @param key The key of the restriction. See the constants in {@link android.os.UserManager}
4859 * for the list of keys.
4860 * @throws SecurityException if {@code admin} is not a device or profile owner.
Amith Yamasanibe465322014-04-24 13:45:17 -07004861 */
Robin Lee25e26452015-06-02 09:56:29 -07004862 public void clearUserRestriction(@NonNull ComponentName admin, String key) {
Amith Yamasanibe465322014-04-24 13:45:17 -07004863 if (mService != null) {
4864 try {
4865 mService.setUserRestriction(admin, key, false);
4866 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004867 throw e.rethrowFromSystemServer();
Amith Yamasanibe465322014-04-24 13:45:17 -07004868 }
4869 }
4870 }
Adam Connors010cfd42014-04-16 12:48:13 +01004871
4872 /**
Makoto Onuki3a3092f2015-10-30 11:07:51 -07004873 * Called by a profile or device owner to get user restrictions set with
4874 * {@link #addUserRestriction(ComponentName, String)}.
4875 * <p>
4876 * The target user may have more restrictions set by the system or other device owner / profile
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004877 * owner. To get all the user restrictions currently set, use
Makoto Onuki3a3092f2015-10-30 11:07:51 -07004878 * {@link UserManager#getUserRestrictions()}.
4879 *
4880 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004881 * @throws SecurityException if {@code admin} is not a device or profile owner.
Makoto Onuki3a3092f2015-10-30 11:07:51 -07004882 */
4883 public Bundle getUserRestrictions(@NonNull ComponentName admin) {
Sudheer Shanka1c277a52015-11-11 21:58:24 +00004884 return getUserRestrictions(admin, myUserId());
4885 }
4886
4887 /** @hide per-user version */
4888 public Bundle getUserRestrictions(@NonNull ComponentName admin, int userHandle) {
Makoto Onuki3a3092f2015-10-30 11:07:51 -07004889 Bundle ret = null;
4890 if (mService != null) {
4891 try {
Sudheer Shanka1c277a52015-11-11 21:58:24 +00004892 ret = mService.getUserRestrictions(admin, userHandle);
Makoto Onuki3a3092f2015-10-30 11:07:51 -07004893 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004894 throw e.rethrowFromSystemServer();
Makoto Onuki3a3092f2015-10-30 11:07:51 -07004895 }
4896 }
4897 return ret == null ? new Bundle() : ret;
4898 }
4899
4900 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004901 * Called by profile or device owners to hide or unhide packages. When a package is hidden it is
4902 * unavailable for use, but the data and actual package file remain.
Julia Reynolds966881e2014-05-14 12:23:08 -04004903 *
4904 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Amith Yamasanie5bcff62014-07-19 15:44:09 -07004905 * @param packageName The name of the package to hide or unhide.
4906 * @param hidden {@code true} if the package should be hidden, {@code false} if it should be
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004907 * unhidden.
Amith Yamasanie5bcff62014-07-19 15:44:09 -07004908 * @return boolean Whether the hidden setting of the package was successfully updated.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004909 * @throws SecurityException if {@code admin} is not a device or profile owner.
Julia Reynolds966881e2014-05-14 12:23:08 -04004910 */
Robin Lee25e26452015-06-02 09:56:29 -07004911 public boolean setApplicationHidden(@NonNull ComponentName admin, String packageName,
Amith Yamasanie5bcff62014-07-19 15:44:09 -07004912 boolean hidden) {
Julia Reynolds966881e2014-05-14 12:23:08 -04004913 if (mService != null) {
4914 try {
Amith Yamasanie5bcff62014-07-19 15:44:09 -07004915 return mService.setApplicationHidden(admin, packageName, hidden);
Julia Reynolds966881e2014-05-14 12:23:08 -04004916 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004917 throw e.rethrowFromSystemServer();
Julia Reynolds966881e2014-05-14 12:23:08 -04004918 }
4919 }
4920 return false;
4921 }
4922
4923 /**
Julia Reynolds20118f12015-02-11 12:34:08 -05004924 * Called by profile or device owners to determine if a package is hidden.
Julia Reynolds966881e2014-05-14 12:23:08 -04004925 *
4926 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Amith Yamasanie5bcff62014-07-19 15:44:09 -07004927 * @param packageName The name of the package to retrieve the hidden status of.
4928 * @return boolean {@code true} if the package is hidden, {@code false} otherwise.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004929 * @throws SecurityException if {@code admin} is not a device or profile owner.
Julia Reynolds966881e2014-05-14 12:23:08 -04004930 */
Robin Lee25e26452015-06-02 09:56:29 -07004931 public boolean isApplicationHidden(@NonNull ComponentName admin, String packageName) {
Julia Reynolds966881e2014-05-14 12:23:08 -04004932 if (mService != null) {
4933 try {
Amith Yamasanie5bcff62014-07-19 15:44:09 -07004934 return mService.isApplicationHidden(admin, packageName);
Julia Reynolds966881e2014-05-14 12:23:08 -04004935 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004936 throw e.rethrowFromSystemServer();
Julia Reynolds966881e2014-05-14 12:23:08 -04004937 }
4938 }
4939 return false;
4940 }
4941
4942 /**
Julia Reynolds20118f12015-02-11 12:34:08 -05004943 * Called by profile or device owners to re-enable a system app that was disabled by default
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07004944 * when the user was initialized.
Adam Connors655be2a2014-07-14 09:01:25 +00004945 *
4946 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Makoto Onuki32b30572015-12-11 14:29:51 -08004947 * @param packageName The package to be re-enabled in the calling profile.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004948 * @throws SecurityException if {@code admin} is not a device or profile owner.
Adam Connors655be2a2014-07-14 09:01:25 +00004949 */
Robin Lee25e26452015-06-02 09:56:29 -07004950 public void enableSystemApp(@NonNull ComponentName admin, String packageName) {
Adam Connors655be2a2014-07-14 09:01:25 +00004951 if (mService != null) {
4952 try {
4953 mService.enableSystemApp(admin, packageName);
4954 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004955 throw e.rethrowFromSystemServer();
Adam Connors655be2a2014-07-14 09:01:25 +00004956 }
4957 }
4958 }
4959
4960 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004961 * Called by profile or device owners to re-enable system apps by intent that were disabled by
4962 * default when the user was initialized.
Adam Connors655be2a2014-07-14 09:01:25 +00004963 *
4964 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4965 * @param intent An intent matching the app(s) to be installed. All apps that resolve for this
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004966 * intent will be re-enabled in the calling profile.
Adam Connors655be2a2014-07-14 09:01:25 +00004967 * @return int The number of activities that matched the intent and were installed.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004968 * @throws SecurityException if {@code admin} is not a device or profile owner.
Adam Connors655be2a2014-07-14 09:01:25 +00004969 */
Robin Lee25e26452015-06-02 09:56:29 -07004970 public int enableSystemApp(@NonNull ComponentName admin, Intent intent) {
Adam Connors655be2a2014-07-14 09:01:25 +00004971 if (mService != null) {
4972 try {
4973 return mService.enableSystemAppWithIntent(admin, intent);
4974 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07004975 throw e.rethrowFromSystemServer();
Adam Connors655be2a2014-07-14 09:01:25 +00004976 }
4977 }
4978 return 0;
4979 }
4980
4981 /**
Sander Alewijnse112e0532014-10-29 13:28:49 +00004982 * Called by a device owner or profile owner to disable account management for a specific type
4983 * of account.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004984 * <p>
4985 * The calling device admin must be a device owner or profile owner. If it is not, a security
4986 * exception will be thrown.
4987 * <p>
4988 * When account management is disabled for an account type, adding or removing an account of
4989 * that type will not be possible.
4990 * <p>
4991 * From {@link android.os.Build.VERSION_CODES#N} the profile or device owner can still use
Benjamin Franzb6c0ce42015-11-05 10:06:51 +00004992 * {@link android.accounts.AccountManager} APIs to add or remove accounts when account
4993 * management for a specific type is disabled.
4994 *
Sander Alewijnse650c3342014-05-08 18:00:50 +01004995 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
4996 * @param accountType For which account management is disabled or enabled.
4997 * @param disabled The boolean indicating that account management will be disabled (true) or
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07004998 * enabled (false).
4999 * @throws SecurityException if {@code admin} is not a device or profile owner.
Sander Alewijnse650c3342014-05-08 18:00:50 +01005000 */
Robin Lee25e26452015-06-02 09:56:29 -07005001 public void setAccountManagementDisabled(@NonNull ComponentName admin, String accountType,
Sander Alewijnse650c3342014-05-08 18:00:50 +01005002 boolean disabled) {
5003 if (mService != null) {
5004 try {
5005 mService.setAccountManagementDisabled(admin, accountType, disabled);
5006 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005007 throw e.rethrowFromSystemServer();
Sander Alewijnse650c3342014-05-08 18:00:50 +01005008 }
5009 }
5010 }
5011
5012 /**
Sander Alewijnse5c02db62014-05-07 10:46:57 +01005013 * Gets the array of accounts for which account management is disabled by the profile owner.
5014 *
5015 * <p> Account management can be disabled/enabled by calling
5016 * {@link #setAccountManagementDisabled}.
5017 *
5018 * @return a list of account types for which account management has been disabled.
5019 *
5020 * @see #setAccountManagementDisabled
5021 */
5022 public String[] getAccountTypesWithManagementDisabled() {
Makoto Onukicc4bbeb2015-09-17 10:28:24 -07005023 return getAccountTypesWithManagementDisabledAsUser(myUserId());
Alexandra Gherghina999d3942014-07-03 11:40:08 +01005024 }
5025
5026 /**
5027 * @see #getAccountTypesWithManagementDisabled()
5028 * @hide
5029 */
5030 public String[] getAccountTypesWithManagementDisabledAsUser(int userId) {
Sander Alewijnse5c02db62014-05-07 10:46:57 +01005031 if (mService != null) {
5032 try {
Alexandra Gherghina999d3942014-07-03 11:40:08 +01005033 return mService.getAccountTypesWithManagementDisabledAsUser(userId);
Sander Alewijnse5c02db62014-05-07 10:46:57 +01005034 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005035 throw e.rethrowFromSystemServer();
Sander Alewijnse5c02db62014-05-07 10:46:57 +01005036 }
5037 }
5038
5039 return null;
5040 }
justinzhang511e0d82014-03-24 16:09:24 -04005041
5042 /**
Jason Monkd7b86212014-06-16 13:15:38 -04005043 * Sets which packages may enter lock task mode.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005044 * <p>
5045 * Any packages that shares uid with an allowed package will also be allowed to activate lock
5046 * task. From {@link android.os.Build.VERSION_CODES#M} removing packages from the lock task
5047 * package list results in locked tasks belonging to those packages to be finished. This
5048 * function can only be called by the device owner.
Jason Monkd7b86212014-06-16 13:15:38 -04005049 *
Jason Monkd7b86212014-06-16 13:15:38 -04005050 * @param packages The list of packages allowed to enter lock task mode
Jason Monk48aacba2014-08-13 16:29:08 -04005051 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005052 * @throws SecurityException if {@code admin} is not a device owner.
Jason Monkd7b86212014-06-16 13:15:38 -04005053 * @see Activity#startLockTask()
Benjamin Franz6cdb27e2015-02-26 12:26:53 +00005054 * @see DeviceAdminReceiver#onLockTaskModeEntering(Context, Intent, String)
5055 * @see DeviceAdminReceiver#onLockTaskModeExiting(Context, Intent)
Jason Monk1c7c3192014-06-26 12:52:18 -04005056 * @see UserManager#DISALLOW_CREATE_WINDOWS
justinzhang511e0d82014-03-24 16:09:24 -04005057 */
Robin Lee25e26452015-06-02 09:56:29 -07005058 public void setLockTaskPackages(@NonNull ComponentName admin, String[] packages)
Jason Monk48aacba2014-08-13 16:29:08 -04005059 throws SecurityException {
justinzhang511e0d82014-03-24 16:09:24 -04005060 if (mService != null) {
5061 try {
Jason Monk48aacba2014-08-13 16:29:08 -04005062 mService.setLockTaskPackages(admin, packages);
justinzhang511e0d82014-03-24 16:09:24 -04005063 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005064 throw e.rethrowFromSystemServer();
justinzhang511e0d82014-03-24 16:09:24 -04005065 }
5066 }
5067 }
5068
5069 /**
Jason Monkd7b86212014-06-16 13:15:38 -04005070 * This function returns the list of packages allowed to start the lock task mode.
Jason Monk48aacba2014-08-13 16:29:08 -04005071 *
5072 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
justinzhang511e0d82014-03-24 16:09:24 -04005073 * @hide
5074 */
Robin Lee25e26452015-06-02 09:56:29 -07005075 public String[] getLockTaskPackages(@NonNull ComponentName admin) {
justinzhang511e0d82014-03-24 16:09:24 -04005076 if (mService != null) {
5077 try {
Jason Monk48aacba2014-08-13 16:29:08 -04005078 return mService.getLockTaskPackages(admin);
justinzhang511e0d82014-03-24 16:09:24 -04005079 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005080 throw e.rethrowFromSystemServer();
justinzhang511e0d82014-03-24 16:09:24 -04005081 }
5082 }
5083 return null;
5084 }
5085
5086 /**
5087 * This function lets the caller know whether the given component is allowed to start the
5088 * lock task mode.
Jason Monkd7b86212014-06-16 13:15:38 -04005089 * @param pkg The package to check
justinzhang511e0d82014-03-24 16:09:24 -04005090 */
Jason Monkd7b86212014-06-16 13:15:38 -04005091 public boolean isLockTaskPermitted(String pkg) {
justinzhang511e0d82014-03-24 16:09:24 -04005092 if (mService != null) {
5093 try {
Jason Monkd7b86212014-06-16 13:15:38 -04005094 return mService.isLockTaskPermitted(pkg);
justinzhang511e0d82014-03-24 16:09:24 -04005095 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005096 throw e.rethrowFromSystemServer();
justinzhang511e0d82014-03-24 16:09:24 -04005097 }
5098 }
5099 return false;
5100 }
Julia Reynoldsda551652014-05-14 17:15:16 -04005101
5102 /**
5103 * Called by device owners to update {@link Settings.Global} settings. Validation that the value
5104 * of the setting is in the correct form for the setting type should be performed by the caller.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005105 * <p>
5106 * The settings that can be updated with this method are:
Julia Reynolds9ed66da2014-08-26 15:42:03 -04005107 * <ul>
5108 * <li>{@link Settings.Global#ADB_ENABLED}</li>
5109 * <li>{@link Settings.Global#AUTO_TIME}</li>
5110 * <li>{@link Settings.Global#AUTO_TIME_ZONE}</li>
Julia Reynolds9ed66da2014-08-26 15:42:03 -04005111 * <li>{@link Settings.Global#DATA_ROAMING}</li>
Julia Reynolds9ed66da2014-08-26 15:42:03 -04005112 * <li>{@link Settings.Global#USB_MASS_STORAGE_ENABLED}</li>
Julia Reynolds9ed66da2014-08-26 15:42:03 -04005113 * <li>{@link Settings.Global#WIFI_SLEEP_POLICY}</li>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005114 * <li>{@link Settings.Global#STAY_ON_WHILE_PLUGGED_IN} This setting is only available from
5115 * {@link android.os.Build.VERSION_CODES#M} onwards and can only be set if
5116 * {@link #setMaximumTimeToLock} is not used to set a timeout.</li>
5117 * <li>{@link Settings.Global#WIFI_DEVICE_OWNER_CONFIGS_LOCKDOWN}</li> This setting is only
5118 * available from {@link android.os.Build.VERSION_CODES#M} onwards.</li>
Julia Reynolds9ed66da2014-08-26 15:42:03 -04005119 * </ul>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005120 * <p>
5121 * Changing the following settings has no effect as of {@link android.os.Build.VERSION_CODES#M}:
Esteban Talavera656fa7f2015-06-29 17:41:39 +01005122 * <ul>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005123 * <li>{@link Settings.Global#BLUETOOTH_ON}. Use
5124 * {@link android.bluetooth.BluetoothAdapter#enable()} and
5125 * {@link android.bluetooth.BluetoothAdapter#disable()} instead.</li>
Esteban Talavera656fa7f2015-06-29 17:41:39 +01005126 * <li>{@link Settings.Global#DEVELOPMENT_SETTINGS_ENABLED}</li>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005127 * <li>{@link Settings.Global#MODE_RINGER}. Use
5128 * {@link android.media.AudioManager#setRingerMode(int)} instead.</li>
Esteban Talavera656fa7f2015-06-29 17:41:39 +01005129 * <li>{@link Settings.Global#NETWORK_PREFERENCE}</li>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005130 * <li>{@link Settings.Global#WIFI_ON}. Use
5131 * {@link android.net.wifi.WifiManager#setWifiEnabled(boolean)} instead.</li>
Esteban Talavera656fa7f2015-06-29 17:41:39 +01005132 * </ul>
Julia Reynoldsda551652014-05-14 17:15:16 -04005133 *
5134 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5135 * @param setting The name of the setting to update.
5136 * @param value The value to update the setting to.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005137 * @throws SecurityException if {@code admin} is not a device owner.
Julia Reynoldsda551652014-05-14 17:15:16 -04005138 */
Robin Lee25e26452015-06-02 09:56:29 -07005139 public void setGlobalSetting(@NonNull ComponentName admin, String setting, String value) {
Julia Reynoldsda551652014-05-14 17:15:16 -04005140 if (mService != null) {
5141 try {
5142 mService.setGlobalSetting(admin, setting, value);
5143 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005144 throw e.rethrowFromSystemServer();
Julia Reynoldsda551652014-05-14 17:15:16 -04005145 }
5146 }
5147 }
5148
5149 /**
5150 * Called by profile or device owners to update {@link Settings.Secure} settings. Validation
5151 * that the value of the setting is in the correct form for the setting type should be performed
5152 * by the caller.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005153 * <p>
5154 * The settings that can be updated by a profile or device owner with this method are:
Julia Reynolds9ed66da2014-08-26 15:42:03 -04005155 * <ul>
5156 * <li>{@link Settings.Secure#DEFAULT_INPUT_METHOD}</li>
Amith Yamasani52c39a12014-10-21 11:14:04 -07005157 * <li>{@link Settings.Secure#INSTALL_NON_MARKET_APPS}</li>
Julia Reynolds9ed66da2014-08-26 15:42:03 -04005158 * <li>{@link Settings.Secure#SKIP_FIRST_USE_HINTS}</li>
5159 * </ul>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005160 * <p>
5161 * A device owner can additionally update the following settings:
Julia Reynolds82735bc2014-09-04 16:43:30 -04005162 * <ul>
5163 * <li>{@link Settings.Secure#LOCATION_MODE}</li>
5164 * </ul>
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005165 *
Julia Reynoldsda551652014-05-14 17:15:16 -04005166 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5167 * @param setting The name of the setting to update.
5168 * @param value The value to update the setting to.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005169 * @throws SecurityException if {@code admin} is not a device or profile owner.
Julia Reynoldsda551652014-05-14 17:15:16 -04005170 */
Robin Lee25e26452015-06-02 09:56:29 -07005171 public void setSecureSetting(@NonNull ComponentName admin, String setting, String value) {
Julia Reynoldsda551652014-05-14 17:15:16 -04005172 if (mService != null) {
5173 try {
5174 mService.setSecureSetting(admin, setting, value);
5175 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005176 throw e.rethrowFromSystemServer();
Julia Reynoldsda551652014-05-14 17:15:16 -04005177 }
5178 }
5179 }
5180
Amith Yamasanif20d6402014-05-24 15:34:37 -07005181 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005182 * Designates a specific service component as the provider for making permission requests of a
5183 * local or remote administrator of the user.
Amith Yamasanif20d6402014-05-24 15:34:37 -07005184 * <p/>
5185 * Only a profile owner can designate the restrictions provider.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005186 *
Amith Yamasanif20d6402014-05-24 15:34:37 -07005187 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Amith Yamasanif6e2fcc2014-07-10 13:41:55 -07005188 * @param provider The component name of the service that implements
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005189 * {@link RestrictionsReceiver}. If this param is null, it removes the restrictions
5190 * provider previously assigned.
5191 * @throws SecurityException if {@code admin} is not a device or profile owner.
Amith Yamasanif20d6402014-05-24 15:34:37 -07005192 */
Robin Lee25e26452015-06-02 09:56:29 -07005193 public void setRestrictionsProvider(@NonNull ComponentName admin,
5194 @Nullable ComponentName provider) {
Amith Yamasanif20d6402014-05-24 15:34:37 -07005195 if (mService != null) {
5196 try {
Amith Yamasanif6e2fcc2014-07-10 13:41:55 -07005197 mService.setRestrictionsProvider(admin, provider);
Amith Yamasanif20d6402014-05-24 15:34:37 -07005198 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005199 throw re.rethrowFromSystemServer();
Amith Yamasanif20d6402014-05-24 15:34:37 -07005200 }
5201 }
5202 }
Julia Reynolds4a21b252014-06-04 11:11:43 -04005203
5204 /**
5205 * Called by profile or device owners to set the master volume mute on or off.
5206 *
5207 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5208 * @param on {@code true} to mute master volume, {@code false} to turn mute off.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005209 * @throws SecurityException if {@code admin} is not a device or profile owner.
Julia Reynolds4a21b252014-06-04 11:11:43 -04005210 */
Robin Lee25e26452015-06-02 09:56:29 -07005211 public void setMasterVolumeMuted(@NonNull ComponentName admin, boolean on) {
Julia Reynolds4a21b252014-06-04 11:11:43 -04005212 if (mService != null) {
5213 try {
5214 mService.setMasterVolumeMuted(admin, on);
5215 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005216 throw re.rethrowFromSystemServer();
Julia Reynolds4a21b252014-06-04 11:11:43 -04005217 }
5218 }
5219 }
5220
5221 /**
5222 * Called by profile or device owners to check whether the master volume mute is on or off.
5223 *
5224 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5225 * @return {@code true} if master volume is muted, {@code false} if it's not.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005226 * @throws SecurityException if {@code admin} is not a device or profile owner.
Julia Reynolds4a21b252014-06-04 11:11:43 -04005227 */
Robin Lee25e26452015-06-02 09:56:29 -07005228 public boolean isMasterVolumeMuted(@NonNull ComponentName admin) {
Julia Reynolds4a21b252014-06-04 11:11:43 -04005229 if (mService != null) {
5230 try {
5231 return mService.isMasterVolumeMuted(admin);
5232 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005233 throw re.rethrowFromSystemServer();
Julia Reynolds4a21b252014-06-04 11:11:43 -04005234 }
5235 }
5236 return false;
5237 }
Kenny Guyc13053b2014-05-29 14:17:17 +01005238
5239 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005240 * Called by profile or device owners to change whether a user can uninstall a package.
Kenny Guyc13053b2014-05-29 14:17:17 +01005241 *
5242 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5243 * @param packageName package to change.
Esteban Talaverad5c5c132014-08-20 11:35:57 +01005244 * @param uninstallBlocked true if the user shouldn't be able to uninstall the package.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005245 * @throws SecurityException if {@code admin} is not a device or profile owner.
Kenny Guyc13053b2014-05-29 14:17:17 +01005246 */
Robin Lee25e26452015-06-02 09:56:29 -07005247 public void setUninstallBlocked(@NonNull ComponentName admin, String packageName,
Esteban Talaverad5c5c132014-08-20 11:35:57 +01005248 boolean uninstallBlocked) {
Kenny Guyc13053b2014-05-29 14:17:17 +01005249 if (mService != null) {
5250 try {
Esteban Talaverad5c5c132014-08-20 11:35:57 +01005251 mService.setUninstallBlocked(admin, packageName, uninstallBlocked);
Kenny Guyc13053b2014-05-29 14:17:17 +01005252 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005253 throw re.rethrowFromSystemServer();
Kenny Guyc13053b2014-05-29 14:17:17 +01005254 }
5255 }
5256 }
5257
5258 /**
Makoto Onuki32b30572015-12-11 14:29:51 -08005259 * Check whether the user has been blocked by device policy from uninstalling a package.
Rubin Xua97855b2014-11-07 05:41:00 +00005260 * Requires the caller to be the profile owner if checking a specific admin's policy.
Rubin Xue1e6faa2015-03-10 10:51:59 +00005261 * <p>
5262 * <strong>Note:</strong> Starting from {@link android.os.Build.VERSION_CODES#LOLLIPOP_MR1}, the
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005263 * behavior of this API is changed such that passing {@code null} as the {@code admin} parameter
5264 * will return if any admin has blocked the uninstallation. Before L MR1, passing {@code null}
5265 * will cause a NullPointerException to be raised.
Kenny Guyc13053b2014-05-29 14:17:17 +01005266 *
Robin Lee25e26452015-06-02 09:56:29 -07005267 * @param admin The name of the admin component whose blocking policy will be checked, or
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005268 * {@code null} to check whether any admin has blocked the uninstallation.
Kenny Guyc13053b2014-05-29 14:17:17 +01005269 * @param packageName package to check.
Rubin Xua97855b2014-11-07 05:41:00 +00005270 * @return true if uninstallation is blocked.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005271 * @throws SecurityException if {@code admin} is not a device or profile owner.
Kenny Guyc13053b2014-05-29 14:17:17 +01005272 */
Robin Lee25e26452015-06-02 09:56:29 -07005273 public boolean isUninstallBlocked(@Nullable ComponentName admin, String packageName) {
Kenny Guyc13053b2014-05-29 14:17:17 +01005274 if (mService != null) {
5275 try {
Esteban Talavera729b2a62014-08-27 18:01:58 +01005276 return mService.isUninstallBlocked(admin, packageName);
Kenny Guyc13053b2014-05-29 14:17:17 +01005277 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005278 throw re.rethrowFromSystemServer();
Kenny Guyc13053b2014-05-29 14:17:17 +01005279 }
5280 }
5281 return false;
5282 }
Svetoslav976e8bd2014-07-16 15:12:03 -07005283
5284 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005285 * Called by the profile owner of a managed profile to enable widget providers from a given
5286 * package to be available in the parent profile. As a result the user will be able to add
5287 * widgets from the white-listed package running under the profile to a widget host which runs
5288 * under the parent profile, for example the home screen. Note that a package may have zero or
5289 * more provider components, where each component provides a different widget type.
Svetoslav976e8bd2014-07-16 15:12:03 -07005290 * <p>
5291 * <strong>Note:</strong> By default no widget provider package is white-listed.
Svetoslav976e8bd2014-07-16 15:12:03 -07005292 *
5293 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5294 * @param packageName The package from which widget providers are white-listed.
5295 * @return Whether the package was added.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005296 * @throws SecurityException if {@code admin} is not a profile owner.
Svetoslav976e8bd2014-07-16 15:12:03 -07005297 * @see #removeCrossProfileWidgetProvider(android.content.ComponentName, String)
5298 * @see #getCrossProfileWidgetProviders(android.content.ComponentName)
5299 */
Robin Lee25e26452015-06-02 09:56:29 -07005300 public boolean addCrossProfileWidgetProvider(@NonNull ComponentName admin, String packageName) {
Svetoslav976e8bd2014-07-16 15:12:03 -07005301 if (mService != null) {
5302 try {
5303 return mService.addCrossProfileWidgetProvider(admin, packageName);
5304 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005305 throw re.rethrowFromSystemServer();
Svetoslav976e8bd2014-07-16 15:12:03 -07005306 }
5307 }
5308 return false;
5309 }
5310
5311 /**
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07005312 * Called by the profile owner of a managed profile to disable widget providers from a given
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005313 * package to be available in the parent profile. For this method to take effect the package
5314 * should have been added via
5315 * {@link #addCrossProfileWidgetProvider( android.content.ComponentName, String)}.
Svetoslav976e8bd2014-07-16 15:12:03 -07005316 * <p>
5317 * <strong>Note:</strong> By default no widget provider package is white-listed.
Svetoslav976e8bd2014-07-16 15:12:03 -07005318 *
5319 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005320 * @param packageName The package from which widget providers are no longer white-listed.
Svetoslav976e8bd2014-07-16 15:12:03 -07005321 * @return Whether the package was removed.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005322 * @throws SecurityException if {@code admin} is not a profile owner.
Svetoslav976e8bd2014-07-16 15:12:03 -07005323 * @see #addCrossProfileWidgetProvider(android.content.ComponentName, String)
5324 * @see #getCrossProfileWidgetProviders(android.content.ComponentName)
5325 */
Esteban Talavera62399912016-01-11 15:37:55 +00005326 public boolean removeCrossProfileWidgetProvider(
5327 @NonNull ComponentName admin, String packageName) {
Svetoslav976e8bd2014-07-16 15:12:03 -07005328 if (mService != null) {
5329 try {
5330 return mService.removeCrossProfileWidgetProvider(admin, packageName);
5331 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005332 throw re.rethrowFromSystemServer();
Svetoslav976e8bd2014-07-16 15:12:03 -07005333 }
5334 }
5335 return false;
5336 }
5337
5338 /**
Amith Yamasanic34dc7c2014-09-18 09:42:42 -07005339 * Called by the profile owner of a managed profile to query providers from which packages are
Svetoslav976e8bd2014-07-16 15:12:03 -07005340 * available in the parent profile.
5341 *
5342 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5343 * @return The white-listed package list.
Svetoslav976e8bd2014-07-16 15:12:03 -07005344 * @see #addCrossProfileWidgetProvider(android.content.ComponentName, String)
5345 * @see #removeCrossProfileWidgetProvider(android.content.ComponentName, String)
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005346 * @throws SecurityException if {@code admin} is not a profile owner.
Svetoslav976e8bd2014-07-16 15:12:03 -07005347 */
Robin Lee25e26452015-06-02 09:56:29 -07005348 public List<String> getCrossProfileWidgetProviders(@NonNull ComponentName admin) {
Svetoslav976e8bd2014-07-16 15:12:03 -07005349 if (mService != null) {
5350 try {
5351 List<String> providers = mService.getCrossProfileWidgetProviders(admin);
5352 if (providers != null) {
5353 return providers;
5354 }
5355 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005356 throw re.rethrowFromSystemServer();
Svetoslav976e8bd2014-07-16 15:12:03 -07005357 }
5358 }
5359 return Collections.emptyList();
5360 }
Julia Reynoldsfca04ca2015-02-17 13:39:12 -05005361
5362 /**
Makoto Onuki32b30572015-12-11 14:29:51 -08005363 * Called by profile or device owners to set the user's photo.
Julia Reynoldsfca04ca2015-02-17 13:39:12 -05005364 *
5365 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5366 * @param icon the bitmap to set as the photo.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005367 * @throws SecurityException if {@code admin} is not a device or profile owner.
Julia Reynoldsfca04ca2015-02-17 13:39:12 -05005368 */
Robin Lee25e26452015-06-02 09:56:29 -07005369 public void setUserIcon(@NonNull ComponentName admin, Bitmap icon) {
Julia Reynoldsfca04ca2015-02-17 13:39:12 -05005370 try {
5371 mService.setUserIcon(admin, icon);
5372 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005373 throw re.rethrowFromSystemServer();
Julia Reynoldsfca04ca2015-02-17 13:39:12 -05005374 }
5375 }
Craig Lafayettedbe31a62015-04-02 13:14:39 -04005376
5377 /**
Rubin Xu5faad8e2015-04-20 17:43:48 +01005378 * Called by device owners to set a local system update policy. When a new policy is set,
5379 * {@link #ACTION_SYSTEM_UPDATE_POLICY_CHANGED} is broadcasted.
Rubin Xu8027a4f2015-03-10 17:52:37 +00005380 *
Robin Lee25e26452015-06-02 09:56:29 -07005381 * @param admin Which {@link DeviceAdminReceiver} this request is associated with. All
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005382 * components in the device owner package can set system update policies and the most
5383 * recent policy takes effect.
Robin Lee25e26452015-06-02 09:56:29 -07005384 * @param policy the new policy, or {@code null} to clear the current policy.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005385 * @throws SecurityException if {@code admin} is not a device owner.
Rubin Xu5faad8e2015-04-20 17:43:48 +01005386 * @see SystemUpdatePolicy
Rubin Xu8027a4f2015-03-10 17:52:37 +00005387 */
Robin Lee25e26452015-06-02 09:56:29 -07005388 public void setSystemUpdatePolicy(@NonNull ComponentName admin, SystemUpdatePolicy policy) {
Rubin Xu8027a4f2015-03-10 17:52:37 +00005389 if (mService != null) {
5390 try {
Robin Lee25e26452015-06-02 09:56:29 -07005391 mService.setSystemUpdatePolicy(admin, policy);
Rubin Xu8027a4f2015-03-10 17:52:37 +00005392 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005393 throw re.rethrowFromSystemServer();
Rubin Xu8027a4f2015-03-10 17:52:37 +00005394 }
5395 }
5396 }
5397
5398 /**
Rubin Xu5faad8e2015-04-20 17:43:48 +01005399 * Retrieve a local system update policy set previously by {@link #setSystemUpdatePolicy}.
Rubin Xu8027a4f2015-03-10 17:52:37 +00005400 *
Robin Lee25e26452015-06-02 09:56:29 -07005401 * @return The current policy object, or {@code null} if no policy is set.
Rubin Xu8027a4f2015-03-10 17:52:37 +00005402 */
Rubin Xu5faad8e2015-04-20 17:43:48 +01005403 public SystemUpdatePolicy getSystemUpdatePolicy() {
Rubin Xu8027a4f2015-03-10 17:52:37 +00005404 if (mService != null) {
5405 try {
Rubin Xud86d58c2015-05-05 16:57:37 +01005406 return mService.getSystemUpdatePolicy();
Rubin Xu8027a4f2015-03-10 17:52:37 +00005407 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005408 throw re.rethrowFromSystemServer();
Rubin Xu8027a4f2015-03-10 17:52:37 +00005409 }
5410 }
5411 return null;
5412 }
Benjamin Franze36087e2015-04-07 16:40:34 +01005413
5414 /**
5415 * Called by a device owner to disable the keyguard altogether.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005416 * <p>
5417 * Setting the keyguard to disabled has the same effect as choosing "None" as the screen lock
5418 * type. However, this call has no effect if a password, pin or pattern is currently set. If a
5419 * password, pin or pattern is set after the keyguard was disabled, the keyguard stops being
5420 * disabled.
Benjamin Franze36087e2015-04-07 16:40:34 +01005421 *
5422 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Benjamin Franzbece8062015-05-06 12:14:31 +01005423 * @param disabled {@code true} disables the keyguard, {@code false} reenables it.
Benjamin Franze36087e2015-04-07 16:40:34 +01005424 * @return {@code false} if attempting to disable the keyguard while a lock password was in
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005425 * place. {@code true} otherwise.
5426 * @throws SecurityException if {@code admin} is not a device owner.
Benjamin Franze36087e2015-04-07 16:40:34 +01005427 */
Robin Lee25e26452015-06-02 09:56:29 -07005428 public boolean setKeyguardDisabled(@NonNull ComponentName admin, boolean disabled) {
Benjamin Franze36087e2015-04-07 16:40:34 +01005429 try {
Benjamin Franzbece8062015-05-06 12:14:31 +01005430 return mService.setKeyguardDisabled(admin, disabled);
Benjamin Franze36087e2015-04-07 16:40:34 +01005431 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005432 throw re.rethrowFromSystemServer();
Benjamin Franze36087e2015-04-07 16:40:34 +01005433 }
5434 }
Benjamin Franzea2ec972015-03-16 17:18:09 +00005435
5436 /**
Benjamin Franzbece8062015-05-06 12:14:31 +01005437 * Called by device owner to disable the status bar. Disabling the status bar blocks
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005438 * notifications, quick settings and other screen overlays that allow escaping from a single use
5439 * device.
Benjamin Franzea2ec972015-03-16 17:18:09 +00005440 *
5441 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Benjamin Franzbece8062015-05-06 12:14:31 +01005442 * @param disabled {@code true} disables the status bar, {@code false} reenables it.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005443 * @return {@code false} if attempting to disable the status bar failed. {@code true} otherwise.
5444 * @throws SecurityException if {@code admin} is not a device owner.
Benjamin Franzea2ec972015-03-16 17:18:09 +00005445 */
Robin Lee25e26452015-06-02 09:56:29 -07005446 public boolean setStatusBarDisabled(@NonNull ComponentName admin, boolean disabled) {
Benjamin Franzea2ec972015-03-16 17:18:09 +00005447 try {
Benjamin Franzbece8062015-05-06 12:14:31 +01005448 return mService.setStatusBarDisabled(admin, disabled);
Benjamin Franzea2ec972015-03-16 17:18:09 +00005449 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005450 throw re.rethrowFromSystemServer();
Benjamin Franzea2ec972015-03-16 17:18:09 +00005451 }
5452 }
Rubin Xudc105cc2015-04-14 23:38:01 +01005453
5454 /**
5455 * Callable by the system update service to notify device owners about pending updates.
5456 * The caller must hold {@link android.Manifest.permission#NOTIFY_PENDING_SYSTEM_UPDATE}
5457 * permission.
5458 *
5459 * @param updateReceivedTime The time as given by {@link System#currentTimeMillis()} indicating
5460 * when the current pending update was first available. -1 if no update is available.
5461 * @hide
5462 */
5463 @SystemApi
5464 public void notifyPendingSystemUpdate(long updateReceivedTime) {
5465 if (mService != null) {
5466 try {
5467 mService.notifyPendingSystemUpdate(updateReceivedTime);
5468 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005469 throw re.rethrowFromSystemServer();
Rubin Xudc105cc2015-04-14 23:38:01 +01005470 }
5471 }
5472 }
Julia Reynolds13c58ba2015-04-20 16:42:54 -04005473
5474 /**
Amith Yamasanid49489b2015-04-28 14:00:26 -07005475 * Called by profile or device owners to set the default response for future runtime permission
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005476 * requests by applications. The policy can allow for normal operation which prompts the user to
5477 * grant a permission, or can allow automatic granting or denying of runtime permission requests
5478 * by an application. This also applies to new permissions declared by app updates. When a
5479 * permission is denied or granted this way, the effect is equivalent to setting the permission
5480 * grant state via {@link #setPermissionGrantState}.
5481 * <p/>
5482 * As this policy only acts on runtime permission requests, it only applies to applications
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -07005483 * built with a {@code targetSdkVersion} of {@link android.os.Build.VERSION_CODES#M} or later.
Benjamin Franz45dd6662015-07-08 14:24:14 +01005484 *
Amith Yamasanid49489b2015-04-28 14:00:26 -07005485 * @param admin Which profile or device owner this request is associated with.
5486 * @param policy One of the policy constants {@link #PERMISSION_POLICY_PROMPT},
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005487 * {@link #PERMISSION_POLICY_AUTO_GRANT} and {@link #PERMISSION_POLICY_AUTO_DENY}.
5488 * @throws SecurityException if {@code admin} is not a device or profile owner.
Benjamin Franz45dd6662015-07-08 14:24:14 +01005489 * @see #setPermissionGrantState
Amith Yamasanid49489b2015-04-28 14:00:26 -07005490 */
Robin Lee25e26452015-06-02 09:56:29 -07005491 public void setPermissionPolicy(@NonNull ComponentName admin, int policy) {
Amith Yamasanid49489b2015-04-28 14:00:26 -07005492 try {
5493 mService.setPermissionPolicy(admin, policy);
5494 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005495 throw re.rethrowFromSystemServer();
Amith Yamasanid49489b2015-04-28 14:00:26 -07005496 }
5497 }
5498
5499 /**
5500 * Returns the current runtime permission policy set by the device or profile owner. The
5501 * default is {@link #PERMISSION_POLICY_PROMPT}.
5502 * @param admin Which profile or device owner this request is associated with.
5503 * @return the current policy for future permission requests.
5504 */
Esteban Talavera28b95702015-06-24 15:23:42 +01005505 public int getPermissionPolicy(ComponentName admin) {
Amith Yamasanid49489b2015-04-28 14:00:26 -07005506 try {
5507 return mService.getPermissionPolicy(admin);
5508 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005509 throw re.rethrowFromSystemServer();
Amith Yamasanid49489b2015-04-28 14:00:26 -07005510 }
5511 }
5512
5513 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005514 * Sets the grant state of a runtime permission for a specific application. The state can be
5515 * {@link #PERMISSION_GRANT_STATE_DEFAULT default} in which a user can manage it through the UI,
5516 * {@link #PERMISSION_GRANT_STATE_DENIED denied}, in which the permission is denied and the user
5517 * cannot manage it through the UI, and {@link #PERMISSION_GRANT_STATE_GRANTED granted} in which
5518 * the permission is granted and the user cannot manage it through the UI. This might affect all
5519 * permissions in a group that the runtime permission belongs to. This method can only be called
Svet Ganovd8ecc5a2015-05-20 10:45:43 -07005520 * by a profile or device owner.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005521 * <p/>
5522 * Setting the grant state to {@link #PERMISSION_GRANT_STATE_DEFAULT default} does not revoke
5523 * the permission. It retains the previous grant, if any.
5524 * <p/>
5525 * Permissions can be granted or revoked only for applications built with a
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -07005526 * {@code targetSdkVersion} of {@link android.os.Build.VERSION_CODES#M} or later.
Amith Yamasani0bf8f7c2015-06-22 13:00:32 -07005527 *
Amith Yamasanid49489b2015-04-28 14:00:26 -07005528 * @param admin Which profile or device owner this request is associated with.
5529 * @param packageName The application to grant or revoke a permission to.
5530 * @param permission The permission to grant or revoke.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005531 * @param grantState The permission grant state which is one of
5532 * {@link #PERMISSION_GRANT_STATE_DENIED}, {@link #PERMISSION_GRANT_STATE_DEFAULT},
5533 * {@link #PERMISSION_GRANT_STATE_GRANTED},
Svet Ganovd8ecc5a2015-05-20 10:45:43 -07005534 * @return whether the permission was successfully granted or revoked.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005535 * @throws SecurityException if {@code admin} is not a device or profile owner.
Svet Ganovd8ecc5a2015-05-20 10:45:43 -07005536 * @see #PERMISSION_GRANT_STATE_DENIED
5537 * @see #PERMISSION_GRANT_STATE_DEFAULT
5538 * @see #PERMISSION_GRANT_STATE_GRANTED
Amith Yamasanid49489b2015-04-28 14:00:26 -07005539 */
Robin Lee25e26452015-06-02 09:56:29 -07005540 public boolean setPermissionGrantState(@NonNull ComponentName admin, String packageName,
Svet Ganovd8ecc5a2015-05-20 10:45:43 -07005541 String permission, int grantState) {
Amith Yamasanid49489b2015-04-28 14:00:26 -07005542 try {
Svet Ganovd8ecc5a2015-05-20 10:45:43 -07005543 return mService.setPermissionGrantState(admin, packageName, permission, grantState);
Amith Yamasanid49489b2015-04-28 14:00:26 -07005544 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005545 throw re.rethrowFromSystemServer();
Amith Yamasanid49489b2015-04-28 14:00:26 -07005546 }
5547 }
Amith Yamasani184b3752015-05-22 13:00:51 -07005548
5549 /**
5550 * Returns the current grant state of a runtime permission for a specific application.
5551 *
5552 * @param admin Which profile or device owner this request is associated with.
5553 * @param packageName The application to check the grant state for.
5554 * @param permission The permission to check for.
5555 * @return the current grant state specified by device policy. If the profile or device owner
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005556 * has not set a grant state, the return value is
5557 * {@link #PERMISSION_GRANT_STATE_DEFAULT}. This does not indicate whether or not the
5558 * permission is currently granted for the package.
5559 * <p/>
5560 * If a grant state was set by the profile or device owner, then the return value will
5561 * be one of {@link #PERMISSION_GRANT_STATE_DENIED} or
5562 * {@link #PERMISSION_GRANT_STATE_GRANTED}, which indicates if the permission is
5563 * currently denied or granted.
5564 * @throws SecurityException if {@code admin} is not a device or profile owner.
Amith Yamasani184b3752015-05-22 13:00:51 -07005565 * @see #setPermissionGrantState(ComponentName, String, String, int)
5566 * @see PackageManager#checkPermission(String, String)
5567 */
Robin Lee25e26452015-06-02 09:56:29 -07005568 public int getPermissionGrantState(@NonNull ComponentName admin, String packageName,
Amith Yamasani184b3752015-05-22 13:00:51 -07005569 String permission) {
5570 try {
5571 return mService.getPermissionGrantState(admin, packageName, permission);
5572 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005573 throw re.rethrowFromSystemServer();
Amith Yamasani184b3752015-05-22 13:00:51 -07005574 }
5575 }
Nicolas Prevot07387fe2015-10-30 17:53:30 +00005576
5577 /**
5578 * Returns if provisioning a managed profile or device is possible or not.
5579 * @param action One of {@link #ACTION_PROVISION_MANAGED_DEVICE},
5580 * {@link #ACTION_PROVISION_MANAGED_PROFILE}.
Nicolas Prevot07387fe2015-10-30 17:53:30 +00005581 * @return if provisioning a managed profile or device is possible or not.
5582 * @throws IllegalArgumentException if the supplied action is not valid.
5583 */
5584 public boolean isProvisioningAllowed(String action) {
5585 try {
5586 return mService.isProvisioningAllowed(action);
5587 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005588 throw re.rethrowFromSystemServer();
Nicolas Prevot07387fe2015-10-30 17:53:30 +00005589 }
5590 }
Mahaver Chopra15a46b02015-11-11 14:54:35 +00005591
5592 /**
5593 * @hide
5594 * Return if this user is a managed profile of another user. An admin can become the profile
5595 * owner of a managed profile with {@link #ACTION_PROVISION_MANAGED_PROFILE} and of a managed
5596 * user with {@link #ACTION_PROVISION_MANAGED_USER}.
5597 * @param admin Which profile owner this request is associated with.
5598 * @return if this user is a managed profile of another user.
5599 */
5600 public boolean isManagedProfile(@NonNull ComponentName admin) {
5601 try {
5602 return mService.isManagedProfile(admin);
5603 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005604 throw re.rethrowFromSystemServer();
Mahaver Chopra15a46b02015-11-11 14:54:35 +00005605 }
5606 }
5607
5608 /**
5609 * @hide
5610 * Return if this user is a system-only user. An admin can manage a device from a system only
5611 * user by calling {@link #ACTION_PROVISION_MANAGED_SHAREABLE_DEVICE}.
5612 * @param admin Which device owner this request is associated with.
5613 * @return if this user is a system-only user.
5614 */
5615 public boolean isSystemOnlyUser(@NonNull ComponentName admin) {
5616 try {
5617 return mService.isSystemOnlyUser(admin);
5618 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005619 throw re.rethrowFromSystemServer();
Mahaver Chopra15a46b02015-11-11 14:54:35 +00005620 }
5621 }
Makoto Onukia31ebbc2015-11-23 17:15:21 -08005622
5623 /**
5624 * Called by device owner to get the MAC address of the Wi-Fi device.
5625 *
Sudheer Shanka3cb4da12016-03-07 18:51:49 -08005626 * @param admin Which device owner this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005627 * @return the MAC address of the Wi-Fi device, or null when the information is not available.
5628 * (For example, Wi-Fi hasn't been enabled, or the device doesn't support Wi-Fi.)
5629 * <p>
5630 * The address will be in the {@code XX:XX:XX:XX:XX:XX} format.
5631 * @throws SecurityException if {@code admin} is not a device owner.
Makoto Onukia31ebbc2015-11-23 17:15:21 -08005632 */
Sudheer Shanka3cb4da12016-03-07 18:51:49 -08005633 public String getWifiMacAddress(@NonNull ComponentName admin) {
Makoto Onukia31ebbc2015-11-23 17:15:21 -08005634 try {
Sudheer Shanka3cb4da12016-03-07 18:51:49 -08005635 return mService.getWifiMacAddress(admin);
Makoto Onukia31ebbc2015-11-23 17:15:21 -08005636 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005637 throw re.rethrowFromSystemServer();
Makoto Onukia31ebbc2015-11-23 17:15:21 -08005638 }
5639 }
Mahaver Chopra1ce53bc2015-12-14 13:35:14 +00005640
5641 /**
Mahaver Chopra1216ae52016-03-11 15:39:48 +00005642 * Called by device owner to reboot the device. If there is an ongoing call on the device,
5643 * throws an {@link IllegalStateException}.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005644 * @param admin Which device owner the request is associated with.
Mahaver Chopra1216ae52016-03-11 15:39:48 +00005645 * @throws IllegalStateException if device has an ongoing call.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005646 * @throws SecurityException if {@code admin} is not a device owner.
Mahaver Chopra1216ae52016-03-11 15:39:48 +00005647 * @see TelephonyManager#CALL_STATE_IDLE
Mahaver Chopra1ce53bc2015-12-14 13:35:14 +00005648 */
5649 public void reboot(@NonNull ComponentName admin) {
5650 try {
5651 mService.reboot(admin);
5652 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005653 throw re.rethrowFromSystemServer();
Mahaver Chopra1ce53bc2015-12-14 13:35:14 +00005654 }
5655 }
Kenny Guy06de4e72015-12-22 12:07:39 +00005656
5657 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005658 * Called by a device admin to set the short support message. This will be displayed to the user
5659 * in settings screens where funtionality has been disabled by the admin. The message should be
5660 * limited to a short statement such as "This setting is disabled by your administrator. Contact
5661 * someone@example.com for support." If the message is longer than 200 characters it may be
5662 * truncated.
5663 * <p>
5664 * If the short support message needs to be localized, it is the responsibility of the
Benjamin Franz3e8a7092016-01-25 16:19:08 +00005665 * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast
5666 * and set a new version of this string accordingly.
5667 *
Kenny Guy06de4e72015-12-22 12:07:39 +00005668 * @see #setLongSupportMessage
Kenny Guy06de4e72015-12-22 12:07:39 +00005669 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005670 * @param message Short message to be displayed to the user in settings or null to clear the
5671 * existing message.
5672 * @throws SecurityException if {@code admin} is not an active administrator.
Kenny Guy06de4e72015-12-22 12:07:39 +00005673 */
5674 public void setShortSupportMessage(@NonNull ComponentName admin,
5675 @Nullable String message) {
5676 if (mService != null) {
5677 try {
5678 mService.setShortSupportMessage(admin, message);
5679 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005680 throw e.rethrowFromSystemServer();
Kenny Guy06de4e72015-12-22 12:07:39 +00005681 }
5682 }
5683 }
5684
5685 /**
5686 * Called by a device admin to get the short support message.
5687 *
5688 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005689 * @return The message set by {@link #setShortSupportMessage(ComponentName, String)} or null if
5690 * no message has been set.
5691 * @throws SecurityException if {@code admin} is not an active administrator.
Kenny Guy06de4e72015-12-22 12:07:39 +00005692 */
5693 public String getShortSupportMessage(@NonNull ComponentName admin) {
5694 if (mService != null) {
5695 try {
5696 return mService.getShortSupportMessage(admin);
5697 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005698 throw e.rethrowFromSystemServer();
Kenny Guy06de4e72015-12-22 12:07:39 +00005699 }
5700 }
5701 return null;
5702 }
5703
5704 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005705 * Called by a device admin to set the long support message. This will be displayed to the user
5706 * in the device administators settings screen.
5707 * <p>
5708 * If the long support message needs to be localized, it is the responsibility of the
Benjamin Franz3e8a7092016-01-25 16:19:08 +00005709 * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast
5710 * and set a new version of this string accordingly.
5711 *
Kenny Guy06de4e72015-12-22 12:07:39 +00005712 * @see #setShortSupportMessage
Kenny Guy06de4e72015-12-22 12:07:39 +00005713 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005714 * @param message Long message to be displayed to the user in settings or null to clear the
5715 * existing message.
5716 * @throws SecurityException if {@code admin} is not an active administrator.
Kenny Guy06de4e72015-12-22 12:07:39 +00005717 */
5718 public void setLongSupportMessage(@NonNull ComponentName admin,
5719 @Nullable String message) {
5720 if (mService != null) {
5721 try {
5722 mService.setLongSupportMessage(admin, message);
5723 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005724 throw e.rethrowFromSystemServer();
Kenny Guy06de4e72015-12-22 12:07:39 +00005725 }
5726 }
5727 }
5728
5729 /**
5730 * Called by a device admin to get the long support message.
5731 *
5732 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005733 * @return The message set by {@link #setLongSupportMessage(ComponentName, String)} or null if
5734 * no message has been set.
5735 * @throws SecurityException if {@code admin} is not an active administrator.
Kenny Guy06de4e72015-12-22 12:07:39 +00005736 */
5737 public String getLongSupportMessage(@NonNull ComponentName admin) {
5738 if (mService != null) {
5739 try {
5740 return mService.getLongSupportMessage(admin);
5741 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005742 throw e.rethrowFromSystemServer();
Kenny Guy06de4e72015-12-22 12:07:39 +00005743 }
5744 }
5745 return null;
5746 }
5747
5748 /**
5749 * Called by the system to get the short support message.
5750 *
5751 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5752 * @param userHandle user id the admin is running as.
5753 * @return The message set by {@link #setShortSupportMessage(ComponentName, String)}
5754 *
5755 * @hide
5756 */
5757 public String getShortSupportMessageForUser(@NonNull ComponentName admin, int userHandle) {
5758 if (mService != null) {
5759 try {
5760 return mService.getShortSupportMessageForUser(admin, userHandle);
5761 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005762 throw e.rethrowFromSystemServer();
Kenny Guy06de4e72015-12-22 12:07:39 +00005763 }
5764 }
5765 return null;
5766 }
5767
5768
5769 /**
5770 * Called by the system to get the long support message.
5771 *
5772 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5773 * @param userHandle user id the admin is running as.
5774 * @return The message set by {@link #setLongSupportMessage(ComponentName, String)}
5775 *
5776 * @hide
5777 */
5778 public String getLongSupportMessageForUser(@NonNull ComponentName admin, int userHandle) {
5779 if (mService != null) {
5780 try {
5781 return mService.getLongSupportMessageForUser(admin, userHandle);
5782 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005783 throw e.rethrowFromSystemServer();
Kenny Guy06de4e72015-12-22 12:07:39 +00005784 }
5785 }
5786 return null;
5787 }
Clara Bayarri3e826ef2015-12-14 17:51:22 +00005788
5789 /**
Esteban Talavera62399912016-01-11 15:37:55 +00005790 * Called by the profile owner of a managed profile to obtain a {@link DevicePolicyManager}
5791 * whose calls act on the parent profile.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005792 * <p>
5793 * Note only some methods will work on the parent Manager.
Clara Bayarri3e826ef2015-12-14 17:51:22 +00005794 *
5795 * @return a new instance of {@link DevicePolicyManager} that acts on the parent profile.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005796 * @throws SecurityException if {@code admin} is not a profile owner.
Clara Bayarri3e826ef2015-12-14 17:51:22 +00005797 */
5798 public DevicePolicyManager getParentProfileInstance(@NonNull ComponentName admin) {
5799 try {
5800 if (!mService.isManagedProfile(admin)) {
5801 throw new SecurityException("The current user does not have a parent profile.");
5802 }
5803 return new DevicePolicyManager(mContext, true);
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005804 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005805 throw e.rethrowFromSystemServer();
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005806 }
5807 }
5808
5809 /**
Michal Karpinski6235a942016-03-15 12:07:23 +00005810 * Called by device owner to control the security logging feature. Logging can only be
5811 * enabled on single user devices where the sole user is managed by the device owner.
5812 *
5813 * <p> Security logs contain various information intended for security auditing purposes.
5814 * See {@link SecurityEvent} for details.
5815 *
5816 * <p>There must be only one user on the device, managed by the device owner.
5817 * Otherwise a {@link SecurityException} will be thrown.
Michal Karpinskib58e4962016-03-01 14:55:10 +00005818 *
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005819 * @param admin Which device owner this request is associated with.
Michal Karpinski6235a942016-03-15 12:07:23 +00005820 * @param enabled whether security logging should be enabled or not.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005821 * @throws SecurityException if {@code admin} is not a device owner.
Michal Karpinski6235a942016-03-15 12:07:23 +00005822 * @see #retrieveSecurityLogs
5823 */
5824 public void setSecurityLoggingEnabled(@NonNull ComponentName admin, boolean enabled) {
5825 try {
5826 mService.setSecurityLoggingEnabled(admin, enabled);
5827 } catch (RemoteException re) {
5828 throw re.rethrowFromSystemServer();
5829 }
5830 }
5831
5832 /**
Michal Karpinski6235a942016-03-15 12:07:23 +00005833 * Return whether security logging is enabled or not by the device owner.
5834 *
5835 * <p>Can only be called by the device owner, otherwise a {@link SecurityException} will be
5836 * thrown.
5837 *
5838 * @param admin Which device owner this request is associated with.
5839 * @return {@code true} if security logging is enabled by device owner, {@code false} otherwise.
5840 * @throws SecurityException if {@code admin} is not a device owner.
5841 */
5842 public boolean isSecurityLoggingEnabled(@NonNull ComponentName admin) {
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005843 try {
Michal Karpinski6235a942016-03-15 12:07:23 +00005844 return mService.isSecurityLoggingEnabled(admin);
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005845 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005846 throw re.rethrowFromSystemServer();
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005847 }
5848 }
5849
5850 /**
Michal Karpinski6235a942016-03-15 12:07:23 +00005851 * Called by device owner to retrieve all new security logging entries since the last call to
5852 * this API after device boots.
5853 *
5854 * <p> Access to the logs is rate limited and it will only return new logs after the device
5855 * owner has been notified via {@link DeviceAdminReceiver#onSecurityLogsAvailable}.
5856 *
5857 * <p>There must be only one user on the device, managed by the device owner.
5858 * Otherwise a {@link SecurityException} will be thrown.
Michal Karpinskib58e4962016-03-01 14:55:10 +00005859 *
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005860 * @param admin Which device owner this request is associated with.
Michal Karpinski6235a942016-03-15 12:07:23 +00005861 * @return the new batch of security logs which is a list of {@link SecurityEvent},
5862 * or {@code null} if rate limitation is exceeded or if logging is currently disabled.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005863 * @throws SecurityException if {@code admin} is not a device owner.
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005864 */
Michal Karpinski6235a942016-03-15 12:07:23 +00005865 public List<SecurityEvent> retrieveSecurityLogs(@NonNull ComponentName admin) {
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005866 try {
Michal Karpinski6235a942016-03-15 12:07:23 +00005867 ParceledListSlice<SecurityEvent> list = mService.retrieveSecurityLogs(admin);
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005868 if (list != null) {
5869 return list.getList();
5870 } else {
5871 // Rate limit exceeded.
5872 return null;
5873 }
Clara Bayarri3e826ef2015-12-14 17:51:22 +00005874 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005875 throw re.rethrowFromSystemServer();
Clara Bayarri3e826ef2015-12-14 17:51:22 +00005876 }
5877 }
Benjamin Franz59720bb2016-01-18 15:26:11 +00005878
5879 /**
Sudheer Shanka978fc0d2016-01-28 13:51:10 +00005880 * Called by the system to obtain a {@link DevicePolicyManager} whose calls act on the parent
5881 * profile.
5882 *
5883 * @hide
5884 */
5885 public DevicePolicyManager getParentProfileInstance(UserInfo uInfo) {
5886 mContext.checkSelfPermission(
5887 android.Manifest.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS);
5888 if (!uInfo.isManagedProfile()) {
5889 throw new SecurityException("The user " + uInfo.id
5890 + " does not have a parent profile.");
5891 }
5892 return new DevicePolicyManager(mContext, true);
5893 }
5894
5895 /**
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005896 * Called by device owners to retrieve device logs from before the device's last reboot.
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005897 * <p>
5898 * <strong> The device logs are retrieved from a RAM region which is not guaranteed to be
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005899 * corruption-free during power cycles, due to hardware variations and limitations. As a result,
5900 * this API is provided as best-effort and the returned logs may contain corrupted
5901 * data. </strong>
5902 * <p>
5903 * There must be only one user on the device, managed by the device owner. Otherwise a
5904 * {@link SecurityException} will be thrown.
Michal Karpinskib58e4962016-03-01 14:55:10 +00005905 *
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005906 * @param admin Which device owner this request is associated with.
5907 * @return Device logs from before the latest reboot of the system.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005908 * @throws SecurityException if {@code admin} is not a device owner.
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005909 */
Michal Karpinski6235a942016-03-15 12:07:23 +00005910 public List<SecurityEvent> retrievePreRebootSecurityLogs(@NonNull ComponentName admin) {
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005911 try {
Michal Karpinski6235a942016-03-15 12:07:23 +00005912 ParceledListSlice<SecurityEvent> list = mService.retrievePreRebootSecurityLogs(admin);
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005913 return list.getList();
5914 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005915 throw re.rethrowFromSystemServer();
Rubin Xuc3cd05f2016-01-11 12:11:35 +00005916 }
5917 }
5918
5919 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005920 * Called by a profile owner of a managed profile to set the color used for customization. This
5921 * color is used as background color of the confirm credentials screen for that user. The
Clara Bayarri8d0bd7fa2016-03-30 14:59:58 +01005922 * default color is teal (#00796B).
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005923 * <p>
5924 * The confirm credentials screen can be created using
Benjamin Franz59720bb2016-01-18 15:26:11 +00005925 * {@link android.app.KeyguardManager#createConfirmDeviceCredentialIntent}.
5926 *
5927 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5928 * @param color The 32bit representation of the color to be used.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005929 * @throws SecurityException if {@code admin} is not a profile owner.
Benjamin Franz59720bb2016-01-18 15:26:11 +00005930 */
5931 public void setOrganizationColor(@NonNull ComponentName admin, int color) {
5932 try {
5933 mService.setOrganizationColor(admin, color);
5934 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005935 throw re.rethrowFromSystemServer();
Benjamin Franz59720bb2016-01-18 15:26:11 +00005936 }
5937 }
5938
5939 /**
Nicolas Prevot8f7698a2016-02-11 16:05:33 +00005940 * @hide
5941 *
5942 * Sets the color used for customization.
5943 *
5944 * @param color The 32bit representation of the color to be used.
5945 * @param userId which user to set the color to.
5946 * @RequiresPermission(allOf = {
5947 * Manifest.permission.MANAGE_USERS,
5948 * Manifest.permission.INTERACT_ACROSS_USERS_FULL})
5949 */
5950 public void setOrganizationColorForUser(@ColorInt int color, @UserIdInt int userId) {
5951 try {
5952 mService.setOrganizationColorForUser(color, userId);
5953 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005954 throw re.rethrowFromSystemServer();
Nicolas Prevot8f7698a2016-02-11 16:05:33 +00005955 }
5956 }
5957
5958 /**
Benjamin Franz59720bb2016-01-18 15:26:11 +00005959 * Called by a profile owner of a managed profile to retrieve the color used for customization.
5960 * This color is used as background color of the confirm credentials screen for that user.
5961 *
5962 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5963 * @return The 32bit representation of the color to be used.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005964 * @throws SecurityException if {@code admin} is not a profile owner.
Benjamin Franz59720bb2016-01-18 15:26:11 +00005965 */
5966 public int getOrganizationColor(@NonNull ComponentName admin) {
5967 try {
5968 return mService.getOrganizationColor(admin);
5969 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005970 throw re.rethrowFromSystemServer();
Benjamin Franz59720bb2016-01-18 15:26:11 +00005971 }
5972 }
5973
5974 /**
5975 * @hide
5976 * Retrieve the customization color for a given user.
5977 *
5978 * @param userHandle The user id of the user we're interested in.
5979 * @return The 32bit representation of the color to be used.
5980 */
5981 public int getOrganizationColorForUser(int userHandle) {
5982 try {
5983 return mService.getOrganizationColorForUser(userHandle);
5984 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07005985 throw re.rethrowFromSystemServer();
Benjamin Franz59720bb2016-01-18 15:26:11 +00005986 }
5987 }
Bartosz Fabianowski4c052f22016-01-25 14:18:43 +01005988
5989 /**
Benjamin Franz3e8a7092016-01-25 16:19:08 +00005990 * Called by a profile owner of a managed profile to set the name of the organization under
5991 * management.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005992 * <p>
5993 * If the organization name needs to be localized, it is the responsibility of the
Benjamin Franz3e8a7092016-01-25 16:19:08 +00005994 * {@link DeviceAdminReceiver} to listen to the {@link Intent#ACTION_LOCALE_CHANGED} broadcast
5995 * and set a new version of this string accordingly.
5996 *
5997 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
5998 * @param title The organization name or {@code null} to clear a previously set name.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07005999 * @throws SecurityException if {@code admin} is not a profile owner.
Benjamin Franz3e8a7092016-01-25 16:19:08 +00006000 */
6001 public void setOrganizationName(@NonNull ComponentName admin, @Nullable String title) {
6002 try {
6003 mService.setOrganizationName(admin, title);
6004 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006005 throw re.rethrowFromSystemServer();
Benjamin Franz3e8a7092016-01-25 16:19:08 +00006006 }
6007 }
6008
6009 /**
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07006010 * Called by a profile owner of a managed profile to retrieve the name of the organization under
6011 * management.
Benjamin Franz3e8a7092016-01-25 16:19:08 +00006012 *
6013 * @param admin Which {@link DeviceAdminReceiver} this request is associated with.
6014 * @return The organization name or {@code null} if none is set.
Suprabh Shukla34d92ef2016-03-14 13:49:37 -07006015 * @throws SecurityException if {@code admin} is not a profile owner.
Benjamin Franz3e8a7092016-01-25 16:19:08 +00006016 */
6017 public String getOrganizationName(@NonNull ComponentName admin) {
6018 try {
6019 return mService.getOrganizationName(admin);
6020 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006021 throw re.rethrowFromSystemServer();
Benjamin Franz3e8a7092016-01-25 16:19:08 +00006022 }
6023 }
6024
6025 /**
6026 * Retrieve the default title message used in the confirm credentials screen for a given user.
6027 *
6028 * @param userHandle The user id of the user we're interested in.
6029 * @return The organization name or {@code null} if none is set.
6030 *
6031 * @hide
6032 */
6033 public String getOrganizationNameForUser(int userHandle) {
6034 try {
6035 return mService.getOrganizationNameForUser(userHandle);
6036 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006037 throw re.rethrowFromSystemServer();
Benjamin Franz3e8a7092016-01-25 16:19:08 +00006038 }
6039 }
6040
6041 /**
Alan Treadwayafad8782016-01-19 15:15:08 +00006042 * @return the {@link UserProvisioningState} for the current user - for unmanaged users will
6043 * return {@link #STATE_USER_UNMANAGED}
6044 * @hide
6045 */
Benjamin Franzeed2a8e2016-02-19 14:19:05 +00006046 @SystemApi
Alan Treadwayafad8782016-01-19 15:15:08 +00006047 @UserProvisioningState
6048 public int getUserProvisioningState() {
6049 if (mService != null) {
6050 try {
6051 return mService.getUserProvisioningState();
6052 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006053 throw e.rethrowFromSystemServer();
Alan Treadwayafad8782016-01-19 15:15:08 +00006054 }
6055 }
6056 return STATE_USER_UNMANAGED;
6057 }
6058
6059 /**
6060 * Set the {@link UserProvisioningState} for the supplied user, if they are managed.
6061 *
6062 * @param state to store
6063 * @param userHandle for user
6064 * @hide
6065 */
6066 public void setUserProvisioningState(@UserProvisioningState int state, int userHandle) {
6067 if (mService != null) {
6068 try {
6069 mService.setUserProvisioningState(state, userHandle);
6070 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006071 throw e.rethrowFromSystemServer();
Alan Treadwayafad8782016-01-19 15:15:08 +00006072 }
6073 }
6074 }
6075
6076 /**
Bartosz Fabianowski4c052f22016-01-25 14:18:43 +01006077 * @hide
6078 * Indicates the entity that controls the device or profile owner. A user/profile is considered
6079 * affiliated if it is managed by the same entity as the device.
6080 *
6081 * <p> By definition, the user that the device owner runs on is always affiliated. Any other
6082 * user/profile is considered affiliated if the following conditions are both met:
6083 * <ul>
6084 * <li>The device owner and the user's/profile's profile owner have called this method,
6085 * specifying a set of opaque affiliation ids each. If the sets specified by the device owner
6086 * and a profile owner intersect, they must have come from the same source, which means that
6087 * the device owner and profile owner are controlled by the same entity.</li>
6088 * <li>The device owner's and profile owner's package names are the same.</li>
6089 * </ul>
6090 *
6091 * @param admin Which profile or device owner this request is associated with.
6092 * @param ids A set of opaque affiliation ids.
6093 */
6094 public void setAffiliationIds(@NonNull ComponentName admin, Set<String> ids) {
6095 try {
6096 mService.setAffiliationIds(admin, new ArrayList<String>(ids));
6097 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006098 throw e.rethrowFromSystemServer();
Bartosz Fabianowski4c052f22016-01-25 14:18:43 +01006099 }
6100 }
6101
6102 /**
6103 * @hide
6104 * Returns whether this user/profile is affiliated with the device. See
6105 * {@link #setAffiliationIds} for the definition of affiliation.
6106 *
6107 * @return whether this user/profile is affiliated with the device.
6108 */
6109 public boolean isAffiliatedUser() {
6110 try {
6111 return mService != null && mService.isAffiliatedUser();
6112 } catch (RemoteException e) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006113 throw e.rethrowFromSystemServer();
Bartosz Fabianowski4c052f22016-01-25 14:18:43 +01006114 }
6115 }
Suprabh Shuklaa2ae2232016-01-28 18:05:14 -08006116
6117 /**
6118 * @hide
6119 * Returns whether the uninstall for {@code packageName} for the current user is in queue
6120 * to be started
6121 * @param packageName the package to check for
6122 * @return whether the uninstall intent for {@code packageName} is pending
6123 */
6124 public boolean isUninstallInQueue(String packageName) {
6125 try {
6126 return mService.isUninstallInQueue(packageName);
6127 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006128 throw re.rethrowFromSystemServer();
Suprabh Shuklaa2ae2232016-01-28 18:05:14 -08006129 }
6130 }
6131
6132 /**
6133 * @hide
6134 * @param packageName the package containing active DAs to be uninstalled
6135 */
6136 public void uninstallPackageWithActiveAdmins(String packageName) {
6137 try {
6138 mService.uninstallPackageWithActiveAdmins(packageName);
6139 } catch (RemoteException re) {
Jeff Sharkeydbff9ca2016-03-01 19:46:25 -07006140 throw re.rethrowFromSystemServer();
Suprabh Shuklaa2ae2232016-01-28 18:05:14 -08006141 }
6142 }
Dianne Hackbornd6847842010-01-12 18:14:19 -08006143}