Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DownloadManager VS Own download implementation?

I'm building an application in which I need to download large files.

The application needs to support:
-Download big files (off course..)
-Resume broken downloads
-Be notified about download progress
-Download in the background (when user isn't in the app)
-Manualy pause/resume of downloads

Should I use Android's DownloadManager or implement my own download manager?

thanks in advance!

like image 770
dor506 Avatar asked Mar 06 '13 07:03

dor506


1 Answers

Of course it is much easier and probably less error-prone to go with the Android DownloadManager. Be aware though, that it needs Android 2.3 (not so much of a problem anymore I should think).

like image 98
koljaTM Avatar answered Sep 20 '22 16:09

koljaTM