设备管理API,如何成为设备所有者?

时间:2015-09-24 14:18:46

标签: android

我想使用DevicePolicyManager方法:setSecureSetting。此方法需要profil或设备所有者:

  

由个人资料或设备所有者调用以更新Settings.Secure设置。

我的应用程序已激活设备管理员,因为当我调用isAdminActive时,它返回true。

但是当我打电话给setSecureSetting时,我得到了例外:

E/DevicePolicyUtility( 9901): java.lang.SecurityException: Admin ComponentInfo{com.xxxx/com.xxxx.MyDeviceAdminReceiver} does not own the profile
E/DevicePolicyUtility( 9901):   at android.os.Parcel.readException(Parcel.java:1546)
E/DevicePolicyUtility( 9901):   at android.os.Parcel.readException(Parcel.java:1499)
E/DevicePolicyUtility( 9901):   at android.app.admin.IDevicePolicyManager$Stub$Proxy.setSecureSetting(IDevicePolicyManager.java:4300)
E/DevicePolicyUtility( 9901):   at android.app.admin.DevicePolicyManager.setSecureSetting(DevicePolicyManager.java:3399)

那么,如何成为API的设备所有者? 我在http://developer.android.com/guide/topics/admin/device-admin.htmlhttp://developer.android.com/reference/android/app/admin/DevicePolicyManager.html

中找不到

我在API Level 23上试试这个:

Intent intent = new Intent(DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE);
intent.putExtra(DevicePolicyManager.EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME,ctx.getPackageName());
if (intent.resolveActivity(ctx.getPackageManager()) != null) {
    ctx.startActivity(intent);
} else {
    Toast.makeText(ctx, "Stopping.", Toast.LENGTH_SHORT).show();
}

我收到了消息:enter image description here

1 个答案:

答案 0 :(得分:3)

要成为设备所有者,有两种可能性

  

dpm set-device-owner:将给定组件设置为活动admin,和   它作为设备所有者的包。

感谢Florent Dupont:http://florent-dupont.blogspot.fr/2015/01/android-shell-command-dpm-device-policy.html