如何获取LAC/CELLID的IMEI,数据?这很容易吗?在android/iphone中?你能给我写几行吗?
发布于 2012-10-24 21:01:12
因为IMEI是这么做的
TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String IMEI = tm.getDeviceId();使用
<uses-permission android:name="android.permission.READ_PHONE_STATE" />https://stackoverflow.com/questions/6179583
复制相似问题