├── .clang-format ├── .clang-tidy ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── adbex_adbd.c ├── adbex_init.c ├── docs └── details.md ├── inject.c ├── ndk.cmake ├── package ├── .gitignore ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── customize.sh ├── module.prop ├── post-fs-data.sh └── sepolicy.rule ├── prop_info.h ├── ptrace.c ├── ptrace.h ├── utils.c └── utils.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/README.md -------------------------------------------------------------------------------- /adbex_adbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/adbex_adbd.c -------------------------------------------------------------------------------- /adbex_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/adbex_init.c -------------------------------------------------------------------------------- /docs/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/docs/details.md -------------------------------------------------------------------------------- /inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/inject.c -------------------------------------------------------------------------------- /ndk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/ndk.cmake -------------------------------------------------------------------------------- /package/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/package/.gitignore -------------------------------------------------------------------------------- /package/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/package/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /package/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /package/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/package/customize.sh -------------------------------------------------------------------------------- /package/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/package/module.prop -------------------------------------------------------------------------------- /package/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/package/post-fs-data.sh -------------------------------------------------------------------------------- /package/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/package/sepolicy.rule -------------------------------------------------------------------------------- /prop_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/prop_info.h -------------------------------------------------------------------------------- /ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/ptrace.c -------------------------------------------------------------------------------- /ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/ptrace.h -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shatyuka/adbex/HEAD/utils.h --------------------------------------------------------------------------------