You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- adb root
- adb remount
-
- # Remove old passwords
- adb shell rm /data/system/gatekeeper.password.key
- adb shell touch /data/system/gatekeeper.password.key
- adb shell rm /data/system/gatekeeper.pattern.key
- adb shell touch /data/system/gatekeeper.password.key
-
- # Copy virgin version of locksettings DB
- adb push locksettings.db-shm /data/system/
- adb push locksettings.db-wal /data/system/
-
- adb reboot
|