user1241429
user1241429

Reputation: 36

Phone_State in ADB

I am trying to track any incoming/Outgoing calls on my Android phone using ADB. I see that you can use Phone_state from Telephony Manager to track what is the state of the telephone in an app. How can I do this from ADB?

Thanks for reading!

Upvotes: 0

Views: 1628

Answers (2)

Alex P.
Alex P.

Reputation: 31716

dumpsys telephony.registry | grep mCallState=

Upvotes: 1

John
John

Reputation: 8946

Use

  adb logcat

And check what is happening in the backend of the phone.

Upvotes: 0

Related Questions