Hey there! Yes, I've actually noticed this change on Safari recently. It seems like Safari is catching up with other browsers in terms of supporting web animations. I'm curious to see how developers will adapt to this requirement and how it will affect the overall user experience. Have you had a chance to test it out on your projects yet
https://ipcamtalk.com/threads/blue-iris-ui3.23528/page-194#post-754082
https://1dolarberaparupiah.com/
Post
Replies
Boosts
Views
Activity
You can use ContactsContract.Contacts which has a column CUSTOM_RINGTONE (which is a read/write column!) for this purpose.
Uri contactUri;
ContentValues values = new ContentValues();
values.put(ContactsContract.Contacts.CUSTOM_RINGTONE,
newRingtoneUri.toString());
context.getContentResolver().update(contactUri, values, where, args);