Skip to content

Releases: AAkira/ExoPlayerManager

ExoPlayer2.9.0

19 Oct 09:42
b795766
Compare
Choose a tag to compare

Modification

ExoPlayer2.9.0 change log

Change the declaration of ExoPlayerManager

  • You must set the compile options.
compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
}
  • Change the DataSourceCreatorInterface

  • Update support libraries. 27.1.1

  • Update play service version 16.0.0

  • Update the target and compile sdk version. 28

  • Remove event logger from this library
    It is moved in ExoPlayer package from sample directory.

ExoPlayer2.8.1-2

12 Jun 06:49
3b782c6
Compare
Choose a tag to compare

Modification

Change the declaration of ExoPlayerManager

Don't worry 😄
very simple change

Before

val playerManager: ExoPlayerManager = ExoPlayerManager(context)

After

val playerManager: ExoPlayerManager = ExoPlayerManager.Builder(context).run {
            build(
                    renderersFactory = createRenderersFactory(), // You can set your RenderersFactory(not need to set)
                    loadControl = createDefaultLoadControl(      // You can set your LoadControl  (not need to set)
                            minBufferMs = 15000,
                            maxBufferMs = 50000,
                            bufferForPlaybackMs = 2500,
                            bufferForPlaybackAfterRebufferMs = 5000
                    )
            )
        }

=> simple declaration if you don't set params

val playerManager: ExoPlayerManager = ExoPlayerManager.Builder(context).build()

DRM support

#18

ExoPlayer2.8.1

31 May 06:29
034aae0
Compare
Choose a tag to compare
  • ExoPlayer 2.8.1
    deprecated : AudioCapabilitiesChangedListener

ExoPlayer2.7.3

26 Apr 08:36
27de379
Compare
Choose a tag to compare
  • Exo player 2.7.3
  • Fix reload method
    -> create instance of player again if you call restart method.

ExoPlayer2.7.1

23 Mar 02:46
1ea9e87
Compare
Choose a tag to compare

ExoPlayer 2.7.0

05 Mar 07:32
7c67ae8
Compare
Choose a tag to compare

ExoPlayer 2.6.1

06 Jan 07:55
5061a0c
Compare
Choose a tag to compare

PR : #17

  • Update libraries

  • ExoPlayer 2.6.1
    => @see ExoPlayer Release note

  • Kotlin 1.2.10

  • Merge onMediaSourceLoadErrorListener from ExtractorMediaSourceLoadErrorListener and AdaptiveMediaSourceLoadErrorListener

ExoPlayer r2.5.1

22 Aug 10:31
Compare
Choose a tag to compare

ExoPlayer r2.4.4

01 Aug 11:01
Compare
Choose a tag to compare

Modification

Enhancement

  • Bump up the ExoPlayer version to r2.4.4
  • Set the AdsRenderingSettings

BugFix

  • Replace resume method in IMA SDK because it deprecated from 3.7.2.

ExoPlayer r2.4.1

24 May 09:40
Compare
Choose a tag to compare

Modification

Enhancement

  • Bump up the ExoPlayer version to r2.4.1
  • Bump up the Kotlin version to 1.1.2