I have HTC Flyer tab with version Android 2.3.4. I am not able to retrieve the IMEI number through TelephonyManager.getDeviceId(). It always return null.

Can somebody try to read out the IMEI on another device. I would like to know whether it is a Google or HTC problem.

This is a 'GSM' device. And it is brand new, didn't have any OS update.

FYI, Included Manifest:

My programs on sumsung galaxy, Motorola xoom, and all smartphones working well.

link|improve this question
feedback

2 Answers

Some of the tab devices do not have IMEI number. You can get WI-FI MAC address of the device.

WifiManager wifiMan = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInf = wifiMan.getConnectionInfo();
String ID = wifiInf.getMacAddress();
link|improve this answer
feedback
        @SuppressWarnings("rawtypes")
        Class SystemProperties = null;
        SystemProperties = Class.forName("android.os.SystemProperties");

        //Parameters Types
        @SuppressWarnings("rawtypes")
        Class[] paramTypes = new Class[1];
        paramTypes[0] = String.class;

        Method get=null;
        get = SystemProperties.getMethod("get", paramTypes);


        //Parameters
        Object[] params = new Object[1];
        params[0] = new String("ro.gsm.imei");

        IMEI = (String) get.invoke(SystemProperties, params);
link|improve this answer
are you sure the method can get the imei in all device? – pengwang Jan 3 at 2:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.