MDrabic
MDrabic

Reputation: 917

Why does Facebook Insights report zero app installs?

My problem or misunderstanding: On the main dashboard, developers.facebook.com/apps/<app id> the value Last Mobile Install Reported is always updated correctly when I perform a new install. However, when I go to Insights and click on the Mobile App Installs section, the value reported is zero. Why is zero still reported?


Other Info


The Facebook API Call

public void onResume() {
    super.onResume();
    String appId = getResources().getString(R.string.facebook_app_id);
    AppEventsLogger.activateApp(getApplicationContext(), appId);
}


Photo showing latest Install

latest install is correct

Photo showing App Events are reported

app events reported correctly

Photo showing zero installs... Why?!?

zero installs... why?!?

Upvotes: 3

Views: 3489

Answers (1)

MDrabic
MDrabic

Reputation: 917

Everything was setup correctly. It took somewhere between 72 hours and 1 week for the mobile app installs graph to be populated with the install data.

Graph updated with mobile install data

Upvotes: 5

Related Questions