Skip to content

Commit

Permalink
v2.4.3 (#90)
Browse files Browse the repository at this point in the history
* v2.4.3

* pass CustomerViewData through all constructors (#89)

Co-authored-by: Justin Sanford <[email protected]>
  • Loading branch information
skidder and jsanford8 authored Feb 18, 2021
1 parent a406e1e commit 811cf6a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MuxExoPlayer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ android {
defaultConfig {
minSdkVersion project.ext.minSdkVersion
targetSdkVersion project.ext.targetSdkVersion
versionCode 13
versionName "2.4.2"
versionCode 14
versionName "2.4.3"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public MuxStatsExoPlayer(Context ctx, ExoPlayer player, String playerName,
CustomerPlayerData customerPlayerData,
CustomerVideoData customerVideoData,
CustomerViewData customerViewData, boolean sentryEnabled) {
this(ctx, player, playerName, customerPlayerData, customerVideoData, null,
this(ctx, player, playerName, customerPlayerData, customerVideoData, customerViewData,
sentryEnabled, new MuxNetworkRequests());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public MuxStatsExoPlayer(Context ctx, ExoPlayer player, String playerName,
CustomerVideoData customerVideoData,
CustomerViewData customerViewData, boolean sentryEnabled) {
this(ctx, player, playerName, customerPlayerData, customerVideoData,
null, sentryEnabled, new MuxNetworkRequests());
customerViewData, sentryEnabled, new MuxNetworkRequests());
}

public MuxStatsExoPlayer(Context ctx, ExoPlayer player, String playerName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public MuxStatsExoPlayer(Context ctx, ExoPlayer player, String playerName,
CustomerPlayerData customerPlayerData,
CustomerVideoData customerVideoData,
CustomerViewData customerViewData, boolean sentryEnabled) {
this(ctx, player, playerName, customerPlayerData, customerVideoData, null,
this(ctx, player, playerName, customerPlayerData, customerVideoData, customerViewData,
sentryEnabled, new MuxNetworkRequests());
}

Expand Down
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release notes

## v2.4.3
- Propagate `customerViewData` through the constructors for 2.9.6, 2.11.1, and 2.12.1 as well.

## v2.4.2
- Fix propagation of `customerViewData` through all constructors.

Expand Down

0 comments on commit 811cf6a

Please sign in to comment.