diff --git a/README.md b/README.md index a8aa6b0..e5f969d 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ chmod 777 -R /mnt/*/*/*/*/Android/obb ![](https://raw.githubusercontent.com/huakim/waydroid_script_assets/main/assets/7.png) ``` -sudo python main.py install microg +sudo venv/bin/python3 main.py install microg ``` ## Hide Status Bar diff --git a/main.py b/main.py index ebf7830..4731572 100755 --- a/main.py +++ b/main.py @@ -214,7 +214,7 @@ def interact(): install_choices = ["gapps", "microg", "libndk", "libhoudini", "magisk", "smartdock", "fdroidpriv",] hack_choices = [] if android_version == "11": - install_choices.extend(["libhoudini", "widevine"]) + install_choices.extend(["widevine"]) hack_choices.extend(["nodataperm", "hidestatusbar"]) if action == "Install": diff --git a/stuff/houdini.py b/stuff/houdini.py index b3f5814..829fdae 100644 --- a/stuff/houdini.py +++ b/stuff/houdini.py @@ -10,7 +10,7 @@ class Houdini(General): partition = "system" dl_links = { "11": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/81f2a51ef539a35aead396ab7fce2adf89f46e88.zip", "fbff756612b4144797fbc99eadcb6653"], - "13": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/5643480a2c504bd0ee4739a6354fefc70d032ad4.zip", "9085a6ec5d0ec5b7b715981676ffee18"] + "13": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/7e21ea3f63bd89e9e8af54e32da41bd8b65c93a1.zip", "f8cf5db10e5fdb9b77e98e515a9b08c9"] } act_md5 = ... dl_link = ... diff --git a/stuff/ndk.py b/stuff/ndk.py index f0cbd63..ac8cc81 100644 --- a/stuff/ndk.py +++ b/stuff/ndk.py @@ -9,7 +9,7 @@ class Ndk(General): partition = "system" dl_links = { "11": ["https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/9324a8914b649b885dad6f2bfd14a67e5d1520bf.zip", "c9572672d1045594448068079b34c350"], - "13": ["https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/faece8cc787a520193545116501cad40534063fc.zip", "f7605b31e51eaa69f13b508b20e74d10"] + "13": ["https://github.com/supremegamers/vendor_google_proprietary_ndk_translation-prebuilt/archive/68734c52556d3d7a6db34c603dd9276915c29f2f.zip", "0b2207c490fcb400aa5c87fcf0d52d38"] } dl_file_name = "libndktranslation.zip" extract_to = "/tmp/libndkunpack" @@ -49,4 +49,4 @@ class Ndk(General): Logger.info("Copying libndk library files ...") name = re.findall("([a-zA-Z0-9]+)\.zip", self.dl_link)[0] shutil.copytree(os.path.join(self.extract_to, "vendor_google_proprietary_ndk_translation-prebuilt-" + name, - "prebuilts"), os.path.join(self.copy_dir, self.partition), dirs_exist_ok=True) \ No newline at end of file + "prebuilts"), os.path.join(self.copy_dir, self.partition), dirs_exist_ok=True)