Como Desinstalar o Magisk Completamente
Seja para preparar o aparelho para a garantia, passar em verificações de segurança de aplicativos bancários ou resolver um bootloop, siga este guia para desinstalar o root.
Clean Uninstallation Principles
Because Magisk operates systemlessly, removing it does NOT require wiping your user data or reinstalling the entire Android operating system. A complete uninstallation simply restores the pristine stock boot.img or init_boot.img and deletes the root configuration directory (/data/adb).
Method 1: In-App Automated Uninstall via Magisk App
- Open the Magisk App on your device.
- Tap the red "Uninstall Magisk" button located on the main screen.
- Select "Complete Uninstall".
- Magisk will restore your stock boot partition and automatically reboot the phone into pristine stock Android.
Method 2: Manual Uninstallation via Fastboot (Emergency / Bootloop)
Fastboot Stock Flash Commands
# 1. Reboot device into Fastboot Mode
$adb reboot bootloader
# 2. For Android 13+ GKI devices:
$fastboot flash init_boot stock_init_boot.img
# 3. For Android 12 and older devices:
$fastboot flash boot stock_boot.img
# 4. Reboot into stock Android
$fastboot reboot
Official Upstream Source Standard
Verified against official upstream repository topjohnwu/Magisk on Magisk v30.7 under the GNU General Public License v3.0.