hi i try register user and then with user name update profile its ok on editor but when i build for android its not working .
userService = sp.BuildUserService(); // Initializing UserService.
Username = _User.text;
User user = userService.GetUser(Username);
User.Profile profileObj = new User.Profile(user);
// profileObj.SetCountry("India");
// profileObj.SetCity("GGN");
profileObj.SetFirstName("Siavosh");
profileObj.SetLastName("Inanlou");
// profileObj.SetHomeLandLine("1234567890");
//profileObj.SetMobile(_Phone);
// profileObj.SetDateOfBirth(new DateTime(Day,Month,Day));
// profileObj.SetOfficeLandLine("0987654321");
// profileObj.SetState("UP");
userService.CreateOrUpdateProfile(user, callBack);