Hi,
Which version of IMC web do you have ? Is it the last one 2.6.0 ?
If not go to Android find java file DatabaseHandler.java
and replace at L:538
//JSONObject cpOb = new JSONObject(CategParams);
String CategIconPath = CategParams; // cpOb.getString("image");
to
JSONObject cpOb = new JSONObject(CategParams);
String CategIconPath = cpOb.getString("image");
the old IMC web had the filename of the category image within a JSON object whereas the new one does not.
BR,
Dimitrios