I\'m working in Android, writing some JNI code, and I\'m looking for a way to query the Mobile Equipment Identifier (MEID) from the device.
http://en.wikipedia.org/wiki/
Retrieve the MEID on the Java side, then pass into your JNI function as a jstring parameter. It'll be cleaner than calling back to Java from C.
jstring
As to how to retrieve that, see Abhilasha's answer.