--- ../frida.orig/subprojects/frida-core/tools/post-process.py 2025-07-12 10:41:48.563319104 +0000 +++ ./subprojects/frida-core/tools/post-process.py 2025-07-12 14:29:44.126383168 +0000 @@ -63,10 +63,6 @@ codesign_args += ["--entitlements", input_entitlements_path] subprocess.run(codesign + codesign_args + [intermediate_path], **run_kwargs) - if host_os == "android" and "elf-cleaner:off" not in flags: - api_level = 19 if host_abi in {"x86", "arm"} else 21 - subprocess.run(termux_elf_cleaner + ["--api-level", str(api_level), "--quiet", intermediate_path], - **run_kwargs) except subprocess.CalledProcessError as e: print(e, file=sys.stderr) print("Output:\n\t| " + "\n\t| ".join(e.output.strip().split("\n")), file=sys.stderr)