I am trying to get serial number of my Lenovo Tab in android. I tried
Method get = c.getMethod("get", String.class, String.class);
serialnum = (String) (get.invoke(c, "ro.serialno", "unknown"));
serial = Build.SERIAL;
ro.serialno and Build.SERIAL is giving a value as 0123456789ABCDEF, but the serial in status-> about Tablet is HLB04JSJ and the printed serial number in the back side of the tab is also HLB04JSJ.
Any suggestions, Thanks in advance.