Possible Duplicate:
Get Phone Number in Android SDK
I am trying to get the phone number in android.
But it is returning null.
Here is my code.
private String getMyPhoneNumber(){
TelephonyManager mTelephonyMgr;
mTelephonyMgr = (TelephonyManager)
getSystemService(Context.TELEPHONY_SERVICE);
return mTelephonyMgr.getLine1Number();
}
I have added in my manifest
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
Waiting for your reply and thanks in advance