Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 - ).

http://i.stack.imgur.com/xGP24.png

Can anyone help me out on this?

like image 357
user2250908 Avatar asked Nov 01 '22 12:11

user2250908


1 Answers

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];
}
like image 131
james075 Avatar answered Nov 20 '22 18:11

james075