79288809

Date: 2024-12-17 17:19:32
Score: 0.5
Natty:
Report link

You have to add Serialized name to your models so that it works when generating the apk or bundle.

public class ErrorResponse {
  @SerializedName("Error")
  private String Error;

  public String getError() {
    return Error;
  }

  public void setError(String error) {
    Error = error;
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Leo