├── .editorconfig ├── .gitignore ├── .idea ├── .gitignore ├── BGAppRetention.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml └── vcs.xml ├── AppRetention.apk ├── HChen.json ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README-en.md ├── README.md ├── Update.md ├── customize.sh ├── memory.sh ├── module.prop ├── service.sh ├── swap.ini └── system.prop /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/BGAppRetention.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.idea/BGAppRetention.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AppRetention.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/AppRetention.apk -------------------------------------------------------------------------------- /HChen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/HChen.json -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/README.md -------------------------------------------------------------------------------- /Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/Update.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/customize.sh -------------------------------------------------------------------------------- /memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/memory.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/module.prop -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/service.sh -------------------------------------------------------------------------------- /swap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/swap.ini -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HChenX/MemoryOpt/HEAD/system.prop --------------------------------------------------------------------------------