Here is a SQL script to unlock all the paid content in Where's My Water? for free.
All you need to do is open water.db in a SQL editor, like DB Browser, then run this script.
Here is a SQL script to unlock all the paid content in Where's My Water? for free.
All you need to do is open water.db in a SQL editor, like DB Browser, then run this script.
| @ECHO off | |
| echo Build: | |
| echo|set /p=Model: | |
| adb shell getprop ro.product.model | |
| echo|set /p=Manufacturer: | |
| adb shell getprop ro.product.manufacturer | |
| echo|set /p=Brand: | |
| adb shell getprop ro.product.brand | |
| echo|set /p=Product: | |
| adb shell getprop ro.product.name |
| According to all known laws | |
| of aviation, | |
| there is no way a bee | |
| should be able to fly. | |
| Its wings are too small to get | |
| its fat little body off the ground. |
| // definition | |
| function loadScript(scriptUrl) { | |
| console.log('loading script', scriptUrl); | |
| const script = document.createElement('script'); | |
| script.src = scriptUrl; | |
| document.body.appendChild(script); | |
| return new Promise((res, rej) => { | |
| script.onload = function() { | |
| res({message: 'script loaded'}); |