1

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?

Amit Jayant
  • 2,501
  • 2
  • 29
  • 38

1 Answers1

0

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.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491