AppsFlyerConversionListener
总览
The AppsFlyerConversionListener
is a public interface that lets you listen to conversions.
回到SDK参考索引。
AppsFlyerConversionListener
The AppsFlyerConversionListener
interface requires you override the following methods:
必须重写所有方法。否则会产生编译错误。
公共方法
onAppOpenAttribution
方法签名
void onAppOpenAttribution(java.util.Map<java.lang.String,java.lang.String> attributionData)
描述
This callback will NOT be invoked if AppsFlyerLib.subscribeForDeepLink is used.
回调参数
类型 | name | 描述 |
---|---|---|
Map<String, String> | attributionData |
返回
void
onAttributionFailure
方法签名
void onAttributionFailure(java.lang.String errorMessage)
描述
This callback will NOT be invoked if AppsFlyerLib.subscribeForDeepLink is used.
回调参数
类型 | name | 描述 |
---|---|---|
String | errorMessage |
返回
void
onConversionDataSuccess
方法签名
void onConversionDataSuccess(java.util.Map<java.lang.String,java.lang.Object> conversionData)
描述
转化数据解析成功时触发。
回调参数
类型 | name | 描述 |
---|---|---|
Map<String, Object> | conversionData | You must explicitly handle null keys. |
返回
void
.
onConversionDataFail
方法签名
void onConversionDataFail(java.lang.String errorMessage)
描述
转化数据解析失败时触发。
回调参数
类型 | name | 描述 |
---|---|---|
String | errorMessage |
返回
void
.
已更新 11 months ago