DevicePolicyManager is a Java class in Android where device policies (password quality etc) can be set by a third party Device Administrator application.
I want to control enabling/disabling keyguard on the device. To do that I'm using DevicePolicyManager and KeyguardLock API of …
android keyguard device-policy-managerI have made an app device owner using ADB, by following this link : How to make my app a device …
android adb device-policy-managerSo right now I am trying to develop an Android App for my young children. I want to set a …
java android countdown android-package-managers device-policy-managerAfter achieving device ownership, I am trying to implement a method to instruct the device to lock any given app …
android android-5.0-lollipop device-policy-manager device-owner android-screen-pinningWe have received a policy notice from playStore as: Your app manifest requests the Call Log permission group (e.g. …
android phone-call device-policy-managerpublic final static void lockDevice() { try { if (devicePolicyManager.isAdminActive(adminComponent)) { devicePolicyManager.lockNow(); } } catch (final Exception ex) { ... } } The above code does …
android locking motorola block-device device-policy-managerI wants to wipe data remotely using my app but currently I am trying to do it manually from app. …
java android device-admin device-policy-managerI have a service and I want the service promote to enable it as Device Admin, until now I launched …
android android-intent task device-policy-manager