I use the following code to download images. All images can be successfully downloaded except one. This image http://www.dailydealster.com/system/illustrations/18089/original/18089s.jpg could not be downloaded. Any one experience such a problem. While debugging the image is downloaded. But at release mode, this image is not downloading
try {
ImageView i = (ImageView)findViewById(R.id.image);
Bitmap bitmap = BitmapFactory.decodeStream((InputStream)new URL(imageUrl).getContent());
i.setImageBitmap(bitmap);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}