From your PC command prompt (still in the MuMu ADB folder):
adb push magisk_patched_XXXXX.img /sdcard/
adb shell
su
dd if=/sdcard/magisk_patched_XXXXX.img of=/dev/block/by-name/boot
reboot
The emulator will restart. After reboot, disable the built-in Root in MuMu settings (otherwise, it may conflict with Magisk’s hide features). mumu player magisk
Out of the box, Mumu Player (both the standard and Pro versions) does not offer a simple “install Magisk” button. While it does provide a built-in “root” toggle under settings, that’s a simple su binary — not Magisk. That means: From your PC command prompt (still in the
To get true Magisk, you need to treat Mumu Player like a physical Android device: unlock the bootloader (conceptually), patch the boot image, and flash it. Except — it’s an emulator. That means using tools like adb, custom ROM images (system.vmdk or system.img), and sometimes even unpacking the emulator’s virtual disk. The emulator will restart
Open a command prompt on your Windows PC (as Administrator) and run:
cd "C:\Program Files\MuMu Player\vmonline"
adb kill-server
adb connect 127.0.0.1:7555 # Default MuMu ADB port
adb shell
Inside the ADB shell, type:
su
dd if=/dev/block/by-name/boot of=/sdcard/boot.img
exit
exit
Then pull the file to your PC:
adb pull /sdcard/boot.img