I want to import google analytics on my android application and my codes is
private GoogleAnalyticsTracker tracker;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.demo);
tracker = GoogleAnalyticsTracker.getInstance();
tracker.startNewSession(getString(R.string.analytics_id), this);
tracker.trackPageView("/demo");
}
@Override
protected void onDestroy() {
super.onDestroy();
tracker.stopSession();
}
but it is not working... where am I doing wrong? Thanks... Note: I used tabactivity and each of tab codes like that...
I found the answer from this blog. Hope it's helpful.
http://blog.blundellapps.com/google-analytics-common-problems-and-fixes/