Skip to content

Commit

Permalink
Downgrade ExoPlayer to 2.7.3.
Browse files Browse the repository at this point in the history
Users started reporting issues after an update to 2.8.* and newer.
And there are some issues, e.g.
google/ExoPlayer#4519
  • Loading branch information
msimonides committed Jan 2, 2019
1 parent 5bbb4b6 commit ed4a582
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {
implementation 'com.flurry.android:analytics:6.9.2'
implementation 'com.google.guava:guava:24.0-android'
implementation 'com.google.code.findbugs:jsr305:3.0.1'
implementation 'com.google.android.exoplayer:exoplayer-core:2.9.1'
implementation 'com.google.android.exoplayer:exoplayer-core:2.7.3'

implementation 'com.google.dagger:dagger:2.15'
annotationProcessor 'com.google.dagger:dagger-compiler:2.15'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ private ExtractorMediaSource.Factory getExtractorMediaSourceFactory() {
}

private class PlaybackControllerImpl
implements com.google.android.exoplayer2.Player.EventListener, PlaybackController {
extends com.google.android.exoplayer2.Player.DefaultEventListener
implements PlaybackController {

private File currentFile;
private Observer observer;
Expand Down Expand Up @@ -202,7 +203,8 @@ private String getFormatDescription() {
}

private class DurationQueryControllerImpl
implements com.google.android.exoplayer2.Player.EventListener, DurationQueryController {
extends com.google.android.exoplayer2.Player.DefaultEventListener
implements DurationQueryController {

private final Iterator<File> iterator;
private File currentFile;
Expand Down

0 comments on commit ed4a582

Please sign in to comment.