How to Change the Terminal Administrator's Login Password: Difference between revisions

From wizarPOS
(Created page with "Provide the AIDL interface to help the third-party app to implment silence install/uninstall/upload app or reboot device. == Permission == The app declares the follow permissi...")
 
(Replaced content with "{{Migrating|https://smartpossdk.gitbook.io/cloudpossdk/faq/settings-menu/change-administrators-login-password}}")
Tag: Replaced
 
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Provide the AIDL interface to help the third-party app to implment silence install/uninstall/upload app or reboot device.
{{Migrating|https://smartpossdk.gitbook.io/cloudpossdk/faq/settings-menu/change-administrators-login-password}}
== Permission ==
The app declares the follow permission in the manifest.
{| class="wikitable"
|-
! 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
|}
 
== Functions ==
=== modify ===
  boolean modifyAdminPwd(String oldPwd, String newPwd);
modify admin password.
 
'''Parameters'''
{|
|-
| ''oldPwd'' || String || old admin password.
|-
| ''newPwd'' || String ||  new admin password.
|}
'''Returns'''
true is success, false is failure.
 
=== is admin password===
  boolean isAdminPwd(String pwd);
judge if the pwd is the real admin password
 
'''Parameters'''
{|
|-
| ''pwd'' || String || admin password.
|}
'''Returns'''
true is success, false is failure.
 
=== reset ===
  boolean reset(String pwd);
reset admin password.
 
'''Parameters'''
{|
|-
| ''pwd'' || String || the real admin password.
|}
'''Returns'''
true is success, false is failure.
 
== Download ==
Please download the [ftp://sdkuser:wizsdkar@ftp.wizarpos.com/AdminPwdDemo.zip whold project demo]

Latest revision as of 08:52, 7 April 2024

Please visit new link of same subject:

https://smartpossdk.gitbook.io/cloudpossdk/faq/settings-menu/change-administrators-login-password

We're making a move! Our site's content is migrating to a new URL, to provide you with an enhanced browsing experience. Please update your bookmarks accordingly. Thank you for your continuous support!