Reputation: 336
I have an ad(android/iOS) campaign running on facebook. Currently on the app manager(ap dashboard) I'm getting the following information: Campaign reach, frequency, clicks etc but the 'mobile app installs' field is displaying 0 even after my friend installed it via the facebook ad. How to know how many people have installed my android/iOS app via a facebook ad?
Upvotes: 3
Views: 2698
Reputation: 15662
Make sure you follow all the steps here https://developers.facebook.com/docs/ads-for-apps/mobile-app-ads
Especially the section "Add the Facebook SDK". In it, it tells you where to call either
[FBAppEvents activateApp]; // for iOS
or
AppEventsLogger.activateApp(...); // for Android
Which tells Facebook that the app was successfully installed. Otherwise, Facebook would not know that the app was installed.
Upvotes: 3
Reputation: 232
I had the same problem but couldn't figure it out. Even on my app dashboard the 'mobile app installs' field is showing 0
Upvotes: 0
Reputation: 3585
You can get userid of user when he/she logs in into your application, and store this id to server. And thus come to know how many people have installed your application.
Upvotes: 0