Skip to content

Instantly share code, notes, and snippets.

@pwntester
Created November 17, 2012 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pwntester/4096498 to your computer and use it in GitHub Desktop.
Save pwntester/4096498 to your computer and use it in GitHub Desktop.
b
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch(requestCode) {
case (STATIC_INTEGER_VALUE) : {
if (resultCode == Activity.RESULT_OK) {
Log.w("alvms", "4Goats SessionToken: " + data.getStringExtra("sessionToken"));
}
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment