Is it possible to deploy a mobile profile on an Android device that enforces the use of a pass-code lock by the end user? Similar to how with iOS devices a company can deploy a mobile configuration XML file which enforce settings like the pass-code lock requirement. Is there an equivalent of this for android ? If so which versions of android support this?
Thank you.
Is it possible to deploy a mobile profile on an Android device that enforces
Share
yes. the way you do it is to use Android’s device admin facility.
in a nutshell, you send the user through a short workflow that ask them to approve your app’s activity as a device admin, then you can you use the DevicePolicyManager API to define security policies for the device (such as password policy).
the first link i provided is very good and it walks you through the whole process, so i won’t try to duplicate that here.