This document describes a legacy version of the Android SDK. If your new to Analyitcs, use the latest SDK. Learn more

Social Interactions - Android SDK v2 (Legacy)

Stay organized with collections Save and categorize content based on your preferences.

This developer guide describes how to measure social interactions using the Google Analytics SDK for Android v2.

Overview

Social interaction measurement allows you to measure a user's interactions with various social network sharing and recommendation widgets embedded in your content.

A social interaction comprises the following fields:

  • String network – represents the social network with which the user is interacting (e.g. Google+, Facebook, Twitter, etc.).
  • String action – represents the social action taken (e.g. Like, Share, +1, etc.).
  • String target (optional) – represents the content on which the social action is being taken (i.e. a specific article or video).

Social interaction data collected by the Google Analytics SDK for Android v2.x is only available in custom reports.

Implementation

To send a social interaction to Google Analytics, call sendSocial as in the following example, where an interaction with a Twitter Tweet button is measured on the Analytics developer site homepage:

Tracker tracker = EasyTracker.getTracker();  // Get tracker object.
tracker.sendSocial("Twitter", "Tweet", "https://developers.google.com/analytics");  // Send social interaction.