DevicePolicyManager.SetPersonalAppsSuspended(ComponentName, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called by a profile owner of an organization-owned managed profile to suspend personal apps on the device.
[Android.Runtime.Register("setPersonalAppsSuspended", "(Landroid/content/ComponentName;Z)V", "GetSetPersonalAppsSuspended_Landroid_content_ComponentName_ZHandler", ApiSince=30)]
public virtual void SetPersonalAppsSuspended (Android.Content.ComponentName admin, bool suspended);
[<Android.Runtime.Register("setPersonalAppsSuspended", "(Landroid/content/ComponentName;Z)V", "GetSetPersonalAppsSuspended_Landroid_content_ComponentName_ZHandler", ApiSince=30)>]
abstract member SetPersonalAppsSuspended : Android.Content.ComponentName * bool -> unit
override this.SetPersonalAppsSuspended : Android.Content.ComponentName * bool -> unit
Parameters
- admin
- ComponentName
Which DeviceAdminReceiver
this request is associated with
- suspended
- Boolean
Whether personal apps should be suspended.
- Attributes
Remarks
Called by a profile owner of an organization-owned managed profile to suspend personal apps on the device. When personal apps are suspended the device can only be used for calls.
When personal apps are suspended, an ongoing notification about that is shown to the user. When the user taps the notification, system invokes #ACTION_CHECK_POLICY_COMPLIANCE
in the profile owner package. Profile owner implementation that uses personal apps suspension must handle this intent.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.