How to Change the Terminal Administrator's Login Password: Difference between revisions
m (Jeff moved page How to modify password to How to change the login password of terminal administrator) |
No edit summary |
||
Line 1: | Line 1: | ||
An AIDL interface that is open to applications to manage terminal administrator passwords. | |||
== Permission == | == Permission == | ||
The | The application declares the following permissions in the manifest: | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- |
Revision as of 08:23, 24 March 2020
An AIDL interface that is open to applications to manage terminal administrator passwords.
Permission
The application declares the following permissions in the manifest:
Permission | Function |
---|---|
android.permission.ADMIN_PWD_MODIFY | modify admin password |
android.permission.ADMIN_PWD | get admin password |
android.permission.ADMIN_PWD_RESET | reset admin password |
API Overview
Modify
boolean modifyAdminPwd(String oldPwd, String newPwd);
Modifies admin password.
Parameters | |
---|---|
oldPwd | String: old admin password. |
newPwd | String: new admin password. |
Returns | |
---|---|
boolean | true is success, false is failure. |
Is admin password
boolean isAdminPwd(String pwd);
Returns true if the parameter pwd is the real admin password.
Parameters | |
---|---|
pwd | String: admin password. |
Returns | |
---|---|
boolean | true is success, false is failure. |
Reset
boolean reset(String pwd);
Resets admin password.
Parameters | |
---|---|
pwd | String: the real admin password. |
Returns | |
---|---|
boolean | true is success, false is failure. |
Download
Please download the whole project demo