On Android, using Java, you can retrieve the device user's phone number with the following code:
TelephonyManager tMgr = (TelephonyManager)mAppContext.
getSystemService(Context.TELEPHONY_SERVICE);
String numero = tMgr.getLine1Number();...
asked by
19.10.2017 / 16:17