Questions tagged [download-manager]

A download-manager is often used for handling long-running downloads, and might support pausing, interrupting and resuming.

The download manager will conduct the download in the background, taking care of HTTP interactions and retrying downloads after failures or across connectivity changes and system reboots.

465 questions
2
votes
0 answers

Server not allowing multiple connections to Internet Download Manager

I have written a code for enabling multiple connection download(Range-Requests) through Internet Download Manager and it works fine in my local system(it is able to create multiple connections and download a file.) but it's not able to create more…
Sriharsha
  • 150
  • 3
  • 16
2
votes
3 answers

Xamarin-CrossDownloadManager - waiting for download file

I use Xamarin-CrossDownloadManager (https://github.com/SimonSimCity/Xamarin-CrossDownloadManager) and I need waiting for download a file. I have this code: private static async Task FileDownloadedTest(string LinkToFile, string PathFile) { …
luki
  • 49
  • 1
  • 9
2
votes
0 answers

Android unable to open file after download

I am downloading a pdf file using DownloadManager class. It works fine on a Huawei GRA-L09 with android 5.0.1 but on my Nexus 6p with android 7.1.1 I experience the following behavior: After the file is downloaded I try to open it via intent…
2
votes
1 answer

Android view image downloaded with DownloadManager

I am downloading images from internet with DownloadManager and want to display them in Gallery app. I am saving the images to default 'Download' dir. Download works fine, I get notified of success. The gallery app opens, but doesn't display the…
2
votes
1 answer

Android downloading via Retrofit VS Download Manager

I need to download an mp3 file from a server, and I was wondering which was the best way to do it. What are the differences between downloading via Retrofit 2 and via the download manage? The file I want to download is a song which length can…
Azeros
  • 21
  • 4
2
votes
1 answer

Download images from google drive

I have multiple google drive images url in the text file, I want to download each image from its url, Here catch is I want to download and save images to it's original name. Here is the reference Can anyone help me with the solution Alternate…
Neo
  • 153
  • 1
  • 2
  • 9
2
votes
1 answer

Android tv DownloadManager with progress dialog

I'm struggling with DownloadManager on androidtv, I finally could implement download with the download manager, but I don't know the progress of the download process until it finishes, I would like implement download progress dialog. I found the…
user773456
  • 611
  • 2
  • 9
  • 14
2
votes
0 answers

how to get status of downloads using HCDownload

I am using the code below to download multiple files and the files are getting downloaded properly. HCDownloadViewController *dlvc = [[HCDownloadViewController alloc] init]; dlvc.downloadDirectory = @"/var/mobile/Library/Downloads"; dlvc.delegate =…
Fahim Parkar
  • 30,974
  • 45
  • 160
  • 276
2
votes
1 answer

Android : How to pause and resume using DownloadManager?

this is my code and i want to add resumable feature but i couldn't is it posible? downloadManager = (DownloadManager)getSystemService(DOWNLOAD_SERVICE); Uri Download_Uri =…
hugerde
  • 919
  • 1
  • 12
  • 27
2
votes
0 answers

Audio Caching and Download Xamarin Android

I am looking for caching Audio file and Download manager for Xamarin Android from a url. Using nuget or build in library.
Ganesh Cauda
  • 969
  • 6
  • 21
2
votes
1 answer

How can I make an apk auto install when download completes

Hi guys was wondering if there was a bit of code I could use that would make an app auto install once the download completes? My app has a download section with in it. I was using Google Drive to handle the downloads. but I am encountering issues…
P9p studios
  • 69
  • 1
  • 8
2
votes
1 answer

Cancelling ongoing download does not remove notification

I am using Android DownloadManager, and have the ability to cancel ongoing download. This call also removes download progress from notification bar on all device I tested but from Nexus 5(running Android 5.0.1). Behavior is download is canceled but…
mkso
  • 3,178
  • 4
  • 27
  • 35
2
votes
1 answer

Android:pathpattern for intercepting file download intents from browser

I`m trying to make something like downloadmanager and i got trouble with intent-filters. My intent filter for catching file download intents is like this:
2
votes
0 answers

Download Manager issue in Samsung S6 model. how to fix this issue?

I'm downloading the .txt, .doc, .pdf etc files from my android application. Its working fine in all devices but I'm unable to download the files in S6 device. I have used the following code let me know if any changes/modification required. …
2
votes
3 answers

Android intent-filter to be notified of an attempt to view a CSV file in the Download Manager

What's the required magic incantation to register your app to be notified that a user is trying to view a CSV file they've previously downloaded via the Download manager. I've had a brief play and the following filter will happily intercept…