├── .gitattributes ├── .github └── pixelarity.png ├── .gitignore ├── LICENSE.md ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── PIXELARITY_KYLIEKYLER.tar.xz ├── README.md ├── addon.tar.xz ├── common ├── pixelarity10.prop ├── pixelarity9.prop ├── sepolicy.sh ├── unity_install.sh ├── unity_uninstall.sh └── unityfiles │ ├── addon.sh │ ├── tools │ ├── arm │ │ └── busybox │ └── x86 │ │ └── busybox │ └── util_functions.sh ├── install.sh ├── module.prop └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pixelarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/.github/pixelarity.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/LICENSE.md -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /PIXELARITY_KYLIEKYLER.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/PIXELARITY_KYLIEKYLER.tar.xz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/README.md -------------------------------------------------------------------------------- /addon.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/addon.tar.xz -------------------------------------------------------------------------------- /common/pixelarity10.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/pixelarity10.prop -------------------------------------------------------------------------------- /common/pixelarity9.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/pixelarity9.prop -------------------------------------------------------------------------------- /common/sepolicy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/sepolicy.sh -------------------------------------------------------------------------------- /common/unity_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/unity_install.sh -------------------------------------------------------------------------------- /common/unity_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/unity_uninstall.sh -------------------------------------------------------------------------------- /common/unityfiles/addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/unityfiles/addon.sh -------------------------------------------------------------------------------- /common/unityfiles/tools/arm/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/unityfiles/tools/arm/busybox -------------------------------------------------------------------------------- /common/unityfiles/tools/x86/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/unityfiles/tools/x86/busybox -------------------------------------------------------------------------------- /common/unityfiles/util_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/common/unityfiles/util_functions.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/install.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/module.prop -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/PIXELARITY/HEAD/uninstall.sh --------------------------------------------------------------------------------