mudddassir ahmed
mudddassir ahmed

Reputation: 31

How to know that IMS registration is happened in SIM1 or SIM2 via adb logs for android device

How to know that IMS registration is happened in SIM1 or SIM2 via ADB logs.

If i have attached SIM1 to VoLTE and SIM2 to 3G , from runtime ADB logs how can i verify that. I need a solution to create for my automation script, so it can detect the IMS registration during runtime.

Upvotes: 3

Views: 2134

Answers (1)

Filipe Medeiros
Filipe Medeiros

Reputation: 77

You can capture the output using following command:

adb shell logcat | grep ims_reg_state

Upvotes: 3

Related Questions