I'm trying to do something like this:
Bitmap bmp;
BitmapFactory.Options.inMutable = true;
bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
But I'm getting an error under BitmapFactory.Options.inMutable = true;
Cannot make a static reference to the non-static field BitmapFactory.Options.inMutable
I'm sure the solution is probably something simple, but I'm unsure of why it's not working.