Skip to content

Commit c311970

Browse files
committed
Bump version numbers to Media3 1.1.1 and ExoPlayer 2.19.1
PiperOrigin-RevId: 555987303 (cherry picked from commit 0a62b34)
1 parent 48c3b3e commit c311970

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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.19.0'
17-
releaseVersionCode = 2_019_000
16+
releaseVersion = '2.19.1'
17+
releaseVersionCode = 2_019_001
1818
minSdkVersion = 16
1919
appTargetSdkVersion = 33
2020
// API version before restricting local file access.

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
@@ -35,11 +35,11 @@ public final class ExoPlayerLibraryInfo {
3535

3636
/** The version of the library expressed as a string, for example "1.2.3". */
3737
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
38-
public static final String VERSION = "2.19.0";
38+
public static final String VERSION = "2.19.1";
3939

4040
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */
4141
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
42-
public static final String VERSION_SLASHY = "ExoPlayerLib/2.19.0";
42+
public static final String VERSION_SLASHY = "ExoPlayerLib/2.19.1";
4343

4444
/**
4545
* The version of the library expressed as an integer, for example 1002003.
@@ -49,7 +49,7 @@ public final class ExoPlayerLibraryInfo {
4949
* integer version 123045006 (123-045-006).
5050
*/
5151
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
52-
public static final int VERSION_INT = 2_019_000;
52+
public static final int VERSION_INT = 2_019_001;
5353

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

0 commit comments

Comments
 (0)