Skip to content

Instantly share code, notes, and snippets.

@aaustin
Created October 23, 2015 19:19
Embed
What would you like to do?
Uri data = this.getIntent().getData();
if (data != null && data.isHierarchical()) {
String uri = this.getIntent().getDataString();
Log.i("MyApp", "Deep link clicked " + uri);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment