This repository was archived by the owner on Feb 19, 2020. It is now read-only.
Version 4.1.0-beta.1
Pre-release
Pre-release
·
562 commits
to develop
since this release
This is the first public release of our upcoming 4.1.0 SDK. It's major feature is the addition of Custom Events to the User Metrics feature that became publicly available with our 4.0.0 SDK.
If you are part of Preseason, you can now track Custom Events in your app, understand user actions and see the 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(this, getApplication());
and add the Custom Event code like this:
//add this wherever you want to track a custom event
MetricsManager.trackEvent("YOUR_EVENT_NAME");
Please do note, that this feature, like the other User Metrics features,Custom Events only work on Android API level 14 or higher.
Apart from this, here's the list of other changes:
4.1.0-beta.1
- [NEW] Integrate HockeySDK 4.0.0
- [NEW] Custom Events are now a public release but require to apply for Preseason
4.1.0-alpha.2
- [NEW] Add Custom Events
- [NEW] Integrate HockeySDK 4.0.0-alpha.3