Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android

This commit is contained in:
Matt A. Tobin 2019-04-23 15:32:23 -04:00 committed by Roy Tam
commit c9b411d6cd
3891 changed files with 0 additions and 428084 deletions

View file

@ -1,35 +0,0 @@
package com.adjust.sdk;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import static com.adjust.sdk.Constants.ENCODING;
import static com.adjust.sdk.Constants.MALFORMED;
import static com.adjust.sdk.Constants.REFERRER;
// support multiple BroadcastReceivers for the INSTALL_REFERRER:
// http://blog.appington.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;
}
String referrer;
try {
referrer = URLDecoder.decode(rawReferrer, ENCODING);
} catch (UnsupportedEncodingException e) {
referrer = MALFORMED;
}
AdjustInstance adjust = Adjust.getDefaultInstance();
adjust.sendReferrer(referrer);
}
}