Aptabase is an Open Source alternative to Google Firebase Analytics for Unity Games
Use the Unity SDK for Aptabase to instrument your app. You're in total control of what events to track.
Here's an example 👇
Aptabase.TrackEvent("game_started", new Dictionary<string, object>
{
{"difficulty", "Hard"}
}); 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 Unity Games in a privacy-friendly manner.
Are you aware of what users spend most of their time on your game? 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 Unity games user experience.
Understanding the geographical distribution of your user base can significantly inform the decision to localize your Unity games, thereby enhancing its global accessibility and visibility on that market.
Aptabase efficiently gathers data such as the names of operating systems such as Windows, PlayStation, Xbox, 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 Unity 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: Unity Package Manager (git URL)
Package Manager → Add package from git URL: https://github.com/aptabase/aptabase-unity.git
Set your App Key in the settings asset at Aptabase/Resources/AptabaseSettings.Asset. Events are batched and sent every 60 seconds in production and every 2 seconds in development; override this via the FlushInterval field.
Aptabase.TrackEvent("app_started");
Aptabase.TrackEvent("screen_view", new Dictionary<string, object>
{
{ "name", "Settings" }
}); Manual flush: Aptabase.Flush();
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.