Device Identification is a Native Extension  that provides access to device identification data. It is possible to read the IMEI code, IMEI SV code, Device Serial Number, MODEL and IMSI code.

Sample

import com.flashvisions.mobile.android.extensions.system.data.DeviceIdentity;
import com.flashvisions.mobile.android.extensions.system.SystemNFO;

var systemInfo:SystemNFO = new SystemNFO();
var result:DeviceIdentity = systemInfo.getDeviceIdentity();

trace(result.IMEI);
trace(result.IMEISV);
trace(result.IMSI);
trace(result.MODEL);
trace(result.SERIAL);
trace(result.PHONENUMBER);
Air Native Extension, Android , . URL.