hi , my problem is that the information i change through the dashboard is not applied in my client. When the user registers, these objects are created for him:
ParseUser user = new ParseUser();
user.setUsername(username.getText().toString());
user.setPassword(pass.getText().toString());
user.setEmail(email.getText().toString());
// other fields can be set just like with ParseObject
user.put("isban", false);
user.put("league",12);
user.put("point",0);
user.signUpInBackground():
when i change the value of isban in dashboard it also changes in the android client, but for other objects, (league , point) the default value that was set during registration remains the same.