Open ArcadEd opened 10 years ago
Can you add in the function of the Facebook API to track installs and uninstalls?
App Events let you measure installs on your mobile app ads, create high value audiences for targeting, and view analytics including user demographics. To log an app activation event, add the following code to the onResume() method of your app's default activity class:
@Override protected void onResume() { super.onResume();
// Logs 'install' and 'app activate' App Events. AppEventsLogger.activateApp(this); }
To accurately track the time people spend in your app, you should also log a deactivate event in the onPause() method of each activity where you added the activateApp() method above:
@Override protected void onPause() { super.onPause();
// Logs 'app deactivate' App Event. AppEventsLogger.deactivateApp(this); }
Now, when people install or engage with your app, you'll see this data reflected in your app's Insights dashboard.
Hello,
We are thinking about including this feature in the new atomic plugins. Of course, we will keep on adapting those plugins for C2.
Thanks a lot for the suggestion. I will let you know if it is finally included in the plugins, but it is a really good feature.
Regards.
Just curious how difficult it would be to include a app review system for iOS like this one. http://arashpayan.com/blog/2009/09/07/presenting-appirater/
Everyone seems to love this, but I have no idea how to implement it into my apps.
Please take a look, it would be really useful.