Example usage for android.os UserHandle SYSTEM

List of usage examples for android.os UserHandle SYSTEM

Introduction

In this page you can find the example usage for android.os UserHandle SYSTEM.

Prototype

UserHandle SYSTEM

To view the source code for android.os UserHandle SYSTEM.

Click Source Link

Usage

From source file:com.android.managedprovisioning.DeviceOwnerProvisioningService.java

private void maybeCopyAccount() {
    if (!UserManager.isSplitSystemUser()) {
        // Only one user involved in this case.
        return;/*from   ww w .ja v  a2s.c  o m*/
    }

    mUtils.maybeCopyAccount(DeviceOwnerProvisioningService.this, mParams.accountToMigrate, UserHandle.SYSTEM,
            Process.myUserHandle());
}