<?xml version="1.0" encoding="utf-8"?>
<!-- res/xml/device_admin_policies.xml -->
<device-admin xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-policies>
        <!-- Lock the screen immediately -->
        <force-lock />
        <!-- Wipe all data -->
        <wipe-data />
        <!-- Set global password requirements -->
        <limit-password />
        <!-- Monitor login attempts -->
        <watch-login />
        <!-- Reset password (Device Owner only) -->
        <reset-password />
        <!-- Set screen lock timeout -->
        <expire-password />
        <!-- Disable camera (Device Owner / Profile Owner) -->
        <disable-camera />
        <!-- Disable keyguard features -->
        <disable-keyguard-features />
        <!-- Encrypted storage -->
        <encrypted-storage />
    </uses-policies>
</device-admin>
