Skip to content

Instantly share code, notes, and snippets.

@aaustin
Created October 23, 2015 23:12
Embed
What would you like to do?
@Override
public void onReceive(Context context, Intent intent) {
String rawReferrerString = intent.getStringExtra("referrer");
if(rawReferrerString != null) {
Log.i("MyApp", "Received the following intent " + rawReferrerString);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment