アプリが Google-Chrome-ARC で実行される場合、いくつかの異なる動作が必要です。
現在、IMEI を取得していますが、ARC では null です。
public boolean isArc(Context context) {
TelephonyManager tm = ((TelephonyManager)context
.getSystemService(Context.TELEPHONY_SERVICE));
String imei = tm.getDeviceId();
return imei == null;
}
しかし、それは信頼できますか?