├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── SUPPORT.md ├── bash.tar.xz ├── customize.sh ├── hexpatch.sh ├── module.prop └── service.sh /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /bash.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/bash.tar.xz -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/customize.sh -------------------------------------------------------------------------------- /hexpatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/hexpatch.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/module.prop -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/BluetoothLibraryPatcher/HEAD/service.sh --------------------------------------------------------------------------------