Skip to content

Instantly share code, notes, and snippets.

@extremecoders-re
Created December 23, 2019 07:45
Show Gist options
  • Save extremecoders-re/9055d74c5513ee7137ee2832f7a9df57 to your computer and use it in GitHub Desktop.
Save extremecoders-re/9055d74c5513ee7137ee2832f7a9df57 to your computer and use it in GitHub Desktop.
Turn on WiFi calling using ADB

Some Android Phones support WiFi calling but there's no option in the UI to turn on this feature. For such phones, you can use one of following techniques

Show WiFI Calling Dialog using ADB

In Setting App

$ am start -a android.intent.action.MAIN -n com.android.settings/.Settings\$WifiCallingSettingsActivity

In Carrier Services

 $ am start -a android.intent.action.MAIN -n com.google.android.ims/.ui.WifiCallingSettingsActivity

Using a third party app

Download the Activity Launcher app (https://play.google.com/store/apps/details?id=de.szalkowski.activitylauncher) from Playstore. Search for "wificalling" (Without space).

@extremecoders-re
Copy link
Author

@GSM9737

  1. Open a Command Prompt.
  2. Run adb shell in the command prompt. This will open a shell to the connected Android phone.
  3. Run am start -a android.intent.action.MAIN -n com.android.settings/.Settings\$WifiCallingSettingsActivity in the same command prompt. This should open the WiFi Calling settings on the phone.
  4. If Step 3 did not work, run am start -a android.intent.action.MAIN -n com.google.android.ims/.ui.WifiCallingSettingsActivity

@GSM9737
Copy link

GSM9737 commented Feb 8, 2025

@GSM9737

  1. Open a Command Prompt.
  2. Run adb shell in the command prompt. This will open a shell to the connected Android phone.
  3. Run am start -a android.intent.action.MAIN -n com.android.settings/.Settings\$WifiCallingSettingsActivity in the same command prompt. This should open the WiFi Calling settings on the phone.
  4. If Step 3 did not work, run am start -a android.intent.action.MAIN -n com.google.android.ims/.ui.WifiCallingSettingsActivity

Hello
Thanks , but I got this massage can u chek it please

Screenshot 2025-02-08 101116 Screenshot 2025-02-08 101116

@extremecoders-re
Copy link
Author

@GSM9737
After adb devices

Run adb shell

@GSM9737
Copy link

GSM9737 commented Feb 8, 2025

Screenshot 2025-02-08 102501

doesnt work

@GSM9737
Copy link

GSM9737 commented Feb 8, 2025

Did I do it right?

@extremecoders-re
Copy link
Author

@GSM9737 Yes you are doing it correctly.

Also try running the second command if the first does not work.

am start -a android.intent.action.MAIN -n com.google.android.ims/.ui.WifiCallingSettingsActivity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment