├── ADDITIONAL_AUTHORS ├── README.md ├── SCOPE ├── SOURCE_URL └── SUMMARY /ADDITIONAL_AUTHORS: -------------------------------------------------------------------------------- 1 | [{ 2 | "type": "add", 3 | "name": "coderstory", 4 | "link": "https://github.com/coderstory" 5 | }] 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CorePatch 2 | 3 | ``` 4 | Disable signature verification For Android 5 | 禁用安装apk时候执行的签名校验 6 | The current version support android 10-14 7 | 当前版本只支持安卓10-14 8 | ``` 9 | 10 | 11 | ## Fetures 功能 12 | ``` 13 | allow downgrade application [INSTALL_FAILED_VERSION_DOWNGRADE] 14 | 允许降级安装应用 15 | 16 | allows direct install apps after modify file in apk [ignore invalid digest error etc..] 17 | 允许安装签名错误的apk 18 | 19 | allow overlay install apps with inconsistent signatures 20 | 允许在使用不同签名的情况下覆盖安装 21 | ``` 22 | 23 | -------------------------------------------------------------------------------- /SCOPE: -------------------------------------------------------------------------------- 1 | ["android"] 2 | -------------------------------------------------------------------------------- /SOURCE_URL: -------------------------------------------------------------------------------- 1 | https://github.com/coderstory/CorePatch 2 | -------------------------------------------------------------------------------- /SUMMARY: -------------------------------------------------------------------------------- 1 | Disable signature verification 2 | 版本降级,签名不一致,签名错误的apk都能安装 3 | --------------------------------------------------------------------------------