├── .github └── workflows │ └── ndk-build.yml ├── .gitignore ├── LICENSE ├── README.md ├── adbd_helper ├── .gitignore └── jni │ ├── Android.mk │ ├── Application.mk │ ├── lib.cpp │ └── main.cpp └── magisk_module ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── customize.sh ├── module.prop ├── post-fs-data.sh ├── sepolicy.rule ├── service.sh ├── system.prop └── system ├── apex └── com.android.adbd │ └── bin │ └── adbd └── lib64 └── libadb_root_helper.so /.github/workflows/ndk-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/.github/workflows/ndk-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/README.md -------------------------------------------------------------------------------- /adbd_helper/.gitignore: -------------------------------------------------------------------------------- 1 | libs/ 2 | objs/ 3 | -------------------------------------------------------------------------------- /adbd_helper/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/adbd_helper/jni/Android.mk -------------------------------------------------------------------------------- /adbd_helper/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/adbd_helper/jni/Application.mk -------------------------------------------------------------------------------- /adbd_helper/jni/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/adbd_helper/jni/lib.cpp -------------------------------------------------------------------------------- /adbd_helper/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/adbd_helper/jni/main.cpp -------------------------------------------------------------------------------- /magisk_module/.gitignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /magisk_module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /magisk_module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /magisk_module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/customize.sh -------------------------------------------------------------------------------- /magisk_module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/module.prop -------------------------------------------------------------------------------- /magisk_module/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/post-fs-data.sh -------------------------------------------------------------------------------- /magisk_module/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/sepolicy.rule -------------------------------------------------------------------------------- /magisk_module/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/service.sh -------------------------------------------------------------------------------- /magisk_module/system.prop: -------------------------------------------------------------------------------- 1 | service.adb.root=1 -------------------------------------------------------------------------------- /magisk_module/system/apex/com.android.adbd/bin/adbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/system/apex/com.android.adbd/bin/adbd -------------------------------------------------------------------------------- /magisk_module/system/lib64/libadb_root_helper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/adb_root/HEAD/magisk_module/system/lib64/libadb_root_helper.so --------------------------------------------------------------------------------