Skip to content Skip to sidebar Skip to footer

Android Development - Call State Of The Phone

I'm new to Android and I need to read the call state of the phone. I receive error when the app runs (stopped): package com.example.droid1; import android.app.Activity; import and

Solution 1:

check your manifest.

Did you put this permission

<uses-permissionandroid:name="android.permission.READ_PHONE_STATE" />

?

Post a Comment for "Android Development - Call State Of The Phone"