'How to rename the file on android R and above

I have an app in which i want to change the name of audio files in music directory. On Api level < 28 i use to do this.

File file = new File(absolutepath);
file.renameTo("new name");

I have tried to look up many resources for the possibility of doing this.
Note: Above provided code works for files generated by my app (On API 30) but if I  unistall the app and install it again then i loose the permission  to rename the file.

Also I dont want to use MANAGE_EXTERNAL_STORAGE permisssion.


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source