-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the official documentation for ShizuCoreFetch. This guide is designed to help users and developers understand the application, how it works, and how to maximize its advanced features.
It is an advanced Android application manager and installer that relies on the Shizuku environment to provide a professional, seamless installation and management experience without the need for repetitive manual intervention or traditional system root permissions.
- Silent Installation: Install and update applications in the background with a single click utilizing the Shizuku API.
- Direct Updates: Connect directly to GitHub repositories to fetch and download the latest releases instantly.
- Local Wallet: A dedicated section for managing locally downloaded APK files, featuring precise icon extraction, application sharing, and navigation to download paths via trusted file managers.
- Modern & Fast UI: A design based on Material Design standards to ensure high performance and smooth scrolling within data-heavy application lists.
For the application to operate at full capacity, the following conditions must be met:
- Android 8.0 or higher.
-
Shizuku app installed and actively running in the background.
- Note: Shizuku can be activated via Root, ADB commands, or Wireless Debugging (available from Android 11 onwards).
ShizuCoreFetch is designed to be extensible. If you are a developer and want the application to fetch your releases directly from GitHub, you must provide a JSON configuration file (e.g., shizu_store.json) in your repository.
Standard Store File Structure:
{
"app_name": "AppName",
"package_name": "xyz.developer.app",
"short_description": "A short description displayed in the main list.",
"detailed_description": "A detailed description displayed inside the app page, supports markdown formatting.",
"icon_url": "[https://raw.githubusercontent.com/.../icon.png](https://raw.githubusercontent.com/.../icon.png)",
"banner_url": "[https://raw.githubusercontent.com/.../banner.png](https://raw.githubusercontent.com/.../banner.png)",
"developer": {
"name": "Developer Name",
"account_url": "[https://github.com/developer](https://github.com/developer)"
},
"repo_url": "[https://github.com/developer/AppName](https://github.com/developer/AppName)",
"screenshots": [
"assets/screen1.png",
"assets/screen2.png"
],
"locales": {
"ar": {
"short_description": "Arabic short description",
"detailed_description": "Arabic detailed description",
"banner_url": "[https://raw.githubusercontent.com/.../banner_ar.png](https://raw.githubusercontent.com/.../banner_ar.png)"
}
}
}