├── .gitignore ├── README.md ├── consumer-rules.pro ├── module.properties.sample ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── cpp ├── CMakeLists.txt ├── main.cpp └── riru.h ├── java └── com │ └── wuyr │ └── hookworm │ ├── core │ ├── Hookworm.kt │ ├── Main.java │ └── ModuleInfo.java │ ├── extensions │ ├── HookwormExtensions.kt │ ├── PhoneLayoutInflater.kt │ └── SimpleActivityLifecycleCallbacks.kt │ └── utils │ ├── Impactor.java │ └── ReflectUtil.kt └── resource ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── customize.sh ├── post-fs-data.sh ├── riru.sh ├── uninstall.sh ├── verify.sh └── versions.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/README.md -------------------------------------------------------------------------------- /consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module.properties.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/module.properties.sample -------------------------------------------------------------------------------- /proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/proguard-rules.pro -------------------------------------------------------------------------------- /src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /src/main/cpp/riru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/cpp/riru.h -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/core/Hookworm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/core/Hookworm.kt -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/core/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/core/Main.java -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/core/ModuleInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/core/ModuleInfo.java -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/extensions/HookwormExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/extensions/HookwormExtensions.kt -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/extensions/PhoneLayoutInflater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/extensions/PhoneLayoutInflater.kt -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/extensions/SimpleActivityLifecycleCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/extensions/SimpleActivityLifecycleCallbacks.kt -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/utils/Impactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/utils/Impactor.java -------------------------------------------------------------------------------- /src/main/java/com/wuyr/hookworm/utils/ReflectUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/java/com/wuyr/hookworm/utils/ReflectUtil.kt -------------------------------------------------------------------------------- /src/main/resource/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/resource/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /src/main/resource/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /src/main/resource/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/resource/customize.sh -------------------------------------------------------------------------------- /src/main/resource/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/resource/post-fs-data.sh -------------------------------------------------------------------------------- /src/main/resource/riru.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/resource/riru.sh -------------------------------------------------------------------------------- /src/main/resource/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/resource/uninstall.sh -------------------------------------------------------------------------------- /src/main/resource/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/resource/verify.sh -------------------------------------------------------------------------------- /src/main/resource/versions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyr/HookwormForAndroid/HEAD/src/main/resource/versions.properties --------------------------------------------------------------------------------