Are unicorns real? We try to look all over the web for unicorns and we might have found some that you might like or watch. https://allunicornstore.app is a new site that finds interesting unicorn products or unicorn videos. If you're a unicorn lover, head over and check it out.
Now that Unlockd has reached its doomed. Here is a script where i just downloaded android tools and automatically have my phone open, I believe you can use this for games that requires constant tapping of the screen (as long as it's not one of the fast tap one as adb has a delay).
for i in `seq 1 50`;
do
# open the phone
adb shell input keyevent 26
# keep the phone open for 8 seconds
sleep 8
# close the phone
adb shell input keyevent 26
# randomised sleep to make it look real
sleep $[ ( $RANDOM % 10 ) + 1 ]s
done
if your phone has passcode
for i in `seq 1 50`;
do
adb shell input keyevent 26
sleep 1
# swipe from bottom to up
adb shell input touchscreen swipe 530 1280 1030 480
# enter your passcode
adb shell input text <Your passcode>
# check button
adb shell input keyevent 66
sleep 8
adb shell input keyevent 26
sl…