antoinetrouve / MyQCM_Android

Android application about MyQCM project
0 stars 0 forks source link

Insert User in database locale #3

Closed antoinetrouve closed 8 years ago

antoinetrouve commented 8 years ago

Problem with UserSQLiteAdapter when attempt to insert user in database.

See connection's process :

TO DO

antoinetrouve commented 8 years ago

Problem solved

A problem was detected into User class on serialized user attribut SerializedName attribut have to be the same than json attribut @SerializedName("lastlogin") @Expose(serialize = true, deserialize = true) private Date LastLogin;

@SerializedName("updated_at") @Expose(serialize = true, deserialize = true) private Date UpdatedAt;