Is there some adb or android shell command that I could run that would return a device’s IMEI or MEID number? Preferably that’s all that would be returned.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I figured out how to do this. You need to run
adb shell dumpsys iphonesubinfoin a shell. It will give you a bit more than you need, but it will also return IMEI or MEID number.Edit (2017): In Android 5.0+ you’ll need to use the
service callcommand. More info about that can be found here.