MD5 Mismatch still happening....
$ sudo venv/bin/python3 main.py install smartdock INFO: Downloading smartdock.apk now to /home/atirut/.cache/waydroid-script/downloads/smartdock.apk ..... 14.7kiB [00:00, 21.6MiB/s] WARN: md5 mismatches, redownloading now .... 14.7kiB [00:00, 23.3MiB/s] WARN: md5 mismatches, redownloading now ....
Duplicate of #163
I got error 128 after i applied that fix, any advice?
I was able to fix it by
-
going to: https://f-droid.org/en/packages/cu.axel.smartdock/
-
Then downloading the current
cu.axel.smartdock_1121.apk -
then I ran in the terminal an
md5sum cu.axel.smartdock_1121.apkto get an md5 hash of the file, and armed with that info, -
I edited
./stuff/smartdock.pythe lines where it had the download link to:
dl_link = "https://f-droid.org/repo/cu.axel.smartdock_1121.apk"
and the line where it had hte md5 hash to:
act_md5 = "dde94e2babc5f78bf7279e60a98eef05"
and ran the script again and this time it worked...
I was able to fix it by
- going to: f-droid.org/en/packages/cu.axel.smartdock
- Then downloading the current
cu.axel.smartdock_1121.apk- then I ran in the terminal an
md5sum cu.axel.smartdock_1121.apkto get an md5 hash of the file, and armed with that info,- I edited
./stuff/smartdock.pythe lines where it had the download link to:dl_link = "https://f-droid.org/repo/cu.axel.smartdock_1121.apk"and the line where it had hte md5 hash to:
act_md5 = "dde94e2babc5f78bf7279e60a98eef05"and ran the script again and this time it worked...
perfect!
i also had to add the permissions below:
<permission name="android.permission.WRITE_SECURE_SETTINGS" />
<permission name="android.permission.WRITE_SETTINGS" />