Releases: LyraVoid/FolkADB
FolkADB v1.2
- Supports direct activation of the mobile Shizuku APP via Shizuku commands.
- The
themecommand enables the use of multiple built-in terminal style themes. - Press the Tab key to auto-complete commands or correct command typos.
- Enter
cmdto access the native cmd operation mode directly.
FolkADB v1.1
FolkADB is a portable Android Debug Bridge (ADB) and Fastboot utility designed to simplify Android device management and debugging. Written in C, it requires no cumbersome environment configuration and works out of the box.
Core Features
1. Portable & Auto-Configuration
The program automatically extracts and configures the required ADB and Fastboot environment upon startup, eliminating the need for users to manually set system environment variables. It supports automatic detection of device modes (ADB/Fastboot) and automatic connection. Type help and press Enter to view all commands.
2. Interactive CLI & Command Simplification
FolkADB provides a shell-like interactive environment where you no longer need to type the adb or fastboot prefix every time, although standard commands with adb or fastboot prefixes are also supported.
- Direct Commands: Directly input commands like
ls,rm,install,shell, etc. - Shortcuts: Provides numeric shortcuts (1-9) for quick execution of common operations. Type
sand press Enter in the command line to view all shortcuts. - Shell Mode: In ADB mode, type
shelland press Enter to enter Shell mode. In Shell mode, you can directly input Shell commands. Typeexitand press Enter to exit Shell mode. While in Shell mode, you can typesuand press Enter to elevate to a root shell. Alternatively, you can usesudo <command>to temporarily elevate privileges for a single command. For example,sudo /data/adb/apd module install 1.zipuses this temporary privilege elevation to call the APatch daemon for module installation.
3. Advanced Features (Please grant root permission to the shell app in your Root Manager)
⚡ Sudo Privilege Escalation
In the interactive Shell, a sudo command is built-in.
- Usage:
sudo <command> - Function: Automatically executes the command via
su -c, facilitating the quick execution of commands requiring root privileges in a non-root shell environment.
📥 DLI Download & Install
Built-in dli (Download & Install) command supports installing modules directly from a URL.
- Usage:
dli <url> - Function: Automatically downloads the file, pushes it to the device, and installs it according to the detected Root solution.
🧩 Module Installation (Magisk/KernelSU/APatch)
Supports automated installation of Root modules.
- Drag & Drop Install: Drag a module zip file (
.zip) directly onto theFolkAdb.exeicon. The program will automatically identify the module type and invoke the corresponding installation logic. - Smart Detection: Automatically identifies Magisk, KernelSU, or APatch/FolkPatch environments and calls the appropriate installation logic.
📱 APK Drag & Drop Install
- Operation: Drag an
.apkfile directly onto theFolkAdb.exeicon or the running window (The window method supports single APK installation, while the icon method supports multiple APKs). - Process: The program automatically identifies the APK file and asks whether to install it. Upon confirmation, the installation process completes automatically.
📂 File Transfer
- Drag & Drop Transfer: Drag ordinary files onto the
FolkAdb.exeicon to automatically push them to the device's/storage/emulated/0/directory. Supports multiple file selection. If a ZIP file is detected as a module, you will be asked whether to install it.