2 个仓库
Injecting new functional code and modifying metadata directly into Android executable DEX files.
Distinct from Dex: Focuses on injecting new logic into DEX files rather than just creating binary diffs for patches.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Bytecode Injection. Refine with filters or upvote what's useful.
Robust 是一个 Android 热修复框架和运行时应用程序更新器,旨在修补生产环境中的错误。它作为一个字节码修补器和动态代码注入工具,允许在不进行完整应用更新或设备重启的情况下修改应用程序逻辑。 该项目通过将新类和方法注入现有构建并修改现有方法的实现,实现了 Android 缺陷的修复。它利用工具链生成二进制补丁文件,从而动态更新应用程序行为并引入变通方法。 该系统通过字节码重定向、类加载器隔离和运行时方法表修补来实现这些更新。它还结合了基于反射的 Hook 和动态字节码注入,以重定向运行中虚拟机内的执行流。
Provides the capability to inject new classes and methods directly into Android executable DEX files at runtime.
Piko is a collection of specialized Android utilities designed for binary patching, user interface customization, media downloading, and application debugging. It functions as an APK modification framework that alters application metadata and binary resources to modify internal logic and bypass version locks. The project differentiates itself through deep application modification capabilities, including bytecode-level instruction patching, DEX file manipulation, and a dynamic hooking engine. It enables the overriding of resource files and the injection of permissions via the application manif
Alters Android executable bytecode to inject new functionality and modify app metadata before packaging.