This post gives a good example for reading IMEI or IMSI from a phone. This and other device specific settings and data may have vendor specific implementation. I'm assuming there are native libraries that would have to be modified for storing or reading the IMEI and other device data. Specifically, which library has the code for storing and retrieving IMEI?
Example of retrieving IMEI and IMSI
Using java Syntax Highlighting
- String myIMSI = android.os.SystemProperties.get(android.telephony.TelephonyProperties.PROPERTY_IMSI);
- // within my emulator it returns: 310995000000000
- String myIMEI = android.os.SystemProperties.get(android.telephony.TelephonyProperties.PROPERTY_IMEI);
- // within my emulator it returns: 000000000000000
Parsed in 0.031 seconds, using GeSHi 1.0.8.4



:

