设备所有者应用程序是否获得系统应用程序权限?
Does Device Owner app get System App permissions?
我正在尝试将有关 Device Owner 应用程序的一些内容组合在一起。
关于新发布的EMM API, is there a way for the Device Owner application get system app permissions? I have noticed that the API allows remote package installation, but for this to work, the application needs to have INSTAL_PACKAGES权限(为系统应用保留)。
此外,Android 隐藏 API 是否有任何官方文档,还是只是代码检查和注释?
设备所有者没有系统应用权限。
在 Marshmallow 上,设备所有者可以调用 PackageInstaller
并静默安装应用程序。
TestDPC 基本上展示了您可以实现的所有功能:
https://github.com/googlesamples/android-testdpc
更多有趣的信息:
https://florent-dupont.blogspot.ca/2015/02/10-things-to-know-about-device-owner.html
我正在尝试将有关 Device Owner 应用程序的一些内容组合在一起。
关于新发布的EMM API, is there a way for the Device Owner application get system app permissions? I have noticed that the API allows remote package installation, but for this to work, the application needs to have INSTAL_PACKAGES权限(为系统应用保留)。
此外,Android 隐藏 API 是否有任何官方文档,还是只是代码检查和注释?
设备所有者没有系统应用权限。
在 Marshmallow 上,设备所有者可以调用 PackageInstaller
并静默安装应用程序。
TestDPC 基本上展示了您可以实现的所有功能: https://github.com/googlesamples/android-testdpc
更多有趣的信息: https://florent-dupont.blogspot.ca/2015/02/10-things-to-know-about-device-owner.html