2

我想在不使用 NFC 的情况下将我的应用程序设为设备所有者。在开发人员博客上提到,要让设备拥有者必须使用 NFC,但我发现没有 NFC 也是可能的,正如 alex_au 在此评论中提到的那样。

我已经尝试过了,但没有成功。有没有人能够做到这一点?

4

1 回答 1

5

您可以使用 adb shell 中的命令行工具dpm

用法:

usage: dpm [subcommand] [options]
usage: dpm set-device-owner <COMPONENT>
usage: dpm set-profile-owner <COMPONENT> <USER_ID>

dpm set-device-owner: Sets the given component as active admin, and its package as device owner.
dpm set-profile-owner: Sets the given component as active admin and profile owner for an existing user.

更多信息检查:dpm shell 命令

注意:在使用此命令之前,请确保未配置该设备。如果设备已配置并且您收到类似“设备已配置”之类的消息,请在从设备中删除所有帐户后尝试该命令,或在设备恢复出厂设置后尝试。

于 2015-01-27T09:24:09.853 回答