├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Dr-TSNG] 2 | custom: ['https://afdian.com/a/dr-tsng', 'https://afdian.com/a/5ec1cff'] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report / 反馈 Bug 2 | description: Report errors or unexpected behavior. / 反馈错误或异常行为。 3 | labels: [bug] 4 | title: "[Bug] Short description / 简单描述" 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for reporting issues for Zygisk Next! 10 | To make it easier for us to help you please enter detailed information below. 11 | Note: We will **NEVER** handle any issue related to root detection or writable system. 12 | If you encounter the `Function not Implemented (38)` error during installation, [please refer to here](https://github.com/Dr-TSNG/ZygiskNext/issues/219) 13 | 14 | 感谢给 Zygisk Next 汇报问题! 15 | 为了使我们更好地帮助你,请提供以下信息。 16 | 为了防止重复汇报,标题请务必使用英文。 17 | 请注意:我们**不会**处理任何有关 root 检测和 system 分区可写相关的问题。 18 | 如您在安装时遇到了 `Function not Implemented (38)` 错误,[请参考此处](https://github.com/Dr-TSNG/ZygiskNext/issues/219)。 19 | - type: textarea 20 | attributes: 21 | label: Steps to reproduce/复现步骤 22 | placeholder: | 23 | 1. 24 | 2. 25 | 3. 26 | validations: 27 | required: true 28 | - type: textarea 29 | attributes: 30 | label: Expected behaviour/预期行为 31 | placeholder: Tell us what should happen/正常情况下应该发生什么 32 | validations: 33 | required: true 34 | - type: textarea 35 | attributes: 36 | label: Actual behaviour / 实际行为 37 | placeholder: Tell us what happens instead / 实际上发生了什么 38 | validations: 39 | required: true 40 | - type: textarea 41 | attributes: 42 | label: Module List / 模块列表 43 | description: Include Magisk, Xposed and other Modules (if any) / 包含 Magisk, Xposed 和其他模块(如有) 44 | render: Shell 45 | validations: 46 | required: true 47 | - type: input 48 | attributes: 49 | label: Zygisk Next version / Zygisk Next 版本 50 | description: Don't use 'latest'. Specify actual version, otherwise your issue will be closed./不要填用“最新版”。给出具体版本号,不然 issue 会被关闭。 51 | validations: 52 | required: true 53 | - type: input 54 | attributes: 55 | label: Android version / Android 版本 56 | validations: 57 | required: true 58 | - type: input 59 | attributes: 60 | label: Kernel version / 内核版本 61 | validations: 62 | required: true 63 | - type: input 64 | attributes: 65 | label: OS Version / 系统版本 66 | validations: 67 | required: true 68 | - type: input 69 | attributes: 70 | label: Phone model / 手机型号 71 | validations: 72 | required: true 73 | - type: input 74 | attributes: 75 | label: Magisk/KernelSU/APatch version / Magisk/KernelSU/APatch 版本 76 | validations: 77 | required: true 78 | - type: checkboxes 79 | id: latest 80 | attributes: 81 | label: Version requirement / 版本要求 82 | options: 83 | - label: I am using latest version of Zygisk Next/我正在使用最新版本 Zygisk Next 84 | required: true 85 | - type: textarea 86 | attributes: 87 | label: Logs/日志 88 | description: For usage issues, please provide the log zip saved from KernelSU / APatch manager (For magisk user, please **DO NOT** provide magisk logs), or catch logs with [log catcher module](https://t.me/hwrtools/10) or [tool](https://t.me/hwrtools/12). Without logs zip, the issue will be closed. /使用问题请提供从 KernelSU / APatch 管理器保存的日志压缩包(Magisk 用户请**不要**提供 Magisk 日志),或者使用[日志抓取模块](https://t.me/hwrtools/10)或[工具](https://t.me/hwrtools/12)获取日志。没有日志附件的问题会被关闭。 89 | placeholder: Upload logs zip by clicking the bar on the bottom. Upload logs to other websites or using external links is prohibited. /点击文本框底栏上传日志压缩包,禁止上传到其它网站或使用外链提供日志。 90 | validations: 91 | required: true 92 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request/新特性请求 2 | description: Suggest an idea./提出建议 3 | labels: [enhancement] 4 | title: "[Feature Request] Short description/简单描述" 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Note: We will **NEVER** handle any issue related to root detection or writable system. 10 | 11 | 请注意:我们**不会**处理任何有关 root 检测和 system 分区可写相关的问题。 12 | - type: textarea 13 | attributes: 14 | label: Is your feature request related to a problem?/你的请求是否与某个问题相关? 15 | placeholder: A clear and concise description of what the problem is./请清晰准确表述该问题。 16 | validations: 17 | required: true 18 | - type: textarea 19 | attributes: 20 | label: Describe the solution you'd like/描述你想要的解决方案 21 | placeholder: A clear and concise description of what you want to happen./请清晰准确描述新特性的预期行为 22 | validations: 23 | required: true 24 | - type: textarea 25 | attributes: 26 | label: Additional context/其他信息 27 | placeholder: Add any other context or screenshots about the feature request here./其他关于新特性的信息或者截图 28 | validations: 29 | required: false 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Zygisk Next 2 | 3 | Standalone implementation of Zygisk, providing Zygisk API support for KernelSU and a replacement of Magisk's built-in Zygisk. 4 | 5 | ## Copyright Notice 6 | 7 | Copyright © 2024 Zygisk Next developers. All rights reserved. 8 | 9 | The software Zygisk Next, starting from version v4-0.9.2, is no longer under the GPL-3.0 License. Instead, all rights to the software are reserved by the owner. 10 | 11 | The following conditions now apply: 12 | 13 | 1. **No Modifications:** The software may not be modified in any way. This includes but is not limited to changing, adding, or removing any part of the software's code or functionality. 14 | 15 | 2. **No Redistribution:** The software may not be redistributed in any form. This includes but is not limited to renaming, selling, or including the software as part of another project. 16 | 17 | 3. **No Picking:** No parts, pieces, or components of the software may be extracted and submitted to other projects. This includes, but is not limited to, code snippets, functions, and released binaries. 18 | 19 | 4. **No Claim to Succession:** Any fork of the software that was created before the license change may not claim to be an official or unofficial successor to the project. This includes but is not limited to using the project's name, branding, or reputation to imply a connection to the original project. 20 | 21 | ## Requirements 22 | 23 | ### General 24 | 25 | + No multiple root implementation installed 26 | 27 | ### KernelSU 28 | 29 | + Minimal KernelSU version: 10940 30 | + Minimal KernelSU Manager (ksud) version: 11575 31 | 32 | ### Magisk 33 | 34 | + Minimal version: 26402 35 | + Built-in Zygisk turned off 36 | 37 | ## Compatibility 38 | 39 | Zygisk Next only guarantees the same behavior of Zygisk API, but will NOT ensure Magisk's internal features. 40 | --------------------------------------------------------------------------------