Google Analytics Mobile doesn't count

一个人想着一个人 提交于 2019-12-24 15:25:33

问题


Got a strange thing going on, I recently started counting visitors of my app, it was working fine. Ater a while I saw that on Google Analytics, you can point out if it is a website or mobile. I made a new profile with 'mobile' selected, replaced the code in my app, but since then, it isn't counting anymore.. I waited more then 24 hours.

I use

mGATracker = GoogleAnalyticsTracker.getInstance();
            mGATracker.startNewSession("UA-xxxxxxxx-x", this);
            mGATracker.trackPageView("/About");

And dispatch in the onDestroy method: @Override

public void onDestroy() {
        try {
            super.onDestroy();
            mGATracker.dispatch();
            mGATracker.stopSession();
        } catch (Exception error) {
            Log.e("<YOUR_TAG>", "onDestroy: " + error.toString());
        }
    }

Anybody else experienced this?


回答1:


GA ver 1 requires 'website' type of panel.



来源:https://stackoverflow.com/questions/13791377/google-analytics-mobile-doesnt-count

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!