mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
This commit is contained in:
parent
85045bf6be
commit
c9b411d6cd
3891 changed files with 0 additions and 428084 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue