user2250908
user2250908

Reputation: 95

Unable to confirm Facebook app ads install tracking

Per Facebook's documentation on Section 3 of Get started measuring app installs on page: https://developers.facebook.com/docs/ads-for-apps/mobile-app-ads/

I have added these two lines in my code:

[FBSettings setDefaultAppID:YOUR_APP_ID]; [FBAppEvents activateApp];

I am UNABLE to see any confirmation of installs as mentioned in app summary page

Confirm that installs are being tracked You can confirm that the volume of installs is being correctly reported in the Insights section for your app in the App Dashboard. In addition, in the App Summary Page, there is a time stamp 'Last Mobile Install Reported" for iOS and Android so that you can confirm that an install is being reported (see image below - ).

https://i.sstatic.net/xGP24.png

Can anyone help me out on this?

Upvotes: 5

Views: 1844

Answers (1)

james075
james075

Reputation: 1278

It's a little bite late but it can be useful to others.

To test the mobile ads install and see the "Last Mobile Install Reported" in the app dashboard.

You have to make sure that you have installed the facebook app and beeing logged-in from your DEVICE.

you need to add these two lines in your app delegate in applicationDidBecomeActive, as you did:

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    [FBSettings setDefaultAppID:FACEBOOK_APP_ID];

    [FBAppEvents activateApp];
}

Upvotes: 2

Related Questions