Finalize r2.5.0
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=164434615
This commit is contained in:
parent
f502171e5f
commit
9ecec92b56
@ -1,14 +1,13 @@
|
|||||||
# Release notes #
|
# Release notes #
|
||||||
|
|
||||||
### r2.5.0 (beta) ###
|
### r2.5.0 ###
|
||||||
|
|
||||||
* IMA extension: Wraps the Google Interactive Media Ads (IMA) SDK to provide an
|
* IMA extension: Wraps the Google Interactive Media Ads (IMA) SDK to provide an
|
||||||
easy and seamless way of incorporating display ads into ExoPlayer playbacks.
|
easy and seamless way of incorporating display ads into ExoPlayer playbacks.
|
||||||
You can read more about the IMA extension
|
You can read more about the IMA extension
|
||||||
[here](https://medium.com/google-exoplayer/playing-ads-with-exoplayer-and-ima-868dfd767ea).
|
[here](https://medium.com/google-exoplayer/playing-ads-with-exoplayer-and-ima-868dfd767ea).
|
||||||
* MediaSession extension: Provides an easy to to connect ExoPlayer with
|
* MediaSession extension: Provides an easy to to connect ExoPlayer with
|
||||||
MediaSessionCompat in the Android Support Library. *A link to a blog post
|
MediaSessionCompat in the Android Support Library.
|
||||||
about this extension will be added here prior to the stable 2.5.0 release.*
|
|
||||||
* RTMP extension: An extension for playing streams over RTMP.
|
* RTMP extension: An extension for playing streams over RTMP.
|
||||||
* Build: Made it easier for application developers to depend on a local checkout
|
* Build: Made it easier for application developers to depend on a local checkout
|
||||||
of ExoPlayer. You can learn how to do this
|
of ExoPlayer. You can learn how to do this
|
||||||
@ -18,8 +17,7 @@
|
|||||||
playback of progressive streams
|
playback of progressive streams
|
||||||
([#2926](https://github.com/google/ExoPlayer/issues/2926)).
|
([#2926](https://github.com/google/ExoPlayer/issues/2926)).
|
||||||
* New DynamicConcatenatingMediaSource class to support playback of dynamic
|
* New DynamicConcatenatingMediaSource class to support playback of dynamic
|
||||||
playlists. *A link to a blog post about DynamicConcatenatingMediaSource will
|
playlists.
|
||||||
be added here prior to the stable 2.5.0 release.*
|
|
||||||
* New ExoPlayer.setRepeatMode method for dynamic toggling of repeat mode
|
* New ExoPlayer.setRepeatMode method for dynamic toggling of repeat mode
|
||||||
during playback. Use of setRepeatMode should be preferred to
|
during playback. Use of setRepeatMode should be preferred to
|
||||||
LoopingMediaSource for most looping use cases. You can read more about
|
LoopingMediaSource for most looping use cases. You can read more about
|
||||||
|
@ -24,7 +24,7 @@ project.ext {
|
|||||||
supportLibraryVersion = '25.4.0'
|
supportLibraryVersion = '25.4.0'
|
||||||
dexmakerVersion = '1.2'
|
dexmakerVersion = '1.2'
|
||||||
mockitoVersion = '1.9.5'
|
mockitoVersion = '1.9.5'
|
||||||
releaseVersion = 'r2.5.0-beta3'
|
releaseVersion = 'r2.5.0'
|
||||||
modulePrefix = ':'
|
modulePrefix = ':'
|
||||||
if (gradle.ext.has('exoplayerModulePrefix')) {
|
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||||
modulePrefix += gradle.ext.exoplayerModulePrefix
|
modulePrefix += gradle.ext.exoplayerModulePrefix
|
||||||
|
@ -31,13 +31,13 @@ public final class ExoPlayerLibraryInfo {
|
|||||||
* The version of the library expressed as a string, for example "1.2.3".
|
* The version of the library expressed as a string, for example "1.2.3".
|
||||||
*/
|
*/
|
||||||
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
|
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
|
||||||
public static final String VERSION = "2.5.0-beta3";
|
public static final String VERSION = "2.5.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}.
|
* The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}.
|
||||||
*/
|
*/
|
||||||
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
|
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
|
||||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.5.0-beta3";
|
public static final String VERSION_SLASHY = "ExoPlayerLib/2.5.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The version of the library expressed as an integer, for example 1002003.
|
* The version of the library expressed as an integer, for example 1002003.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user