简体   繁体   English

Facebook应用安装广告显示Android的0安装

[英]Facebook app install ads show 0 install for android

We have two ads. 我们有两个广告。 one targetted to iOS user, one targetted to Android user. 一项针对iOS用户,一项针对Android用户。

Facebook dashboard shows that the two ads spent roughly the same amount (around 35$) Facebook仪表板显示,这两个广告的支出大致相同(约35美元)

iOS ads has 152 app installs whereas Android ads has -- app installs iOS广告152 app installs而Android广告-- app installs 在此处输入图片说明

I think something is wrong here. 我认为这里有问题。 I'm not sure how I should start debug this? 我不确定该如何开始调试?

Please let me know if there's a better place to ask this question. 请让我知道是否有更好的地方问这个问题。

You need to enable tracking for this. 您需要为此启用跟踪。

@Override
protected void onResume() { 
  super.onResume(); 
  AppEventsLogger.activateApp(this); 
  // ...
}

// Optional: App Deactivation Event 
@Override
protected void onPause() { 
  super.onPause(); 
  AppEventsLogger.deactivateApp(this);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM