Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Version 4.1.1

Compare
Choose a tag to compare
@matthiaswenz matthiaswenz released this 01 Sep 13:43
· 461 commits to develop since this release

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

  • [NEW] Custom Events are now a public feature
  • [NEW] Added user contributed localizations for Simplified Chinese (#163) and Russian (#152)
  • [FIXED] Installing an app through HockeyApp would falsely report this as a store installation on Android Nougat (#171)