AppsFlyerRequestListener

개요

인터페이스를 구현하고 등록하여 앱스플라이어 서버에 대한 AppsFlyerRequestListener 요청을 가로챕니다 start.

인터페이스 선언

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

인터페이스 가져오기

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

메서드

onSuccess

Method signature

void onSuccess();

콜백 파라미터
이 콜백은 파라미터를 반환하지 않습니다.

설명
성공적으로 응답되면 트리거됩니다.

onError

Method signature

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

설명
성공적으로 응답되면 트리거됩니다.

콜백 파라미터

유형이름설명
intcode오류 코드입니다.
Stringerror오류 메시지입니다.