Skip to content

Commit

Permalink
Merge branch 'develop' into late-player-initialization
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
#	conviva/src/main/java/com/bitmovin/analytics/conviva/ConvivaAnalyticsIntegration.java
  • Loading branch information
stonko1994 committed Aug 26, 2024
2 parents 353d847 + 1c6d2f5 commit 6000797
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 26 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- `ConvivaAnalyticsIntegration(customerKey:config:)` constructor without a `Player`
- `ConvivaAnalyticsIntegration.attachPlayer()` to attach the `Player` at a later point in the session life-cycle

### Removed
- Unintentionally public initializers from `ConvivaAnalyticsIntegration` which were not intended to be public and only meant for testing

## 2.6.0 - 2024-08-13
### Added
- `averageBitrate` to reported video metrics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,35 +86,15 @@ public ConvivaAnalyticsIntegration(Player player, String customerKey, Context co
this(player, customerKey, context, new ConvivaConfig());
}

public ConvivaAnalyticsIntegration(Player player,
String customerKey,
Context context,
ConvivaConfig config) {
this(player, customerKey, context, config, null);
}

public ConvivaAnalyticsIntegration(Player player,
String customerKey,
Context context,
ConvivaConfig config,
ConvivaVideoAnalytics videoAnalytics
) {
this(player, customerKey, context, config, videoAnalytics, null);
}

public ConvivaAnalyticsIntegration(Player player,
String customerKey,
Context context,
ConvivaConfig config,
ConvivaVideoAnalytics videoAnalytics,
ConvivaAdAnalytics adAnalytics
public ConvivaAnalyticsIntegration(
Player player,
String customerKey,
Context context,
ConvivaConfig config
) {
this(player, customerKey, context, config, videoAnalytics, adAnalytics, null);
this(player, customerKey, context, config, null, null, null);
}

/**
* For testing purposes only.
*/
ConvivaAnalyticsIntegration(
@Nullable Player player,
String customerKey,
Expand Down

0 comments on commit 6000797

Please sign in to comment.