- 确认按照官方文档,成功接入appsflyer(可在使用手机连接android studio? 查看日志,是否有appsflyer 相关日志)
- 官网申请devkey,初始化appsflyer
AppsFlyer.initSDK(devKey, appID, null); //
AppsFlyer.setIsDebug(shouldEnable); // 正式包请去掉debug模式
AppsFlyer.startSDK(); - 编写发送事件代码,确保代码正确执行
public static void SendAFEvent(string name, Dictionary<string, string> extraInfos)
{
Dictionary<string, string> extraInfosTmp = new Dictionary<string, string>();
foreach (var extraInfo in extraInfos)
{
extraInfosTmp.Add(extraInfo.Key, extraInfo.Value.ToString());
}
AppsFlyer.sendEvent(name, extraInfosTmp);
} -
5分钟左右,前往af后台查看事件,(注:不需要谷歌服务和梯子) -
自测是否上传成功,手机连接adroid studio,在logcat中搜索appsflyer关键字,得到如下日志则上传成功 ? ?
|