Skip to content

Instantly share code, notes, and snippets.

@olegflo
Created October 20, 2012 13:43
Show Gist options
  • Save olegflo/3923306 to your computer and use it in GitHub Desktop.
Save olegflo/3923306 to your computer and use it in GitHub Desktop.
qbdoc
// register user
QBUsers.signUp("indianajones", "indianapassword", new QBCallbackImpl() {
@Override
public void onComplete(Result result) {
// result comes here
// check if result success
if (result.isSuccess()) {
// do stuff you need
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment