Home

Awesome

Google Analytics Plugin for Xamarin and Windows

This project is a cross platform library for Xamarin Forms, which enables a handy use of Google Analytics in your applications.
I've decided that there should be a broad-based library with no connection to native libraries Google in Xamarin (too long to install).

Should you have any comments or suggestions, please let me know. Let's make it an easy-to-use tool for our projects.

Additional thanks to the project that inspired me:

Available at NuGet.

https://www.nuget.org/packages/ksemenenko.GoogleAnalytics/

Build status

Build status Build status

PlatformSupportedVersion
Xamarin.iOSYesiOS 6+
Xamarin.iOS UnifiedYesiOS 6+
Xamarin.AndroidYesAPI 10+
Windows Phone 8Yes8.0+
Windows Phone 8.1Yes8.1+
Windows StoreYes8.1+
Windows 10 UWPYes10+
Xamarin.MacPartial

Example use:

Init:


GoogleAnalytics.Current.Config.TrackingId = "UA-11111111-1";
GoogleAnalytics.Current.Config.AppId = "AppID";
GoogleAnalytics.Current.Config.AppName = "TEST";
GoogleAnalytics.Current.Config.AppVersion = "1.0.0.0";
//GoogleAnalytics.Current.Config.Debug = true;
//For tracking install and starts app, you can change default event properties:
//GoogleAnalytics.Current.Config.ServiceCategoryName = "App";
//GoogleAnalytics.Current.Config.InstallMessage = "Install";
//GoogleAnalytics.Current.Config.StartMessage = "Start";
//GoogleAnalytics.Current.Config.AppInstallerId = "someID"; // for custom installer id
GoogleAnalytics.Current.InitTracker();
           
//Track view
GoogleAnalytics.Current.Tracker.SendView("MainPage");

Track:

GoogleAnalytics.Current.Tracker.SendView("MainPage");
GoogleAnalytics.Current.Tracker.SendEvent("Category", "Action", "Label", 1);
GoogleAnalytics.Current.Tracker.SendEvent("Category", "Action");

Other way:

var trackerManager = new TrackerManager(new PlatformInfoProvider()
{
    ScreenResolution = new Dimensions(1920, 1080),
    UserAgent = "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko",
    UserLanguage = "en-us",
    ViewPortResolution = new Dimensions(1920, 1080)
});

tracker = trackerManager.GetTracker("UA-11111111-1"); 
tracker.AppName = "My app";
tracker.AppVersion = "1.0.0.0";

// Log something to Google Analytics
tracker.SendView("MainPage");