gitextract_c9c7yzyg/ ├── .gitattributes ├── .github/ │ └── dependabot.yml ├── .gitignore ├── appops/ │ ├── .gitignore │ ├── .vuepress/ │ │ ├── config.js │ │ ├── public/ │ │ │ └── icon/ │ │ │ ├── browserconfig.xml │ │ │ └── manifest.json │ │ └── theme/ │ │ ├── components/ │ │ │ ├── Home.vue │ │ │ └── SidebarLink.vue │ │ ├── index.js │ │ ├── layouts/ │ │ │ └── Layout.vue │ │ └── styles/ │ │ ├── index.styl │ │ └── palette.styl │ ├── README.md │ ├── changelog.md │ ├── download.md │ ├── guide/ │ │ ├── README.md │ │ ├── faq/ │ │ │ ├── how_to_reset.md │ │ │ └── purchase.md │ │ ├── technical/ │ │ │ ├── run_in_background.md │ │ │ └── system_behaviors.md │ │ └── working_mode/ │ │ ├── dpm.md │ │ └── shizuku.md │ ├── zh-hans/ │ │ ├── README.md │ │ ├── changelog.md │ │ ├── download.md │ │ └── guide/ │ │ ├── README.md │ │ ├── faq/ │ │ │ ├── how_to_reset.md │ │ │ └── purchase.md │ │ ├── technical/ │ │ │ ├── run_in_background.md │ │ │ └── system_behaviors.md │ │ └── working_mode/ │ │ ├── dpm.md │ │ └── shizuku.md │ └── zh-hant/ │ ├── README.md │ ├── changelog.md │ ├── download.md │ └── guide/ │ ├── README.md │ ├── faq/ │ │ ├── how_to_reset.md │ │ └── purchase.md │ ├── technical/ │ │ ├── run_in_background.md │ │ └── system_behaviors.md │ └── working_mode/ │ ├── dpm.md │ └── shizuku.md ├── assets/ │ └── SourceCodePro-BDC.css ├── package.json ├── shizuku/ │ ├── .gitignore │ ├── .vuepress/ │ │ ├── config.js │ │ ├── public/ │ │ │ └── icon/ │ │ │ ├── browserconfig.xml │ │ │ └── manifest.json │ │ └── theme/ │ │ ├── index.js │ │ ├── layouts/ │ │ │ └── Layout.vue │ │ └── styles/ │ │ ├── index.styl │ │ └── palette.styl │ ├── README.md │ ├── download.md │ ├── guide/ │ │ └── setup.md │ ├── introduction.md │ ├── zh-hans/ │ │ ├── README.md │ │ ├── download.md │ │ ├── guide/ │ │ │ └── setup.md │ │ └── introduction.md │ └── zh-hant/ │ ├── README.md │ ├── download.md │ ├── guide/ │ │ └── setup.md │ └── introduction.md ├── storage_redirect/ │ ├── .gitignore │ ├── .vuepress/ │ │ ├── config.js │ │ ├── public/ │ │ │ └── icon/ │ │ │ ├── browserconfig.xml │ │ │ └── manifest.json │ │ └── theme/ │ │ ├── LICENSE │ │ ├── components/ │ │ │ ├── AlgoliaSearchBox.vue │ │ │ ├── Download.vue │ │ │ ├── DropdownLink.vue │ │ │ ├── DropdownTransition.vue │ │ │ ├── Home.vue │ │ │ ├── NavLink.vue │ │ │ ├── NavLinks.vue │ │ │ ├── Navbar.vue │ │ │ ├── Page.vue │ │ │ ├── PageEdit.vue │ │ │ ├── PageNav.vue │ │ │ ├── Sidebar.vue │ │ │ ├── SidebarButton.vue │ │ │ ├── SidebarGroup.vue │ │ │ ├── SidebarLink.vue │ │ │ └── SidebarLinks.vue │ │ ├── global-components/ │ │ │ └── Badge.vue │ │ ├── index.js │ │ ├── layouts/ │ │ │ ├── 404.vue │ │ │ └── Layout.vue │ │ ├── noopModule.js │ │ ├── styles/ │ │ │ ├── arrow.styl │ │ │ ├── code.styl │ │ │ ├── config.styl │ │ │ ├── custom-blocks.styl │ │ │ ├── index.styl │ │ │ ├── mobile.styl │ │ │ ├── palette.styl │ │ │ ├── toc.styl │ │ │ └── wrapper.styl │ │ └── util/ │ │ └── index.js │ ├── README.md │ ├── changelog.md │ ├── download.md │ ├── guide/ │ │ ├── README.md │ │ ├── advanced/ │ │ │ ├── shared_user_id.md │ │ │ └── technical_details_export_isolated_files.md │ │ ├── compatibility/ │ │ │ ├── README.md │ │ │ ├── meizu.md │ │ │ ├── miui.md │ │ │ └── samsung.md │ │ ├── contribute.md │ │ ├── enhanced_mode/ │ │ │ ├── README.md │ │ │ └── install.md │ │ ├── faq/ │ │ │ ├── cant_find_app.md │ │ │ ├── how_to_document.md │ │ │ └── how_to_report_problems.md │ │ └── tutorial.md │ ├── zh-hans/ │ │ ├── README.md │ │ ├── changelog.md │ │ ├── download.md │ │ └── guide/ │ │ ├── README.md │ │ ├── advanced/ │ │ │ ├── shared_user_id.md │ │ │ └── technical_details_export_isolated_files.md │ │ ├── compatibility/ │ │ │ ├── README.md │ │ │ ├── meizu.md │ │ │ ├── miui.md │ │ │ └── samsung.md │ │ ├── contribute.md │ │ ├── enhanced_mode/ │ │ │ ├── README.md │ │ │ └── install.md │ │ ├── faq/ │ │ │ ├── cant_find_app.md │ │ │ ├── how_to_document.md │ │ │ └── how_to_report_problems.md │ │ └── tutorial.md │ └── zh-hant/ │ ├── README.md │ ├── changelog.md │ ├── download.md │ └── guide/ │ ├── README.md │ ├── advanced/ │ │ ├── shared_user_id.md │ │ └── technical_details_export_isolated_files.md │ ├── compatibility/ │ │ ├── README.md │ │ ├── meizu.md │ │ ├── miui.md │ │ └── samsung.md │ ├── contribute.md │ ├── enhanced_mode/ │ │ ├── README.md │ │ └── install.md │ ├── faq/ │ │ ├── cant_find_app.md │ │ ├── how_to_document.md │ │ └── how_to_report_problems.md │ └── tutorial.md ├── webhooks/ │ ├── .gitignore │ ├── index.js │ └── package.json └── www/ ├── .gitignore ├── .vuepress/ │ ├── config.js │ ├── public/ │ │ └── robots.txt │ └── theme/ │ ├── components/ │ │ ├── Home.vue │ │ └── SidebarLink.vue │ ├── index.js │ ├── layouts/ │ │ └── Layout.vue │ └── styles/ │ ├── index.styl │ └── palette.styl ├── README.md ├── contribute_translation.md ├── knowledge/ │ ├── exit_on_start.md │ └── google_play_purchase.md ├── privacy_policy.md ├── zh-hans/ │ ├── README.md │ ├── contribute_translation.md │ └── knowledge/ │ ├── exit_on_start.md │ └── google_play_purchase.md └── zh-hant/ ├── README.md ├── contribute_translation.md └── knowledge/ ├── exit_on_start.md └── google_play_purchase.md