hey guys im trying to get phone number of my cell phone using android studio
i have entered permissions in the manifest file i.e.
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
and the code im using is
TelephonyManager tMgr = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
String m=tMgr.getLine1Number();
but when i run my run my app it crashes. i m unable to resolve this problem. kindly help me out. thanks!
the problem is with the statement
String m=tMgr.getLine1Number();
E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.umk.stylefeedback, PID: 32333 java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.umk.stylefeedback/com.example.umk.stylefeedback.NumberConfirmation}: java.lang.SecurityException: getLine1NumberForDisplay: Neither user 10097 nor current process has android.permission.READ_SMS. at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2416) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476) at android.app.ActivityThread.-wrap11(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.app.ActivityThread.main(ActivityThread.java:5417) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) Caused by: java.lang.SecurityException: getLine1NumberForDisplay: Neither user 10097 nor current process has android.permission.READ_SMS. at android.os.Parcel.readException(Parcel.java:1620) at android.os.Parcel.readException(Parcel.java:1573) at com.android.internal.telephony.ITelephony$Stub$Proxy.getLine1NumberForDisplay(ITelephony.java:3731) at android.telephony.TelephonyManager.getLine1NumberForSubscriber(TelephonyManager.java:2101) at android.telephony.TelephonyManager.getLine1Number(TelephonyManager.java:2079) at com.example.umk.stylefeedback.NumberConfirmation.onCreate(NumberConfirmation.java:35) at android.app.Activity.performCreate(Activity.java:6251) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476) at android.app.ActivityThread.-wrap11(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:148) at android.app.ActivityThread.main(ActivityThread.java:5417) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)