Aptabase is an Open Source alternative to Google Firebase Analytics for .NET MAUI Apps
Use the .NET MAUI SDK for Aptabase to instrument your app. You're in total control of what events to track.
Here's an example 👇
_aptabase.TrackEvent("play_music", new() {
{ "name", "Here comes the sun" }
}); Full install and setup steps in the quickstart below .
That's it! You'll now see the data on your dashboard as the events come through from your app.
Use Cases
You can't improve what you don't measure. Aptabase helps you get valuable insights from your .NET MAUI Apps in a privacy-friendly manner.
Are you aware of the features in your app that users engage with most frequently? What configurations that majority of your users prefer? Gaining insights into these areas allows you to make well-informed decisions on future focus points for enhancing your .NET MAUI app's user experience.
Understanding the geographical distribution of your user base can significantly inform the decision to localize your .NET MAUI app, thereby enhancing its global accessibility and visibility on the Apple App Store and Google Play Store.
Aptabase efficiently gathers data such as the names of operating systems such as Windows, Android, iOS, iPadOS, macOS, etc., and their respective versions. This valuable insight enables you to concentrate on crafting enhanced user experiences tailored to the most widely used OS and versions.
Quickstart
Install the .NET MAUI SDK, initialize it with your App Key and track your first
event. Get the App Key from the dashboard's Instructions
menu — keys look like A-EU-*, A-US-*.
Package: Aptabase.Maui (NuGet)
dotnet add package Aptabase.Maui In MauiProgram.cs:
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.UseAptabase("<YOUR_APP_KEY>", new AptabaseOptions
{
#if DEBUG
IsDebugMode = true,
#else
IsDebugMode = false,
#endif
});
// ...
} UseAptabase registers IAptabaseClient in the DI container. Inject it into your pages or view models:
public partial class MainPage : ContentPage
{
IAptabaseClient _aptabase;
public MainPage(IAptabaseClient aptabase)
{
InitializeComponent();
_aptabase = aptabase;
}
private void OnButtonClicked(object sender, EventArgs e)
{
_aptabase.TrackEvent("button_clicked");
_aptabase.TrackEvent("screen_view", new() { { "name", "Settings" } });
}
} Privacy front and center
In the realms of user tracking and privacy, Aptabase employs a unique strategy to secure the privacy of your users.
Free up to 20,000 events/month. Paid plans from $10/month for 200,000 events up to $450/month for 50,000,000 events. No overage fees.