Skip to content

Instantly share code, notes, and snippets.

@Pulimet
Created December 4, 2014 11:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pulimet/a52bd36a3ff32e8848aa to your computer and use it in GitHub Desktop.
Save Pulimet/a52bd36a3ff32e8848aa to your computer and use it in GitHub Desktop.
To get information on an undocumented (3rd-party) intent:
for (String key : bundle.keySet()) {
Object value = bundle.get(key);
Log.d(TAG, String.format("%s %s (%s)", key,
value.toString(), value.getClass().getName()));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment