2

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.

Siavash
  • 2,813
  • 4
  • 29
  • 42

1 Answers1

3

You can capture the output using following command:

adb shell logcat | grep ims_reg_state
schlebe
  • 3,387
  • 5
  • 37
  • 50
Filipe Medeiros
  • 67
  • 1
  • 10
  • Hello Filipe, I have accepted your answer in formatting code using {} icon. Next time you take time to answer, try to format code or command as code so that answer is more readable. Thanks for the answer. – schlebe Feb 05 '19 at 20:22
  • Thanks for the tips! It was my first answer and I'll be more careful next time – Filipe Medeiros Feb 05 '19 at 21:15