Unlock patterns can be as simple as this:
Or as complicated as this:
There is a known bug in Android where the unlock pattern simply doesn’t work and the only way to disable it is to restore the phone to factory settings. Restoring the phone to its default settings will delete the user data and the installed applications (memory card data will not be lost), but it’s a much better than permanently losing access to your phone due to a bug.
Factory resetting is done through the recovery boot menu, which is not accessible on all devices
http://www.electroshopworld.com/Products/Menu/44.html
On the popular TechPad Android tablet, the recovery menu is not accessible directly, but it’s not impossible to disable the unlock pattern. It does, however, require slight technical knowledge and a slight modification to the tablet’s system database.
C: [press enter] (it will switch to C drive)
cd \ [press enter] (go to root directory of the C drive)
cd tablet\WIFI update [press enter] (go to the folder where the development tool is located)
Enter the following commands:
adb -d shell [press Enter]
# sqlite3 data/data/com.android.providers.settings/databases/settings.db [Press enter]
sqlite> update system set value=0 where name=’lockpatternautolock’; [Press enter]
sqlite> update system set value=0 where name=’lockscreen.lockedoutpermanently’; [Press enter]
sqlite> .exit [Press enter]
# exit [Press enter]
No comments:
Post a Comment