AppsFlyerRequestListener

总览

Intercept requests to the AppsFlyer servers by implementing the AppsFlyerRequestListener interface and registering it with start.

界面声明

public interface AppsFlyerRequestListener {
    void onSuccess();
    void onError(int code, @NonNull String error);
}

导入界面

import com.appsflyer.attribution.AppsFlyerRequestListener;
import com.appsflyer.attribution.AppsFlyerRequestListener

方法

onSuccess

方法签名

void onSuccess();

回调参数
此回调不返回任何参数。

描述
成功响应时触发。

onError

方法签名

void onError(int code, @NonNull String error);

描述
成功响应时触发。

回调参数

类型名称描述
intcode错误代码。
Stringerror错误信息。