После загрузки файла mp3 через android DownloadManager
загруженные песни не добавляются в базу данных MediaStore быстро. Загруженные песни не отображаются в таких приложениях, как Google Musi c (Play Musi c) и др. c. И телефон нужно перезагрузить. Почему?
DownloadManager downloadManager = (DownloadManager) context.getSystemService(Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(mp3Url));
request.allowScanningByMediaScanner(); // deprecated!
request.setTitle(title);
request.setDescription(description);
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "song name.mp3");
//request.setDestinationUri(Uri.fromFile(new File(filePath))); // no longer access path on api 29 and higher
downloadManager.enqueue(request);