1

My son playing with my phone used up the number of times the lock pattern allows. Now my phone is locked. I use a Gionee Dual sim phone with 4.1 Jelly Bean. Any suggestion???

Izzy
  • 91,166
  • 73
  • 343
  • 943
gimba
  • 21
  • 1

1 Answers1

0

if you have USB debugging enabled already you could disable the lockscreen with:

adb shell
cd /data/data/com.android.providers.settings/databases
sqlite3 settings.db
update system set value=0 where name='lock_pattern_autolock';
update system set value=0 where name='lockscreen.lockedoutpermanently';
.quit

Reboot, and then:

adb shell rm /data/system/gesture.key

Reboot one more time.

If you don't have USB debugging already enabled there is no way to use this.

Source

Mr. Monkey
  • 664
  • 2
  • 8
  • 11