I have an immutal Bitmap and I'am not able to resize (Immutable bitmap crash error).
myImage = task.execute(List1.get(i)).get();
myImage.setWidth(400);
myImage.setHigth(400);
List2.add(myImage);
Error: only mutable bitmaps may be reconfigured
Does anyone have a neat solution for this?