I write (write, not download, to be precise it is the dump of a SQLite db of my App) a file on the Environment.DIRECTORY_DOWNLOADS directory.
File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
File file = new File(path, "db.csv");
If I browse the phone with a file browser, I can see correctly the file in the
/storage/emulated/0/Download
Directory, together with the other downloads.
But if I open the Downloads App it does not show...
What do I need to do to have the file shown in the Downloads App as well?

