├── .github ├── dependabot.yml └── workflows │ └── deploy.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── .vitepress │ ├── config.ts │ └── locales │ │ ├── en.ts │ │ ├── index.ts │ │ ├── pt_BR.ts │ │ ├── ru.ts │ │ └── zh_CN.ts ├── apm-guide.md ├── faq.md ├── index.md ├── install.md ├── kpm-usage-guide.md ├── pt_BR │ ├── apm-guide.md │ ├── faq.md │ ├── index.md │ ├── install.md │ ├── kpm-usage-guide.md │ ├── rescue-bootloop.md │ ├── support.md │ ├── update.md │ ├── warn.md │ └── what-is-apatch.md ├── public │ ├── PButton.png │ ├── favicon.ico │ └── logo.png ├── rescue-bootloop.md ├── ru │ ├── apm-guide.md │ ├── faq.md │ ├── index.md │ ├── install.md │ ├── kpm-usage-guide.md │ ├── rescue-bootloop.md │ ├── support.md │ ├── update.md │ ├── warn.md │ └── what-is-apatch.md ├── support.md ├── update.md ├── warn.md ├── what-is-apatch.md └── zh_CN │ ├── apm-guide.md │ ├── faq.md │ ├── index.md │ ├── install.md │ ├── kpm-usage-guide.md │ ├── rescue-bootloop.md │ ├── support.md │ ├── update.md │ ├── warn.md │ └── what-is-apatch.md ├── package.json └── pnpm-lock.yaml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/.vitepress/locales/en.ts -------------------------------------------------------------------------------- /docs/.vitepress/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/.vitepress/locales/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/locales/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/.vitepress/locales/pt_BR.ts -------------------------------------------------------------------------------- /docs/.vitepress/locales/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/.vitepress/locales/ru.ts -------------------------------------------------------------------------------- /docs/.vitepress/locales/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/.vitepress/locales/zh_CN.ts -------------------------------------------------------------------------------- /docs/apm-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/apm-guide.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/kpm-usage-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/kpm-usage-guide.md -------------------------------------------------------------------------------- /docs/pt_BR/apm-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/apm-guide.md -------------------------------------------------------------------------------- /docs/pt_BR/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/faq.md -------------------------------------------------------------------------------- /docs/pt_BR/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/index.md -------------------------------------------------------------------------------- /docs/pt_BR/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/install.md -------------------------------------------------------------------------------- /docs/pt_BR/kpm-usage-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/kpm-usage-guide.md -------------------------------------------------------------------------------- /docs/pt_BR/rescue-bootloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/rescue-bootloop.md -------------------------------------------------------------------------------- /docs/pt_BR/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/support.md -------------------------------------------------------------------------------- /docs/pt_BR/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/update.md -------------------------------------------------------------------------------- /docs/pt_BR/warn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/warn.md -------------------------------------------------------------------------------- /docs/pt_BR/what-is-apatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/pt_BR/what-is-apatch.md -------------------------------------------------------------------------------- /docs/public/PButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/public/PButton.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/public/logo.png -------------------------------------------------------------------------------- /docs/rescue-bootloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/rescue-bootloop.md -------------------------------------------------------------------------------- /docs/ru/apm-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/apm-guide.md -------------------------------------------------------------------------------- /docs/ru/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/faq.md -------------------------------------------------------------------------------- /docs/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/index.md -------------------------------------------------------------------------------- /docs/ru/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/install.md -------------------------------------------------------------------------------- /docs/ru/kpm-usage-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/kpm-usage-guide.md -------------------------------------------------------------------------------- /docs/ru/rescue-bootloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/rescue-bootloop.md -------------------------------------------------------------------------------- /docs/ru/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/support.md -------------------------------------------------------------------------------- /docs/ru/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/update.md -------------------------------------------------------------------------------- /docs/ru/warn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/warn.md -------------------------------------------------------------------------------- /docs/ru/what-is-apatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/ru/what-is-apatch.md -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/support.md -------------------------------------------------------------------------------- /docs/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/update.md -------------------------------------------------------------------------------- /docs/warn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/warn.md -------------------------------------------------------------------------------- /docs/what-is-apatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/what-is-apatch.md -------------------------------------------------------------------------------- /docs/zh_CN/apm-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/apm-guide.md -------------------------------------------------------------------------------- /docs/zh_CN/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/faq.md -------------------------------------------------------------------------------- /docs/zh_CN/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/index.md -------------------------------------------------------------------------------- /docs/zh_CN/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/install.md -------------------------------------------------------------------------------- /docs/zh_CN/kpm-usage-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/kpm-usage-guide.md -------------------------------------------------------------------------------- /docs/zh_CN/rescue-bootloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/rescue-bootloop.md -------------------------------------------------------------------------------- /docs/zh_CN/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/support.md -------------------------------------------------------------------------------- /docs/zh_CN/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/update.md -------------------------------------------------------------------------------- /docs/zh_CN/warn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/warn.md -------------------------------------------------------------------------------- /docs/zh_CN/what-is-apatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/docs/zh_CN/what-is-apatch.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidPatch/APatchDocs/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------