├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── README_zh.md ├── customize.sh ├── module.prop ├── script ├── cron.sh ├── crontabs │ └── root ├── en_US.ini ├── functions.sh ├── zh_CN.ini └── zh_TW.ini ├── service.sh ├── tools ├── arm │ └── keycheck └── x86 │ └── keycheck └── uninstall.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/README_zh.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/customize.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/module.prop -------------------------------------------------------------------------------- /script/cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/script/cron.sh -------------------------------------------------------------------------------- /script/crontabs/root: -------------------------------------------------------------------------------- 1 | 0 4 * * 4 sh /data/adb/modules/AnyHosts/script/functions.sh -------------------------------------------------------------------------------- /script/en_US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/script/en_US.ini -------------------------------------------------------------------------------- /script/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/script/functions.sh -------------------------------------------------------------------------------- /script/zh_CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/script/zh_CN.ini -------------------------------------------------------------------------------- /script/zh_TW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/script/zh_TW.ini -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/service.sh -------------------------------------------------------------------------------- /tools/arm/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/tools/arm/keycheck -------------------------------------------------------------------------------- /tools/x86/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/tools/x86/keycheck -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/E7KMbb/AnyHosts/HEAD/uninstall.sh --------------------------------------------------------------------------------