DownloadManager VS Native download implementation?

I am creating an application in which I need to upload large files.

The application must support:
-Download large files (off course ..)
-Change broken downloads
-When downloading progress notification
-Download in the background (when the user is not in the application)
-Manualy pause / resume of downloads

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

early!

+6
source share
2 answers

Well, I finally implemented my own download manager, as this is the best way to make it flexible for my needs.

-2
source

Of course, this is much simpler and probably less prone to errors with the Android DownloadManager. However, keep in mind that Android 2.3 requires not so much a problem as I should think).

+1
source

All Articles