I want to programatically redirect to device adminstrators settings activity . I am able to redirect user to security settings using intent flags but i want to redirect to device adminstrators settings. Can anyone help ?
To improve on the above answer
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.android.settings", "com.android.settings.DeviceAdminSettings"));
startActivity(intent);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With