What makes us different from other similar websites? › Forums › Tech › Samsung Galaxy Watch Update [Custom Ringtone/Notification] not working [FIXED]
- This topic has 5 replies, 2 voices, and was last updated 1 month, 3 weeks ago by
thumbtak.
-
AuthorPosts
-
January 12, 2023 at 6:13 pm #6857
thumbtak
KeymasterMy custom ringtone and notification sound was not working. I fixed it by restarting the watch, and going to the Galaxy app and listening to all the default sounds until I heard mine. It seems users are reporting a random default sound becoming the custom one.
January 21, 2023 at 8:39 pm #6863thumbtak
KeymasterIf you do not have the custom sound on your watch, you can use this link to be able to help you get the sound on your watch. Selecting the ringtone will have to be on your phone through the app, but this works.
https://www.droidwin.com/add-custom-notifications-ringtones-alarms-on-galaxy-watch-4-5/
June 25, 2023 at 10:21 pm #6982thumbtak
KeymasterThis is the new way you have to do it.
- Install Android SDK
- Download Custom Tone(s)
- Enable ADB Debugging in Galaxy Watch 4/5
- Head over to Settings > About Watch > Software and tap Software Version 7 times.
- Then go to Developer Options and enable the toggle next to ADB Debugging.
- After that, scroll down a little bit and enable the toggle next to Debug over WiFi.
- It will now bring up the IP Address, note it down somewhere [do not include the port number, i.e. values after the colon].
- For example, if the entire value is 192.168.1.3:5555, then your IP will be 192.168.1.3.
- Connect Galaxy Watch 4/5 to PC via ADB Command.
$ adb connect IP
- You will now get a prompt on your watch, tap OK or Always Allow from this computer.
- Finally, execute the below command to verify the ADB Connection between your watch and PC
$ adb devices
- You will now get your IP Address and port number, followed by the ‘device’ keyword. This signifies that the connection has been successfully established.
- Send Custom Tones to Watch via ADB
- CD to the sound file on your computer
- Remove any spaces in the sound file and make it shorter named, if needed.
$ adb push file_name.mp3 /sdcard/Ringtones/
$ adb push file_name.mp3 /sdcard/Notifications/
$ adb push file_name.mp3 /sdcard/Alarms/
- For example, I’m transferring the Droidwin.mp3 ringtone file, so the command in my case will be:
$ adb push Droidwin.mp3 /sdcard/Ringtones/
- Refresh Watch Sound Storage
- Now execute the below command to refresh the watch’s sound storage settings so that it is able to identify the newly added sound. Make sure to replace the file type [notifications, ringtones, or alarm] and filename accordingly in the below command:
$ adb shell am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file:///storage/emulated/0/Ringtones/Droidwin.mp3 >nul
- Now execute the below command to refresh the watch’s sound storage settings so that it is able to identify the newly added sound. Make sure to replace the file type [notifications, ringtones, or alarm] and filename accordingly in the below command:
- Bring up Sound File ID
- You will now have to bring up the file ID for the newly added sound. So use the below command for that:
$ adb shell content query --uri content://media/external/audio/media/ --projection _id:_display_name
- For example, in my case the file name is Droidwin.mp3 and the corresponding ID is 38.
- You will now have to bring up the file ID for the newly added sound. So use the below command for that:
- Add Sound to System
- Finally, you will now have to add that file ID to the system. In other words, add that custom sound to the system sound settings.
- So use the command depending on the file that you want to add. Likewise, replace ID according to the value that you got in the above command:
- Ringtones –>
$ adb shell settings put system ringtone content://media/external/audio/media/ID
Notifications –>$ adb shell settings put system notification_sound content://media/external/audio/media/ID
Alarms –>$ adb shell settings put system alarm_alert content://media/external/audio/media/ID
- Ringtones –>
- For example, I’m adding a ringtone named Droidwin.mp3 with File ID 38, so the above command will transform to:
$ adb shell settings put system ringtone content://media/external/audio/media/38
- The sound has now been added to your watch. You could access it from Settings > Sounds and Vibrations > Ringtones/Notification Sounds.
- That’s it. These were the steps to add custom notifications, ringtones, and alarm sounds on your Galaxy Watch 4/5.
December 25, 2024 at 5:23 pm #7679thumbtak
KeymasterNew ADB method for pushing files and deleting files.
$ ping -c 4 <IP> && adb pair <IP>:<PORT>
$ adb connect <IP>:<PORT>
$ adb push <FILE> /sdcard/<LOCATION>
$ adb shell rm -f /sdcard/<LOCATION>/<FILE>
-
This reply was modified 1 month, 3 weeks ago by
thumbtak.
December 27, 2024 at 7:21 pm #7684Kevin Davis
ParticipantDo you need to use
adb connect
if the device is USB connected?Also, I’m using the Android Studio SDK to emulate a platform similar to my phone on my laptop. It seemed that I was able to seamlessly execute
adb backup
and
adb restore
commands with various flags just by having the device on usb (or for lack of a better term, “local” to the environment.)Any thoughts? Sorry, I am kind of an android noob. I haven’t messed with any of this stuff since rooting my android 2.0 phone many years ago.
-
This reply was modified 1 month, 3 weeks ago by
Kevin Davis.
-
This reply was modified 1 month, 3 weeks ago by
Kevin Davis. Reason: formatting lol
December 27, 2024 at 8:39 pm #7687thumbtak
Keymaster$ ping -c 4 <IP> && adb pair <IP>:<PORT>
I (and others online) reported that a ping of 4 before makes pair work on newer devices. Then run the next few commands.
$ adb connect <IP>:<PORT>
$ adb shell pm list packages
$ adb shell pm path <package_name>
$ adb pull <full_path_to_apk> <destination_folder_on_your_computer>
-
This reply was modified 1 month, 3 weeks ago by
thumbtak. Reason: Fixed commands after a edit deleted part of them
-
AuthorPosts
- You must be logged in to reply to this topic.