├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── Makefile ├── README.md ├── module.prop ├── sepolicy.rule └── system └── bin └── adbd /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/adb_root/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/adb_root/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/adb_root/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/adb_root/HEAD/README.md -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/adb_root/HEAD/module.prop -------------------------------------------------------------------------------- /sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/adb_root/HEAD/sepolicy.rule -------------------------------------------------------------------------------- /system/bin/adbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/adb_root/HEAD/system/bin/adbd --------------------------------------------------------------------------------