I am currently using this:
TelephonyManager telephonyManager =
(TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
String phoneNumber = telephonyManager.getLine1Number();
It works as in 85% of cases. But on some phones it returns nothing. I believe that this is due to differences in SIM cards.
Is there anywhere else on the Android platform to reliably get this information?
thank
source
share