Skip to content

Instantly share code, notes, and snippets.

View vaginessa's full-sized avatar

⭐ 🐾 vaginessa

View GitHub Profile
@vaginessa
vaginessa / androidpinremove.txt
Last active September 10, 2015 21:39 — forked from CHEF-KOCH/androidpinremove.txt
Remove Android PIN
This method requires:
- Root access and debugging* enabled
- Reboot recovery and follow code:
*if debugging is not enabled it can be done from any custom recovery
adb shell
# sqlite3 /data/data/com.android.providers.settings/databases/settings.db
sqlite> update secure set value=65536 where name='lockscreen.password_type';
sqlite> .exit