I am following this tutorial: Getting started and I have run the samples correctly.
I now want to add the mobile adds characteristic and I follow this tutorial: FB mobile install ads
In the step1 it says:
Set up your app to measure mobile app install ads
Step by step, and I comment what I have done already:
1.You need to integrate Facebook's latest SDK -->DONE with the tutorial getting started
2.For iOS 3.0 or greater, add the following to your UIApplicationDelegate applicationDidBecomeActive selector:
[FBSettings publishInstall:YOUR_APP_ID];-->DONE
I have added:
[FBSettings publishInstall:@"220............"]; in my appdelegate.m and imported the <FacebookSDK/FacebookSDK.h>
and then comes the problem:
3. You can confirm that your app is correctly configured in the App Dashboard, or go directly there at https://developers.facebook.com/apps/YOUR_APP_ID. You should see a field in the "Summary" section labeled "Last Mobile Install Reported," with a time stamp for the last time your app reported an install.
This is what I suppose to see:

and this is what I see:

How am I supposed to know that I have setup this correctly and my fb mobile install ads will play normally?
EDIT:
I have added both the URLScheme:

and the linker flag:

And the native ios info:

Still the problem remains:( I do not see that my app is being installed from my phone..
This doesn't work only if I set the campaign and the ad right? Because I~ haven't created the ad yet, i just want to make sure that I will pay FB and my ad is going take users to my app.


