├── .github └── FUNDING.yml ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── action.sh ├── customize.sh ├── function.sh ├── module.prop ├── post-fs-data.sh ├── sepolicy.rule ├── service.sh └── uninstall.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/README.md -------------------------------------------------------------------------------- /action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/action.sh -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/customize.sh -------------------------------------------------------------------------------- /function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/function.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/module.prop -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/post-fs-data.sh -------------------------------------------------------------------------------- /sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/sepolicy.rule -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/service.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiryuki/ZRAM-Swap-Configurator-Magisk-Module/HEAD/uninstall.sh --------------------------------------------------------------------------------