├── README.md ├── beta.json ├── bootctl ├── canary_builds ├── app-debug.apk ├── app-release.apk ├── canary.json ├── magisk-debug.zip ├── magisk-release-saver-only.zip ├── magisk-release.zip ├── magisk-uninstaller.zip ├── notes.md ├── release-saver.json └── release.json ├── custom_builds ├── Magisk-v19.1.zip ├── Magisk-v19.2.zip ├── Magisk-v19.3.zip ├── Magisk-v20.0.zip ├── Magisk-v20.1.zip └── release.json ├── notes.md ├── snet.apk └── stable.json /README.md: -------------------------------------------------------------------------------- 1 | # Magisk File Host 2 | This repo hosts Magisk files: it is like a file server for Magisk Manager. 3 | 4 | ## Source code 5 | https://github.com/solohsu/Magisk 6 | 7 | ## What's different from official version 8 | Add EdXposed needed SELinux rules to magiskinit, for those ROMs which don't support sepolicy dynamically tweaking e.g. EMUI 9. 9 | 10 | ## Custom update channel 11 | https://raw.githubusercontent.com/solohsu/magisk_files/master/custom_builds/release.json 12 | 13 | ## Versions 14 | ### v20.1(20101) 15 | - Built from https://github.com/solohsu/Magisk/tree/v20.1_edxposed 16 | - Download link: https://github.com/solohsu/magisk_files/raw/master/custom_builds/Magisk-v20.1.zip 17 | ### v20.0(20001) 18 | - Built from https://github.com/solohsu/Magisk/tree/v20.0_edxposed 19 | - Download link: https://github.com/solohsu/magisk_files/raw/master/custom_builds/Magisk-v20.0.zip 20 | ### v19.3(19301) 21 | - Built from https://github.com/solohsu/Magisk/tree/v19.3_edxposed 22 | - Download link: https://github.com/solohsu/magisk_files/raw/master/custom_builds/Magisk-v19.3.zip 23 | ### v19.2(19201) 24 | - Built from https://github.com/solohsu/Magisk/tree/v19.2_edxposed 25 | - Download link: https://github.com/solohsu/magisk_files/raw/master/custom_builds/Magisk-v19.2.zip 26 | ### v19.1(19102) 27 | - Built from https://github.com/solohsu/Magisk/tree/v19.1_edxposed 28 | - Download link: https://github.com/solohsu/magisk_files/raw/master/custom_builds/Magisk-v19.1.zip 29 | 30 | -------------------------------------------------------------------------------- /beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "version": "7.1.2", 4 | "versionCode": "208", 5 | "link": "https://github.com/topjohnwu/Magisk/releases/download/manager-v7.1.2/MagiskManager-v7.1.2.apk", 6 | "note": "https://raw.githubusercontent.com/topjohnwu/Magisk/4040a0242f735fe66d0ffee496a874844eb60236/app/src/main/res/raw/changelog.md" 7 | }, 8 | "uninstaller": { 9 | "link": "https://github.com/topjohnwu/Magisk/releases/download/v19.1/Magisk-uninstaller-20190501.zip" 10 | }, 11 | "magisk": { 12 | "version": "19.1", 13 | "versionCode": "19100", 14 | "link": "https://github.com/topjohnwu/Magisk/releases/download/v19.1/Magisk-v19.1.zip", 15 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/2938cab9897d72808a46f2654a1bb595bb3f3327/notes.md", 16 | "md5": "1205486d9302e2e8ea03d67bd1f67aa3" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /bootctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/bootctl -------------------------------------------------------------------------------- /canary_builds/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/canary_builds/app-debug.apk -------------------------------------------------------------------------------- /canary_builds/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/canary_builds/app-release.apk -------------------------------------------------------------------------------- /canary_builds/canary.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "version": "7.1.2-a9350f50", 4 | "versionCode": "210", 5 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/app-debug.apk", 6 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/notes.md" 7 | }, 8 | "magisk": { 9 | "version": "19.2-4040a024", 10 | "versionCode": "19101", 11 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/magisk-debug.zip", 12 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/notes.md", 13 | "md5": "268a4a73b6bc496a618d0a4e96a00a98" 14 | }, 15 | "uninstaller": { 16 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/magisk-uninstaller.zip" 17 | }, 18 | "snet": { 19 | "versionCode": "12", 20 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/snet.apk" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /canary_builds/magisk-debug.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/canary_builds/magisk-debug.zip -------------------------------------------------------------------------------- /canary_builds/magisk-release-saver-only.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/canary_builds/magisk-release-saver-only.zip -------------------------------------------------------------------------------- /canary_builds/magisk-release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/canary_builds/magisk-release.zip -------------------------------------------------------------------------------- /canary_builds/magisk-uninstaller.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/canary_builds/magisk-uninstaller.zip -------------------------------------------------------------------------------- /canary_builds/notes.md: -------------------------------------------------------------------------------- 1 | ## Magisk (4040a024) (19101) 2 | - Upstream release v19.1 3 | 4 | ## Magisk Manager (a9350f50) (210) 5 | - Code re-architecture: a large portion of the code base is migrated to Kotlin 6 | - Major UI overhaul: this is just the tip of the iceberg, stay tuned for more drastic UI improvements! 7 | -------------------------------------------------------------------------------- /canary_builds/release-saver.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "version": "7.3.5", 4 | "versionCode": "243", 5 | "link": "https://github.com/topjohnwu/Magisk/releases/download/manager-v7.3.5/MagiskManager-v7.3.5.apk", 6 | "note": "https://raw.githubusercontent.com/topjohnwu/Magisk/59fd38bbf810c81076a1f9b16bc5a0071581b9e7/app/src/main/res/raw/changelog.md" 7 | }, 8 | "uninstaller": { 9 | "link": "https://github.com/topjohnwu/Magisk/releases/download/v20.0/Magisk-uninstaller-20191011.zip" 10 | }, 11 | "magisk": { 12 | "version": "20.0", 13 | "versionCode": "20000", 14 | "link": "https://raw.githubusercontent.com/solohsu/magisk_files/master/canary_builds/magisk-release-saver-only.zip", 15 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/2d7ddefbe4946806de1875a18247b724f5e7d4a0/notes.md", 16 | "md5": "79f8a8489f9c8baa3b66f37b57189fe5" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /canary_builds/release.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "version": "7.1.2-a9350f50", 4 | "versionCode": "210", 5 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/app-release.apk", 6 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/notes.md" 7 | }, 8 | "magisk": { 9 | "version": "19.2-4040a024", 10 | "versionCode": "19101", 11 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/magisk-release.zip", 12 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/notes.md", 13 | "md5": "2e00bcd810fdf94716d8929aabbc960a" 14 | }, 15 | "uninstaller": { 16 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/canary_builds/magisk-uninstaller.zip" 17 | }, 18 | "snet": { 19 | "versionCode": "11", 20 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/master/snet.apk" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /custom_builds/Magisk-v19.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/custom_builds/Magisk-v19.1.zip -------------------------------------------------------------------------------- /custom_builds/Magisk-v19.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/custom_builds/Magisk-v19.2.zip -------------------------------------------------------------------------------- /custom_builds/Magisk-v19.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/custom_builds/Magisk-v19.3.zip -------------------------------------------------------------------------------- /custom_builds/Magisk-v20.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/custom_builds/Magisk-v20.0.zip -------------------------------------------------------------------------------- /custom_builds/Magisk-v20.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/custom_builds/Magisk-v20.1.zip -------------------------------------------------------------------------------- /custom_builds/release.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "version": "7.4.0", 4 | "versionCode": "253", 5 | "link": "https://github.com/topjohnwu/Magisk/releases/download/manager-v7.4.0/MagiskManager-v7.4.0.apk", 6 | "note": "https://raw.githubusercontent.com/topjohnwu/Magisk/7da97489cc0f6bb0ddcde8d5a91fa1719bf01791/app/src/main/res/raw/changelog.md" 7 | }, 8 | "uninstaller": { 9 | "link": "https://github.com/topjohnwu/Magisk/releases/download/v20.1/Magisk-uninstaller-20191102.zip" 10 | }, 11 | "magisk": { 12 | "version": "20.1", 13 | "versionCode": "20101", 14 | "link": "https://github.com/solohsu/magisk_files/raw/master/custom_builds/Magisk-v20.1.zip", 15 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/6f94236b1407bd0c162647db75dfa2ac956163ca/notes.md", 16 | "md5": "8f1c2214126e17ba28b741b1bb35ad6b" 17 | }, 18 | "stub": { 19 | "versionCode": "3", 20 | "link": "https://raw.githubusercontent.com/topjohnwu/magisk_files/stub/stub-release.apk" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- 1 | # 2019.5.1 Magisk v19.1 2 | Finally, a lovely stable release! 3 | 4 | For those that were using v18.1, here are some quick highlights of v19.0 5 | 6 | - Imageless Magisk: Although module migration was tested, there are still chances that your modules will get lost in the process. Be prepared to reinstall your existing modules in that case. 7 | - Native 64-bit support 8 | - Zygote Ptrace Based MagiskHide 9 | 10 | Other than adding support for Samsung system-as-root devices, this release is mostly bug fixes from v19.0. Enjoy :) 11 | 12 | ### Full Changelog: [here](https://forum.xda-developers.com/showpost.php?p=68966755&postcount=2) 13 | -------------------------------------------------------------------------------- /snet.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solohsu/magisk_files/3dea0ab7831cca1f9c287548e321c3954340381f/snet.apk -------------------------------------------------------------------------------- /stable.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "version": "7.3.5", 4 | "versionCode": "243", 5 | "link": "https://github.com/topjohnwu/Magisk/releases/download/manager-v7.3.5/MagiskManager-v7.3.5.apk", 6 | "note": "https://raw.githubusercontent.com/topjohnwu/Magisk/59fd38bbf810c81076a1f9b16bc5a0071581b9e7/app/src/main/res/raw/changelog.md" 7 | }, 8 | "uninstaller": { 9 | "link": "https://github.com/topjohnwu/Magisk/releases/download/v20.0/Magisk-uninstaller-20191011.zip" 10 | }, 11 | "magisk": { 12 | "version": "20.0", 13 | "versionCode": "20000", 14 | "link": "https://github.com/solohsu/magisk_files/raw/master/custom_builds/Magisk-v20.0.zip", 15 | "note": "https://raw.githubusercontent.com/topjohnwu/magisk_files/2d7ddefbe4946806de1875a18247b724f5e7d4a0/notes.md", 16 | "md5": "79f8a8489f9c8baa3b66f37b57189fe5" 17 | } 18 | } 19 | --------------------------------------------------------------------------------