I'll try to explain my problem as clear as I can.
I have an web api that returns me an byte[].
When I convert that to a Byte[] and feed it to BitmapFactory.decodeByteArray() it gives me null, but it's an valid byte array.
These images returned by the web api are user submitted logos of their companies and I can't control the formats on which they are uploaded. Is there a way to make it onto a valid bitmap or drawable?
Edit: I realized I had an " at start and at the end of the string, I removed them in my work code and I'm still having the issue.