├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── resources │ └── banner.png └── workflows │ └── sync.yml ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── action.sh ├── changelog.md ├── customize.sh ├── func.sh ├── jq └── jq ├── module.prop ├── post-fs-data.sh ├── service.sh ├── uninstall.sh ├── update.json └── webroot ├── icons.js ├── index.html ├── script.js └── style.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/.github/resources/banner.png -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/README.md -------------------------------------------------------------------------------- /action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/action.sh -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/changelog.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/customize.sh -------------------------------------------------------------------------------- /func.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/func.sh -------------------------------------------------------------------------------- /jq/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/jq/jq -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/module.prop -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/post-fs-data.sh -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/service.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/uninstall.sh -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/update.json -------------------------------------------------------------------------------- /webroot/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/webroot/icons.js -------------------------------------------------------------------------------- /webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/webroot/index.html -------------------------------------------------------------------------------- /webroot/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/webroot/script.js -------------------------------------------------------------------------------- /webroot/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RipperHybrid/AshLooper/HEAD/webroot/style.css --------------------------------------------------------------------------------