Show notification when downloading file

This commit is contained in:
Matte23
2021-02-19 11:15:37 +01:00
parent a12c9539a1
commit 57a9526c62

View File

@@ -192,6 +192,7 @@ class MainActivity : AppCompatActivity(), CircularLetterAdapter.AdapterCallback
val request = DownloadManager.Request(Uri.parse(fileToDownload!!.url)) val request = DownloadManager.Request(Uri.parse(fileToDownload!!.url))
request.setTitle(fileToDownload!!.name) request.setTitle(fileToDownload!!.name)
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED)
request.setDestinationInExternalPublicDir( request.setDestinationInExternalPublicDir(
Environment.DIRECTORY_DOWNLOADS, Environment.DIRECTORY_DOWNLOADS,
"Circolapp/$safeFilename.$extension" "Circolapp/$safeFilename.$extension"