Update release notes + bump version number
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=162514848
This commit is contained in:
parent
108f4f14f3
commit
eb38601626
@ -1,5 +1,16 @@
|
||||
# Release notes #
|
||||
|
||||
### r2.4.4 ###
|
||||
|
||||
* HLS/MPEG-TS: Some initial optimizations of MPEG-TS extractor performance
|
||||
([#3040](https://github.com/google/ExoPlayer/issues/3040)).
|
||||
* HLS: Fix propagation of format identifier for CEA-608
|
||||
([#3033](https://github.com/google/ExoPlayer/issues/3033)).
|
||||
* HLS: Detect playlist stuck and reset conditions
|
||||
([#2872](https://github.com/google/ExoPlayer/issues/2872)).
|
||||
* Video: Fix video dimension reporting on some devices
|
||||
([#3007](https://github.com/google/ExoPlayer/issues/3007)).
|
||||
|
||||
### r2.4.3 ###
|
||||
|
||||
* Audio: Workaround custom audio decoders misreporting their maximum supported
|
||||
|
@ -24,7 +24,7 @@ project.ext {
|
||||
supportLibraryVersion = '25.4.0'
|
||||
dexmakerVersion = '1.2'
|
||||
mockitoVersion = '1.9.5'
|
||||
releaseVersion = 'r2.4.3'
|
||||
releaseVersion = 'r2.4.4'
|
||||
modulePrefix = ':'
|
||||
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||
modulePrefix += gradle.ext.exoplayerModulePrefix
|
||||
|
@ -16,8 +16,8 @@
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.exoplayer2.demo"
|
||||
android:versionCode="2403"
|
||||
android:versionName="2.4.3">
|
||||
android:versionCode="2404"
|
||||
android:versionName="2.4.4">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||
|
@ -31,13 +31,13 @@ public final class ExoPlayerLibraryInfo {
|
||||
* 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.
|
||||
public static final String VERSION = "2.4.3";
|
||||
public static final String VERSION = "2.4.4";
|
||||
|
||||
/**
|
||||
* The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}.
|
||||
*/
|
||||
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
|
||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.4.3";
|
||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.4.4";
|
||||
|
||||
/**
|
||||
* The version of the library expressed as an integer, for example 1002003.
|
||||
@ -47,7 +47,7 @@ public final class ExoPlayerLibraryInfo {
|
||||
* integer version 123045006 (123-045-006).
|
||||
*/
|
||||
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
|
||||
public static final int VERSION_INT = 2004003;
|
||||
public static final int VERSION_INT = 2004004;
|
||||
|
||||
/**
|
||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
||||
|
Loading…
x
Reference in New Issue
Block a user