Charset support - leocadiotine/Dumbledroid GitHub Wiki

Dumbledroid supports different charset encodings. The default is UTF-8, but you can change to the one used by your web service.

##How it works To choose a charset, just pass it as a parameter to the AbstractModel constructor:

public class YourModel extends AbstractModel {

    public HttpCodes() {
        super(YOUR_URL, "iso-8859-1");
    }

    @Override
    protected DataType getDataType() {
        return DataType.JSON;
    }
}