|
Today i have tried this program, Applock.
It is a nice app which is able to have a lock on certain programs. This way you can "safely" lend your phone to a friend and they can't snoop around. You could for example block access to your messages, whatsapp, email etc... This can be done with a numeric password, a draw pattern or a gesture unlock.
So far so good. But what if, your code doesn't work due to a bug of some kind... This is what i ran into today.
The solution is as follows:
Reboot the phone into recovery and connect to it via adb. (Use the android SDK)
use the following commands:
adb shell
rm -rf ./datadata/databases/cn.opda.android.softwarelock rm -rf ./data/app/cn.opda.android.softwarelock-1.apk rm -rf ./data/dalvik-cache/data@
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
@classes.dex rm -rf ./data/data/cn.opda.android.softwarelock
Make sure everything of *softwarelock* is gone. Use 'find' to find the files.
find . -name *softwarelock*
Delete any extra locations if needed, but be carefull not to delete too much.
Reboot after your done and the app and settings are gone. You can not use the app again, or try again as you wish. Good luck |