Android Device Owner Mode by App Signed with platform key (or use signed App for custom device policy)

282 Views Asked by At

I have application signed by platform key and I need to move device to kiosk mode.

What kiosk mode mean in my case:

  • Set user restrictions (change default activities, set VPN etc...)
  • Prevent user access to third party apps, some system apps etc...
  • Set custom Activity as Home activity without user interaction
  • Move application to lock task mode

I know that DevicePolicyManager could do that. But device doesn't have any google's provisioning system (like NFC or QR). Is exist any way to set device owner using application signed by platform key or use such application with benefits of device owner App?

2

There are 2 best solutions below

0
On

I find out that application with system privileges could do al lot of thing that could be done with DevicePolicyManager. But some of functionality provided as hide API:

  1. Set user restrictions - could be done with UserManager
  2. Prevent user access to third party apps - could be done be disabling such apps with package manager
  3. Set custom Activity as Home activity without user interaction - could be done with PackageManager
  4. Move application to lock task mode - could be done by disabling UI components in status bar and system navigation bar with StatusBarService
2
On

The platform key only gives you certain permissions to take a certain role or to make some system settings, but for your task you are mainly right with the DevicePolicyManager. I do not see why you need NFC or QR for that, you could implement a simple code to unlock the kiosk mode.

There are of course finished applications to do that and you would not need to re-invent the wheel as this kind of application is not trivial.