gitextract_8ya0o3m1/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── build.gradle ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat ├── module/ │ ├── .gitignore │ ├── build.gradle │ ├── libs/ │ │ └── riru-10.aar │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── cpp/ │ ├── CMakeLists.txt │ ├── logging.h │ ├── main.cpp │ └── main.h ├── module.example.gradle ├── module.gradle ├── settings.gradle └── template/ └── magisk_module/ ├── .gitattributes ├── META-INF/ │ └── com/ │ └── google/ │ └── android/ │ ├── update-binary │ └── updater-script ├── README.md ├── customize.sh ├── post-fs-data.sh ├── riru.sh ├── uninstall.sh └── verify.sh