for (int k = 0; k < file.length; k++) {
Bitmap myBitmap= null;
myBitmap = BitmapFactory.decodeFile(file[k].getAbsolutePath());
bitMap.add(myBitmap);
}
My App is crashing when i am using this code for storing all image in bitmap Arraylist, For lesser number of image it works fine, but for more then 30 images it crashing.