In this post you’ll learn how to find the eMMC ID on any Android phone. It’s a very simple process that you can do using ADB (Android Debug Bridge). For this, the first thing you need to do is enable USB Debugging from the Developer Options on your phone, and at the same time download the Platform Tools on your PC.
Requirements;
- Android device (powered on) with USB Debugging enabled.
- Windows / Linux / macOS.
- Official Google platform-tools (adb, fastboot) installed or extracted.
- A working cable to connect the phone to the PC.
Steps:
- Enable USB Debugging on your phone.
- Install ADB tools (Platform-tools) on your PC.
- Connect the phone via USB and run below code in the cmd
adb shell cat /sys/block/mmcblk0/device/cid adb shell cat /sys/block/mmcblk0/device/name adb shell cat /sys/block/mmcblk0/device/serial
This will display your eMMC CID, name and serial.