I want to display my phone number on the Android phone. I am using the following code for displaying the number on the phone, but I am getting a null value on the phone. Here is my code:
TelephonyManager tm=(TelephonyManager) mGap.getApplicationContext().getSystemService(Context.TELEPHONY_SERVICE);
String imeiId=tm.getLine1Number();
I displayed imeiId on Device but it is displaying null. Is there any alternative for this problem?
I have added the below code in android manifest .xml file:
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
But it's showing null on the device. I am new to Android PhoneGap applications, so what am I doing wrong?