Register User To Quickblox Users From Android
I'm trying to use QuickBlox in my android application, I read the guide and imported the sample and everything worked fine. I changed a few things that user can login using EditTex
Solution 1:
Here's the solution :
QBUsers.signUp(user, new QBEntityCallbackImpl<QBUser>() {
public void onSuccess(QBUser result, Bundle params) {
// success
}
public void onError(List<String> errors) {
AlertDialog.Builder dialog = new AlertDialog.Builder(
SplashActivity.this);
dialog.setMessage(
"register errors: " + errors)
.create().show();
}
});
Post a Comment for "Register User To Quickblox Users From Android"