Skip to content

Commit 63aa310

Browse files
committed
Bump version numbers to Media3 1.0.0 and ExoPlayer 2.18.5
#minor-release PiperOrigin-RevId: 516514583 (cherry picked from commit 4fe8195)
1 parent 496d02a commit 63aa310

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
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.18.4'
17-
releaseVersionCode = 2_018_004
16+
releaseVersion = '2.18.5'
17+
releaseVersionCode = 2_018_005
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
@@ -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.18.4";
30+
public static final String VERSION = "2.18.5";
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.18.4";
34+
public static final String VERSION_SLASHY = "ExoPlayerLib/2.18.5";
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_018_004;
44+
public static final int VERSION_INT = 2_018_005;
4545

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

media3-migration.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ extension-workmanager media3-exoplayer-workmanager'
128128
# Rewrites classes, packages and dependencies from the legacy ExoPlayer package structure
129129
# to androidx.media3 structure.
130130

131-
MEDIA3_VERSION="1.0.0-rc02"
132-
LEGACY_PEER_VERSION="2.18.4"
131+
MEDIA3_VERSION="1.0.0"
132+
LEGACY_PEER_VERSION="2.18.5"
133133

134134
function usage() {
135135
echo "usage: $0 [-p|-c|-d|-v]|[-m|-l [-x <path>] [-f] PROJECT_ROOT]"

0 commit comments

Comments
 (0)