【发布时间】:2014-08-05 12:34:00
【问题描述】:
Facebook 广告跟踪来自 Playstore 的所有应用安装。我只需要跟踪来自 facebook 广告线索的 App Intalls。
请帮忙。 注意:我可以在电源编辑器报告中看到日志。
下面是代码:
启动器活动内部
protected void onResume() {
super.onResume();
try {
AppEventsLogger logger = AppEventsLogger.newLogger(this);
AppEventsLogger.activateApp(this, getResources().getString(R.string.app_id));
logger.logEvent(AppEventsConstants.EVENT_NAME_ACTIVATED_APP);
Settings.addLoggingBehavior(LoggingBehavior.APP_EVENTS);
} catch (Exception e) {
e.printStackTrace();
}
}
【问题讨论】: