GoogleAnalyticsForXamarinForms
Google Analytics Plugin for Xamarin Forms
Install / Use
/learn @KSemenenko/GoogleAnalyticsForXamarinFormsREADME
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:
- Google Analytics SDK for Windows and Windows Phone (https://googleanalyticssdk.codeplex.com/)
- jamesmontemagno/Xamarin.Plugins (https://github.com/jamesmontemagno/Xamarin.Plugins)
Available at NuGet.
https://www.nuget.org/packages/ksemenenko.GoogleAnalytics/
Build status
|Platform|Supported|Version| | ------------------- | :-----------: | :------------------: | |Xamarin.iOS|Yes|iOS 6+| |Xamarin.iOS Unified|Yes|iOS 6+| |Xamarin.Android|Yes|API 10+| |Windows Phone 8|Yes|8.0+| |Windows Phone 8.1|Yes|8.1+| |Windows Store|Yes|8.1+| |Windows 10 UWP|Yes|10+| |Xamarin.Mac|Partial||
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");
Related Skills
feishu-drive
347.0k|
things-mac
347.0kManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database)
clawhub
347.0kUse the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com
codebase-memory-mcp
1.2kHigh-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 66 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.
