0

I am using a dual Sim phone And sometimes I get different IMEI numbers using the following code:

TelephonyManager manager = (TelephonyManager)     
MyApplication.getInstance().getSystemService(Context.TELEPHONY_SERVICE);
String imeiNumber = manager.getDeviceId();

How to resolve this.

Rahul Rastogi
  • 4,486
  • 5
  • 32
  • 51

1 Answers1

1

As per this question, device manufacturers modify Android to support dual SIMs. However, you can use reflection to get the details of both SIMs.

Community
  • 1
  • 1
AesSedai101
  • 1,502
  • 2
  • 23
  • 37