I'm creating a DownloadManager.Request like this:
DownloadManager.Request request = new DownloadManager.Request(url);
request.setDescription(fileName);
request.setTitle("Title");
request.setDestinationInExternalPublicDir(sourceDir, fileName);
downloadManager.enqueue(request);
but I'm getting in log this warning:
Missing request for path [path]
Do you know what it means? How can I solve it?