I just changed my phone - migrated everything and it works great.
One thing that grinds my gear and that I cannot manage to work out is: how to get file currently set as notification sound on my first Android phone to copy to another one?
What I tried:
- I know, that files that are possible to set as notification sound are supposed to be in a special Notifications folder, but file is simply not there. In Settings the file is visible as currently set, but when I try to change the file for notification, it's not on the list.
- This file WORKS (sound of notification works fine with this file), although searching for it with special (SolidExplorer) or integrated file managers does not give any results - file not found.
My phone: Samsung Galaxy A7 (2018), Android 10 (newest software possible for me), not rooted or anything (work phone that I cannot mess around with).
This is driving me crazy. Looks like file was "cached" somehow and works (so it must exist somewhere in memory), but it's unsearchable. After restart - notification sound still works with this file.
Any help would be appreciated.
Adam
adb shell
, thensettings list system | grep notification
. In the output look for a key/name that appears like notification_sound or notification_audio. Next to that would be a = sign followed bycontent://media/SOME_ABC
. In that case, note down that completecontent://...
path. Now run,content query --uri CONTENT_PATH
. Replace CONTENT_PATH with the one you noted down above. In the output, look for "_data" or "data" or "file" or something like that. That should tell you the exact path where the notification sound can be found. Report your findings/errors here. – Firelord Apr 11 '23 at 19:23