com.adjust.sdk.AdjustReferrerReceiver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adjust-android-criteo Show documentation
Show all versions of adjust-android-criteo Show documentation
The Criteo plugin for Adjust SDK for Android
package com.adjust.sdk;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import static com.adjust.sdk.Constants.REFERRER;
// support multiple BroadcastReceivers for the INSTALL_REFERRER:
// https://appington.wordpress.com/2012/08/01/giving-credit-for-android-app-installs/
public class AdjustReferrerReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String rawReferrer = intent.getStringExtra(REFERRER);
if (null == rawReferrer) {
return;
}
Adjust.getDefaultInstance().sendReferrer(rawReferrer, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy