I tried following the instructions in https://developer.samsung.com/sdp/blog/en/2024/04/30/connect-galaxy-watch-to-android-studio-over-wi-fi
But I ran into some issues, so here is how I solved it...
First, let's prepare y
our Galaxy Watch for debugging:
Return to Settings and find the newly added Developer options menu
Enable the following options:
ADB debugging
Turn off automatic Wi-Fi
Wireless debugging
Now here's where I ran into issues. The standard instructions often assume that ADB is already accessible from your terminal, but that's not always the case, especially in certain Windows environments.
If you encounter an error like this:
adb : The term 'adb' is not recognized as the name of a cmdlet, function, script file, or operable program.
Here's the solution:
cd $env:LOCALAPPDATA\Android\Sdk\platform-tools
.\adb devices
This should show a list of currently connected devices (which might be empty for now).\adb pair IP_ADDRESS:PAIRING_PORT
Replace IP_ADDRESS and PAIRING_PORT with the values shown on your watch's screen.\adb connect IP_ADDRESS:CONNECTION_PORT
The connection port is typically 5555 if not specified otherwiseTo confirm your watch is properly connected:
.\adb devices
again