├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── module.gradle ├── module ├── .gitattributes ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── addon │ ├── aapt │ ├── curl │ ├── dumpsys │ ├── keycheck │ └── sqlite3 ├── build.sh ├── config.prop ├── customize.sh ├── deviceconfig.txt ├── extras │ ├── hotword-9 │ │ └── system │ │ │ └── product │ │ │ ├── etc │ │ │ ├── permissions │ │ │ │ └── privapp-permissions-hotword.xml │ │ │ └── sysconfig │ │ │ │ └── hotword-hiddenapi-package-whitelist.xml │ │ │ └── priv-app │ │ │ ├── HotwordEnrollmentOKGoogleWCD9340 │ │ │ └── HotwordEnrollmentOKGoogleWCD9340.apk │ │ │ ├── HotwordEnrollmentTGoogleWCD9340 │ │ │ └── HotwordEnrollmentTGoogleWCD9340.apk │ │ │ └── HotwordEnrollmentXGoogleWCD9340 │ │ │ └── HotwordEnrollmentXGoogleWCD9340.apk │ ├── hotword │ │ └── system │ │ │ ├── product │ │ │ ├── etc │ │ │ │ ├── permissions │ │ │ │ │ └── privapp-permissions-hotword.xml │ │ │ │ └── sysconfig │ │ │ │ │ └── hotword-hiddenapi-package-whitelist.xml │ │ │ └── priv-app │ │ │ │ ├── HotwordEnrollmentOKGoogleHEXAGON │ │ │ │ └── HotwordEnrollmentOKGoogleHEXAGON.apk │ │ │ │ └── HotwordEnrollmentXGoogleHEXAGON │ │ │ │ └── HotwordEnrollmentXGoogleHEXAGON.apk │ │ │ └── system_ext │ │ │ ├── etc │ │ │ └── permissions │ │ │ │ └── com.android.hotwordenrollment.common.util.xml │ │ │ └── framework │ │ │ └── com.android.hotwordenrollment.common.util.jar │ └── nplaying │ │ └── system │ │ ├── etc │ │ └── firmware │ │ │ ├── dnd.descriptor │ │ │ ├── dnd.sound_model │ │ │ ├── music_detector.descriptor │ │ │ └── music_detector.sound_model │ │ └── product │ │ └── overlay │ │ └── PixeliflyNowPlaying.apk ├── files │ ├── PixelThemesStub.apk │ ├── PixelThemesStub13.apk │ ├── PixelThemesStub2022_and_newer_14.apk │ ├── PixelThemesStub_14.apk │ ├── PixeliflyDPS.apk │ ├── PixelifyDPS.apk │ ├── PixelifyFilpendo.apk │ ├── PixelifyGA.apk │ ├── PixelifyNowPlaying.apk │ ├── PixelifyPixelLauncherCustomOverlay.apk │ ├── PixelifySettingsIntelligenceGoogleOverlay.apk │ ├── PixelifyTTS.apk │ ├── PixelifyWallpaper.apk │ ├── bootanimation-1440.tar.xz │ ├── bootanimation-720.tar.xz │ ├── bootanimation-m-1440.tar.xz │ ├── bootanimation-m-720.tar.xz │ ├── bootanimation-m.tar.xz │ ├── bootanimation.tar.xz │ ├── callrec │ │ ├── ending_voice-en_US.wav │ │ └── starting_voice-en_US.wav │ ├── com.google.android.dialer │ ├── flip-30.tar.xz │ ├── flip-31.tar.xz │ ├── flip-33.tar.xz │ ├── flip-34.tar.xz │ ├── nga.xml │ ├── sig.tar.xz │ ├── sound_trigger_configuration.xml │ └── system.tar.xz ├── module-uninstaller.prop ├── module.prop ├── pixelify.sh ├── sepolicy.rule ├── service-uninstaller.sh ├── service.sh ├── spoof.prop ├── system.prop ├── uninstall.sh ├── utils.sh ├── var.prop └── vars.sh ├── riru ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── cpp │ ├── CMakeLists.txt │ ├── android_filesystem_config.h │ ├── logging.h │ ├── main.cpp │ └── tensor.cpp ├── settings.gradle └── zygisk ├── build.gradle └── src └── main ├── AndroidManifest.xml └── cpp ├── CMakeLists.txt ├── module.h ├── pixelify.cpp ├── tensor.cpp ├── tensor_2.cpp └── zygisk.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/local.properties -------------------------------------------------------------------------------- /module.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module.gradle -------------------------------------------------------------------------------- /module/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/.gitattributes -------------------------------------------------------------------------------- /module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /module/addon/aapt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/addon/aapt -------------------------------------------------------------------------------- /module/addon/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/addon/curl -------------------------------------------------------------------------------- /module/addon/dumpsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/addon/dumpsys -------------------------------------------------------------------------------- /module/addon/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/addon/keycheck -------------------------------------------------------------------------------- /module/addon/sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/addon/sqlite3 -------------------------------------------------------------------------------- /module/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/build.sh -------------------------------------------------------------------------------- /module/config.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/config.prop -------------------------------------------------------------------------------- /module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/customize.sh -------------------------------------------------------------------------------- /module/deviceconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/deviceconfig.txt -------------------------------------------------------------------------------- /module/extras/hotword-9/system/product/etc/permissions/privapp-permissions-hotword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword-9/system/product/etc/permissions/privapp-permissions-hotword.xml -------------------------------------------------------------------------------- /module/extras/hotword-9/system/product/etc/sysconfig/hotword-hiddenapi-package-whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword-9/system/product/etc/sysconfig/hotword-hiddenapi-package-whitelist.xml -------------------------------------------------------------------------------- /module/extras/hotword-9/system/product/priv-app/HotwordEnrollmentOKGoogleWCD9340/HotwordEnrollmentOKGoogleWCD9340.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword-9/system/product/priv-app/HotwordEnrollmentOKGoogleWCD9340/HotwordEnrollmentOKGoogleWCD9340.apk -------------------------------------------------------------------------------- /module/extras/hotword-9/system/product/priv-app/HotwordEnrollmentTGoogleWCD9340/HotwordEnrollmentTGoogleWCD9340.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword-9/system/product/priv-app/HotwordEnrollmentTGoogleWCD9340/HotwordEnrollmentTGoogleWCD9340.apk -------------------------------------------------------------------------------- /module/extras/hotword-9/system/product/priv-app/HotwordEnrollmentXGoogleWCD9340/HotwordEnrollmentXGoogleWCD9340.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword-9/system/product/priv-app/HotwordEnrollmentXGoogleWCD9340/HotwordEnrollmentXGoogleWCD9340.apk -------------------------------------------------------------------------------- /module/extras/hotword/system/product/etc/permissions/privapp-permissions-hotword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword/system/product/etc/permissions/privapp-permissions-hotword.xml -------------------------------------------------------------------------------- /module/extras/hotword/system/product/etc/sysconfig/hotword-hiddenapi-package-whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword/system/product/etc/sysconfig/hotword-hiddenapi-package-whitelist.xml -------------------------------------------------------------------------------- /module/extras/hotword/system/product/priv-app/HotwordEnrollmentOKGoogleHEXAGON/HotwordEnrollmentOKGoogleHEXAGON.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword/system/product/priv-app/HotwordEnrollmentOKGoogleHEXAGON/HotwordEnrollmentOKGoogleHEXAGON.apk -------------------------------------------------------------------------------- /module/extras/hotword/system/product/priv-app/HotwordEnrollmentXGoogleHEXAGON/HotwordEnrollmentXGoogleHEXAGON.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword/system/product/priv-app/HotwordEnrollmentXGoogleHEXAGON/HotwordEnrollmentXGoogleHEXAGON.apk -------------------------------------------------------------------------------- /module/extras/hotword/system/system_ext/etc/permissions/com.android.hotwordenrollment.common.util.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword/system/system_ext/etc/permissions/com.android.hotwordenrollment.common.util.xml -------------------------------------------------------------------------------- /module/extras/hotword/system/system_ext/framework/com.android.hotwordenrollment.common.util.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/hotword/system/system_ext/framework/com.android.hotwordenrollment.common.util.jar -------------------------------------------------------------------------------- /module/extras/nplaying/system/etc/firmware/dnd.descriptor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/nplaying/system/etc/firmware/dnd.descriptor -------------------------------------------------------------------------------- /module/extras/nplaying/system/etc/firmware/dnd.sound_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/nplaying/system/etc/firmware/dnd.sound_model -------------------------------------------------------------------------------- /module/extras/nplaying/system/etc/firmware/music_detector.descriptor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/nplaying/system/etc/firmware/music_detector.descriptor -------------------------------------------------------------------------------- /module/extras/nplaying/system/etc/firmware/music_detector.sound_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/nplaying/system/etc/firmware/music_detector.sound_model -------------------------------------------------------------------------------- /module/extras/nplaying/system/product/overlay/PixeliflyNowPlaying.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/extras/nplaying/system/product/overlay/PixeliflyNowPlaying.apk -------------------------------------------------------------------------------- /module/files/PixelThemesStub.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelThemesStub.apk -------------------------------------------------------------------------------- /module/files/PixelThemesStub13.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelThemesStub13.apk -------------------------------------------------------------------------------- /module/files/PixelThemesStub2022_and_newer_14.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelThemesStub2022_and_newer_14.apk -------------------------------------------------------------------------------- /module/files/PixelThemesStub_14.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelThemesStub_14.apk -------------------------------------------------------------------------------- /module/files/PixeliflyDPS.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixeliflyDPS.apk -------------------------------------------------------------------------------- /module/files/PixelifyDPS.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifyDPS.apk -------------------------------------------------------------------------------- /module/files/PixelifyFilpendo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifyFilpendo.apk -------------------------------------------------------------------------------- /module/files/PixelifyGA.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifyGA.apk -------------------------------------------------------------------------------- /module/files/PixelifyNowPlaying.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifyNowPlaying.apk -------------------------------------------------------------------------------- /module/files/PixelifyPixelLauncherCustomOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifyPixelLauncherCustomOverlay.apk -------------------------------------------------------------------------------- /module/files/PixelifySettingsIntelligenceGoogleOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifySettingsIntelligenceGoogleOverlay.apk -------------------------------------------------------------------------------- /module/files/PixelifyTTS.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifyTTS.apk -------------------------------------------------------------------------------- /module/files/PixelifyWallpaper.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/PixelifyWallpaper.apk -------------------------------------------------------------------------------- /module/files/bootanimation-1440.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/bootanimation-1440.tar.xz -------------------------------------------------------------------------------- /module/files/bootanimation-720.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/bootanimation-720.tar.xz -------------------------------------------------------------------------------- /module/files/bootanimation-m-1440.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/bootanimation-m-1440.tar.xz -------------------------------------------------------------------------------- /module/files/bootanimation-m-720.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/bootanimation-m-720.tar.xz -------------------------------------------------------------------------------- /module/files/bootanimation-m.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/bootanimation-m.tar.xz -------------------------------------------------------------------------------- /module/files/bootanimation.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/bootanimation.tar.xz -------------------------------------------------------------------------------- /module/files/callrec/ending_voice-en_US.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/callrec/ending_voice-en_US.wav -------------------------------------------------------------------------------- /module/files/callrec/starting_voice-en_US.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/callrec/starting_voice-en_US.wav -------------------------------------------------------------------------------- /module/files/com.google.android.dialer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/com.google.android.dialer -------------------------------------------------------------------------------- /module/files/flip-30.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/flip-30.tar.xz -------------------------------------------------------------------------------- /module/files/flip-31.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/flip-31.tar.xz -------------------------------------------------------------------------------- /module/files/flip-33.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/flip-33.tar.xz -------------------------------------------------------------------------------- /module/files/flip-34.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/flip-34.tar.xz -------------------------------------------------------------------------------- /module/files/nga.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/nga.xml -------------------------------------------------------------------------------- /module/files/sig.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/sig.tar.xz -------------------------------------------------------------------------------- /module/files/sound_trigger_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/sound_trigger_configuration.xml -------------------------------------------------------------------------------- /module/files/system.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/files/system.tar.xz -------------------------------------------------------------------------------- /module/module-uninstaller.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/module-uninstaller.prop -------------------------------------------------------------------------------- /module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/module.prop -------------------------------------------------------------------------------- /module/pixelify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/pixelify.sh -------------------------------------------------------------------------------- /module/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/sepolicy.rule -------------------------------------------------------------------------------- /module/service-uninstaller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/service-uninstaller.sh -------------------------------------------------------------------------------- /module/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/service.sh -------------------------------------------------------------------------------- /module/spoof.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/spoof.prop -------------------------------------------------------------------------------- /module/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/system.prop -------------------------------------------------------------------------------- /module/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/uninstall.sh -------------------------------------------------------------------------------- /module/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/utils.sh -------------------------------------------------------------------------------- /module/var.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/var.prop -------------------------------------------------------------------------------- /module/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/module/vars.sh -------------------------------------------------------------------------------- /riru/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/riru/.gitignore -------------------------------------------------------------------------------- /riru/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/riru/build.gradle -------------------------------------------------------------------------------- /riru/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /riru/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/riru/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /riru/src/main/cpp/android_filesystem_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/riru/src/main/cpp/android_filesystem_config.h -------------------------------------------------------------------------------- /riru/src/main/cpp/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/riru/src/main/cpp/logging.h -------------------------------------------------------------------------------- /riru/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/riru/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /riru/src/main/cpp/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/riru/src/main/cpp/tensor.cpp -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/settings.gradle -------------------------------------------------------------------------------- /zygisk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/zygisk/build.gradle -------------------------------------------------------------------------------- /zygisk/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /zygisk/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/zygisk/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /zygisk/src/main/cpp/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/zygisk/src/main/cpp/module.h -------------------------------------------------------------------------------- /zygisk/src/main/cpp/pixelify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/zygisk/src/main/cpp/pixelify.cpp -------------------------------------------------------------------------------- /zygisk/src/main/cpp/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/zygisk/src/main/cpp/tensor.cpp -------------------------------------------------------------------------------- /zygisk/src/main/cpp/tensor_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/zygisk/src/main/cpp/tensor_2.cpp -------------------------------------------------------------------------------- /zygisk/src/main/cpp/zygisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kingsman44/Pixelify/HEAD/zygisk/src/main/cpp/zygisk.hpp --------------------------------------------------------------------------------