Search code examples
androidshelladb

Get IMEI number on rooted device using adb on Android 14


Is there any adb command that I could use to get a device's IMEI/MEID?

Also is there a way to get IMEI2 as well. I am trying to do service call to iphonesubinfo, but i don't know the transaction number in Android 14.

So far i have tried iphonesubinfo 1 and 16 but nothing


Solution

  • You can try the following command to get IMEI on Android 14

    adb shell -n service call iphonesubinfo 1 s16 com.android.shell | cut -c 52-66 | tr -d '.[:space:]'