adb shell dumpsys iphonesubinfo not working since Android 5.0 Lollipop

前端 未结 4 1578
心在旅途
心在旅途 2020-12-02 21:42

We used to get Device ID/IMEI using the following command:

adb shell dumpsys iphonesubinfo

But since last Android update (5.0 - Lollilop),

4条回答
  •  死守一世寂寞
    2020-12-02 22:07

    IMEI for sim 1

    adb shell service call iphonesubinfo 1 | awk -F "'" '{print $2}' | sed '1 d' | tr -d '.' | awk '{print}' ORS=
    

提交回复
热议问题