I've a Android Pixel 7 Pro and I can view the IMEI1, IMEI2, EID via the phone dialer *#06#
From other stackoverflow post that I can see there's a adb shell script to capture the IMEI1 from Android device, but unable to get the IMEI2 and EID
adb shell service call iphonesubinfo 1 s16 com.android.shell | cut -d "'" -f2| grep -Eo '[0-9]'| xargs| sed 's/\ //g'
Wondering is there an android adb shell command that I could get the IMEI2 & EID from Android phone?
Tried search other stackoverflow post but can't find any other method that could get IMEI2 & EID
following only get the IMEI1
adb shell service call iphonesubinfo 1 s16 com.android.shell | cut -d "'" -f2| grep -Eo '[0-9]'| xargs| sed 's/\ //g'
