Skip to content

Commit 8dc3e98

Browse files
committed
Version bump to exoplayer:2.17.1 and media3:1.0.0-alpha03
PiperOrigin-RevId: 433467068 (cherry picked from commit 153b16a)
1 parent 347080f commit 8dc3e98

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

RELEASENOTES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Release notes
22

3-
### dev-v2 (not yet released)
3+
### 2.17.1 (2022-03-10)
4+
5+
This release corresponds to the
6+
[AndroidX media3 1.0.0-alpha03 release](https://github.com/androidx/media/releases/tag/1.0.0-alpha03).
47

58
* Audio:
69
* Fix error checking audio capabilities for Dolby Atmos (E-AC3-JOC) in

constants.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
// limitations under the License.
1414
project.ext {
1515
// ExoPlayer version and version code.
16-
releaseVersion = '2.17.0'
17-
releaseVersionCode = 2_017_000
16+
releaseVersion = '2.17.1'
17+
releaseVersionCode = 2_017_001
1818
minSdkVersion = 16
1919
appTargetSdkVersion = 29
2020
// Upgrading this requires [Internal ref: b/193254928] to be fixed, or some

library/common/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ public final class ExoPlayerLibraryInfo {
2727

2828
/** The version of the library expressed as a string, for example "1.2.3". */
2929
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
30-
public static final String VERSION = "2.17.0";
30+
public static final String VERSION = "2.17.1";
3131

3232
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */
3333
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
34-
public static final String VERSION_SLASHY = "ExoPlayerLib/2.17.0";
34+
public static final String VERSION_SLASHY = "ExoPlayerLib/2.17.1";
3535

3636
/**
3737
* The version of the library expressed as an integer, for example 1002003.
@@ -41,7 +41,7 @@ public final class ExoPlayerLibraryInfo {
4141
* integer version 123045006 (123-045-006).
4242
*/
4343
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
44-
public static final int VERSION_INT = 2_017_000;
44+
public static final int VERSION_INT = 2_017_001;
4545

4646
/** Whether the library was compiled with {@link Assertions} checks enabled. */
4747
public static final boolean ASSERTIONS_ENABLED = true;

0 commit comments

Comments
 (0)