├── .gitattributes ├── .gitignore ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── addon │ └── placeholder ├── functions.sh └── install.sh ├── customize.sh ├── module.prop ├── system └── placeholder └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/README.md -------------------------------------------------------------------------------- /common/addon/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/common/functions.sh -------------------------------------------------------------------------------- /common/install.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/customize.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/module.prop -------------------------------------------------------------------------------- /system/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzlrd/Droidra1n/HEAD/uninstall.sh --------------------------------------------------------------------------------