Search code examples
androidgoogle-analyticstracker

Where can i view the data sent by tracker on Google Analytics?


I have sent much data by Tracker to Google Analycis as following codes:

tracker= GoogleAnalytics.getInstance(this).getTracker("UA-46451607-1");
    HashMap<String, String> hitParameters = new HashMap<String, String>();
    hitParameters.put("type", "appview");
    hitParameters.put("screen_name", "My Screen");

    tracker.send(hitParameters);

After sent these data to platform,where can i see the result?

I would like to see the value of "type " and "screen_name",but i dont know how to view them on web.


Solution

  • Follow these steps

    1. open this link www.google.co.in/analytics/
    2. Click on access Google Analytics button in the right side of the top most corner of this screen.
    3. It will redirect you to your home screen. Here you can see your app name
    4. Click on All Mobile App data link on home screen just below the title of your project
    5. It will redirect you to App overview page.

    It is where you want to be . Yo can see complete report and details of your app.