Unlcok Pattern lock or Gmail account on Android devices without access of Internet
- Download Android SDK and install. Andriod directory will be created in C:Programe File
- Connect device with Computer
- Install USB Drivers for Android Device
- From windows start button click on Run , write cmd and enter it will open DOS.
- Change Compand path to Android SDK Manager (cd C:\Program Files\Android\android-sdk\platform-tools)Capital and small chracters count.
- Type Command in CMD : adb device (Connected Tablets or Smart Phone will be display in CMD directory if not then try to reconnect your android device again.
- adb shell
- cd /data/data/com.android.providers.settings/databases
- sqlite3 settings.db
- update system set value=0 where name='lock_pattern_autolock';
- update secure set value=0 where name='lock_pattern_autolock'; (for some devices update “system” is enough but I had to update “secure” too)
- update system set value=0 where name='lockscreen.lockedoutpermanently';
- update secure set value=0 where name='lockscreen.lockedoutpermanently';
- .quit
- exit
- adb reboot
Labels: Android Development Tutorial, Tutorial
