I want to download file from internet in my Android application. I have used DownloadManager class and it works correctly on Gingerbread and above, but not on Froyo and below.
How can i use DownloadManager in api levels lower than 9?
How can i use DownloadManager in api levels lower than 9?
You can't. You will need to download the file yourself, using HttpUrlConnection
or HttpClient
.