mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
36
mobile/android/thirdparty/com/adjust/sdk/IActivityHandler.java
vendored
Normal file
36
mobile/android/thirdparty/com/adjust/sdk/IActivityHandler.java
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
package com.adjust.sdk;
|
||||
|
||||
import android.net.Uri;
|
||||
|
||||
import org.json.JSONObject;
|
||||
|
||||
/**
|
||||
* Created by pfms on 15/12/14.
|
||||
*/
|
||||
public interface IActivityHandler {
|
||||
public void init(AdjustConfig config);
|
||||
|
||||
public void trackSubsessionStart();
|
||||
|
||||
public void trackSubsessionEnd();
|
||||
|
||||
public void trackEvent(AdjustEvent event);
|
||||
|
||||
public void finishedTrackingActivity(JSONObject jsonResponse);
|
||||
|
||||
public void setEnabled(boolean enabled);
|
||||
|
||||
public boolean isEnabled();
|
||||
|
||||
public void readOpenUrl(Uri url, long clickTime);
|
||||
|
||||
public boolean tryUpdateAttribution(AdjustAttribution attribution);
|
||||
|
||||
public void sendReferrer(String referrer, long clickTime);
|
||||
|
||||
public void setOfflineMode(boolean enabled);
|
||||
|
||||
public void setAskingAttribution(boolean askingAttribution);
|
||||
|
||||
public ActivityPackage getAttributionPackage();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue