This repository was archived by the owner on Feb 19, 2020. It is now read-only.
Version 4.1.1
This maintenance release contains an important bugfix around Custom Events. With the 4.1 release are rolling out Custom Events to everybody, to understand user actions and see aggregates on the HockeyApp portal.
If you haven't done it yet, add the setup code for the MetricsManager in your main activity's onCreate
-callback like this:
//add this import
import net.hockeyapp.android.metrics.MetricsManager;
//add this to your main activity's onCreate()-callback
MetricsManager.register(getApplication());
and add the Custom Event code like this:
//add this wherever you want to track a custom event
MetricsManager.trackEvent("YOUR_EVENT_NAME");
Also, Custom Events now support custom properties and measurements as a preview, which can be viewed in the Application Insights portal.
Apart from this, here's the full list of changes:
4.1.1