Last active
December 15, 2015 18:39
-
-
Save evernotegists/5305383 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try { | |
| mEvernoteSession.getClientFactory().createUserStoreClient().getUser( | |
| new OnClientCallback<User>() { | |
| @Override | |
| public void onSuccess(User user){ | |
| Log.v(LOGTAG, "User: "+user.getUsername()); | |
| } | |
| @Override | |
| public void onException(Exception exception) { | |
| Log.e(LOGTAG, exception.toString()); | |
| } | |
| } | |
| ); | |
| } catch (Exception e) { | |
| Log.v(LOGTAG, e.toString()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment