Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Request: App Reviews #48

Open
ArcadEd opened this issue Nov 9, 2014 · 2 comments
Open

Request: App Reviews #48

ArcadEd opened this issue Nov 9, 2014 · 2 comments

Comments

@ArcadEd
Copy link

ArcadEd commented Nov 9, 2014

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.

@ArcadEd
Copy link
Author

ArcadEd commented Nov 11, 2014

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.

@LibelulaV
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants