I am working on one application and getting product images from the server. Currently I am saving those images into the SQLite database after converting them into byte a
Storing app specific things on SD Card may not be the right way.. You should store images on
// it will reside in data/data/com.package.name
String path = getApplicationContext().getFilesDir() + "/";
File imagesFolder = new File(path);
imagesFolder.mkDir();
and put image files here in that folder.. So SD Card dependency can be removed.