waydroid_script icon indicating copy to clipboard operation
waydroid_script copied to clipboard

MD5 Mismatch still happening....

Open hawari21 opened this issue 1 year ago • 5 comments

$ 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 ....

hawari21 avatar Jul 09 '24 23:07 hawari21

Duplicate of #163

The-MAZZTer avatar Jul 10 '24 07:07 The-MAZZTer

I got error 128 after i applied that fix, any advice?

hawari21 avatar Jul 10 '24 11:07 hawari21

I was able to fix it by

  1. going to: https://f-droid.org/en/packages/cu.axel.smartdock/

  2. Then downloading the current cu.axel.smartdock_1121.apk

  3. then I ran in the terminal an md5sum cu.axel.smartdock_1121.apk to get an md5 hash of the file, and armed with that info,

  4. I edited ./stuff/smartdock.py the 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...

Mikesco3 avatar Sep 08 '24 04:09 Mikesco3

I was able to fix it by

  1. going to: f-droid.org/en/packages/cu.axel.smartdock
  2. Then downloading the current cu.axel.smartdock_1121.apk
  3. then I ran in the terminal an md5sum cu.axel.smartdock_1121.apk to get an md5 hash of the file, and armed with that info,
  4. I edited ./stuff/smartdock.py the 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" />

yodog avatar Sep 23 '24 19:09 yodog

Duplicate of #163

And #159

agilgur5 avatar Feb 07 '25 20:02 agilgur5