mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-29 10:18:32 +00:00
21 lines
452 B
Java
21 lines
452 B
Java
package com.adjust.sdk;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
/**
|
|
* Created by pfms on 15/12/14.
|
|
*/
|
|
public interface IAttributionHandler {
|
|
public void init(IActivityHandler activityHandler,
|
|
ActivityPackage attributionPackage,
|
|
boolean startPaused);
|
|
|
|
public void getAttribution();
|
|
|
|
public void checkAttribution(JSONObject jsonResponse);
|
|
|
|
public void pauseSending();
|
|
|
|
public void resumeSending();
|
|
}
|