Androidはキャリア情報(完全版)-高通、MTKなどのデュアルカードの問題を解決
国内の事業者の問題で、デュアルカード携帯電話のIMSI番号取得問題はメーカーのAPIに基づいて実現しなければならない.
次に、IMSI番号の論理を取得する完全な分析事業者について説明します.
1、まず携帯電話のプラットフォームを判断します.
1.1、携帯電話がMTKプラットフォームかどうかを判断する
1.2携帯電話がプラットフォームに通じているかどうかを判断する
そして論理を整理します
この時、私たちは基本的に携帯電話のプラットフォームとカードごとの情報を取得しました.シングルカードの携帯電話で情報を取得すると、コードが貼られなくなります.
次に、IMSI番号の論理を取得する完全な分析事業者について説明します.
1、まず携帯電話のプラットフォームを判断します.
1.1、携帯電話がMTKプラットフォームかどうかを判断する
public static MtkDoubleInfo initMtkDoubleSim(Context mContext) {
MtkDoubleInfo mtkDoubleInfo = new MtkDoubleInfo();
try {
TelephonyManager tm = (TelephonyManager) mContext
.getSystemService(Context.TELEPHONY_SERVICE);
Class> c = Class.forName("com.android.internal.telephony.Phone");
Field fields1 = c.getField("GEMINI_SIM_1");
fields1.setAccessible(true);
mtkDoubleInfo.setSimId_1((Integer) fields1.get(null));
Field fields2 = c.getField("GEMINI_SIM_2");
fields2.setAccessible(true);
mtkDoubleInfo.setSimId_2((Integer) fields2.get(null));
Method m = TelephonyManager.class.getDeclaredMethod(
"getSubscriberIdGemini", int.class);
mtkDoubleInfo.setImsi_1((String) m.invoke(tm,
mtkDoubleInfo.getSimId_1()));
mtkDoubleInfo.setImsi_2((String) m.invoke(tm,
mtkDoubleInfo.getSimId_2()));
Method m1 = TelephonyManager.class.getDeclaredMethod(
"getDeviceIdGemini", int.class);
mtkDoubleInfo.setImei_1((String) m1.invoke(tm,
mtkDoubleInfo.getSimId_1()));
mtkDoubleInfo.setImei_2((String) m1.invoke(tm,
mtkDoubleInfo.getSimId_2()));
Method mx = TelephonyManager.class.getDeclaredMethod(
"getPhoneTypeGemini", int.class);
mtkDoubleInfo.setPhoneType_1((Integer) mx.invoke(tm,
mtkDoubleInfo.getSimId_1()));
mtkDoubleInfo.setPhoneType_2((Integer) mx.invoke(tm,
mtkDoubleInfo.getSimId_2()));
if (TextUtils.isEmpty(mtkDoubleInfo.getImsi_1())
&& (!TextUtils.isEmpty(mtkDoubleInfo.getImsi_2()))) {
mtkDoubleInfo.setDefaultImsi(mtkDoubleInfo.getImsi_2());
}
if (TextUtils.isEmpty(mtkDoubleInfo.getImsi_2())
&& (!TextUtils.isEmpty(mtkDoubleInfo.getImsi_1()))) {
mtkDoubleInfo.setDefaultImsi(mtkDoubleInfo.getImsi_1());
}
} catch (Exception e) {
mtkDoubleInfo.setMtkDoubleSim(false);
return mtkDoubleInfo;
}
mtkDoubleInfo.setMtkDoubleSim(true);
return mtkDoubleInfo;
}
直接異常を判断します.異常証明が出たらMTKプラットフォームではありません.1.2携帯電話がプラットフォームに通じているかどうかを判断する
public static GaotongDoubleInfo initQualcommDoubleSim(Context mContext) {
GaotongDoubleInfo gaotongDoubleInfo = new GaotongDoubleInfo();
gaotongDoubleInfo.setSimId_1(0);
gaotongDoubleInfo.setSimId_2(1);
try {
Class> cx = Class
.forName("android.telephony.MSimTelephonyManager");
Object obj = mContext.getSystemService("phone_msim");
Method md = cx.getMethod("getDeviceId", int.class);
Method ms = cx.getMethod("getSubscriberId", int.class);
gaotongDoubleInfo.setImei_1((String) md.invoke(obj,
gaotongDoubleInfo.getSimId_1()));
gaotongDoubleInfo.setImei_2((String) md.invoke(obj,
gaotongDoubleInfo.getSimId_2()));
gaotongDoubleInfo.setImsi_1((String) ms.invoke(obj,
gaotongDoubleInfo.getSimId_1()));
gaotongDoubleInfo.setImsi_2((String) ms.invoke(obj,
gaotongDoubleInfo.getSimId_2()));
} catch (Exception e) {
e.printStackTrace();
gaotongDoubleInfo.setGaotongDoubleSim(false);
return gaotongDoubleInfo;
}
return gaotongDoubleInfo;
}
同様に異常が発生した場合は、ハイパスデュアルカードプラットフォームではありません.そして論理を整理します
/**
* @param c
* @return
*/
public Object isDoubleSim(Context c) {
GaotongDoubleInfo gaotongDoubleInfo = MultiSimUtility
.initQualcommDoubleSim(c);
MtkDoubleInfo mtkDoubleInfo = MultiSimUtility.initMtkDoubleSim(c);
boolean isGaoTongCpu = gaotongDoubleInfo.isGaotongDoubleSim();
boolean isMtkCpu = mtkDoubleInfo.isMtkDoubleSim();
if (isGaoTongCpu) {
//
return gaotongDoubleInfo;
} else if (isMtkCpu) {
// MTK
return mtkDoubleInfo;
} else {
//
return null;
}
}
この時、私たちは基本的に携帯電話のプラットフォームとカードごとの情報を取得しました.シングルカードの携帯電話で情報を取得すると、コードが貼られなくなります.