├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── magisk ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── customize.sh └── module.prop ├── module ├── .gitignore ├── build.gradle ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── hook.cpp │ ├── hook.h │ ├── logging.h │ ├── main.cpp │ ├── server.cpp │ ├── server.h │ ├── util.h │ └── zygisk.hpp └── src │ └── main │ └── AndroidManifest.xml └── settings.gradle /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/gradlew.bat -------------------------------------------------------------------------------- /magisk/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/magisk/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /magisk/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /magisk/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/magisk/customize.sh -------------------------------------------------------------------------------- /magisk/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/magisk/module.prop -------------------------------------------------------------------------------- /module/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /libs 3 | /obj 4 | -------------------------------------------------------------------------------- /module/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/build.gradle -------------------------------------------------------------------------------- /module/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/Android.mk -------------------------------------------------------------------------------- /module/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/Application.mk -------------------------------------------------------------------------------- /module/jni/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/hook.cpp -------------------------------------------------------------------------------- /module/jni/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/hook.h -------------------------------------------------------------------------------- /module/jni/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/logging.h -------------------------------------------------------------------------------- /module/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/main.cpp -------------------------------------------------------------------------------- /module/jni/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/server.cpp -------------------------------------------------------------------------------- /module/jni/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/server.h -------------------------------------------------------------------------------- /module/jni/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/util.h -------------------------------------------------------------------------------- /module/jni/zygisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/module/jni/zygisk.hpp -------------------------------------------------------------------------------- /module/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fei-ke/HmsPushZygisk/HEAD/settings.gradle --------------------------------------------------------------------------------