How to Change the Terminal Administrator's Login Password: Difference between revisions
| Line 80: | Line 80: | ||
== Download == | == Download == | ||
Please download the [ftp://sdkuser:wizsdkar@ftp.wizarpos.com/AdminPwdDemo_as.zip whole project demo] | Please download the [ftp://sdkuser:wizsdkar@ftp.wizarpos.com/advanceSDK/AdminPwdDemo_as.zip whole project demo] | ||
Revision as of 01:25, 11 November 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 For system apk
boolean reset(String pwd);
Resets admin password. For security reason, third-app can not call this method. The method is only for system apk.
| Parameters | |
|---|---|
| pwd | String: the real admin password. |
| Returns | |
|---|---|
| boolean | true is success, false is failure. |
Download
Please download the whole project demo