I am implementing Analytics in my android application, and I would like advice on when to call super.onPause()
if (mAnalyticsSession != null) {
mAnalyticsSession.close();
mAnalyticsSession.upload();
}
super.onPause();
What is the effect of calling super.onPause()
after doing upload actions vs. before?
In general, when should one call super.onPause()
?