Skip to content

Commit 98bf30d

Browse files
committed
Version bump for ExoPlayer 2.18.3 & media3-1.0.0-rc01
#minor-release PiperOrigin-RevId: 509501665 (cherry picked from commit 20eae0e)
1 parent 9f43249 commit 98bf30d

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ body:
1717
label: Media3 Version
1818
description: What version of Media3 are you using?
1919
options:
20+
- 1.0.0-rc01
2021
- 1.0.0-beta03
2122
- 1.0.0-beta02
2223
- 1.0.0-beta01

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@ Android, including local playback (via ExoPlayer) and media sessions.
55

66
## Current status
77

8-
AndroidX Media is currently in beta and we welcome your feedback via the
9-
[issue tracker][]. Please consult the [release notes][] for more details about
10-
the beta release.
8+
AndroidX Media is currently in release candidate and we welcome your feedback
9+
via the [issue tracker][]. Please consult the [release notes][] for more details
10+
about the current release.
1111

1212
ExoPlayer's new home will be in AndroidX Media, but for now we are publishing it
13-
both in AndroidX Media and via the existing [ExoPlayer project][]. While
14-
AndroidX Media is in beta we recommend that production apps using ExoPlayer
15-
continue to depend on the existing ExoPlayer project. We are still handling
16-
ExoPlayer issues on the [ExoPlayer issue tracker][].
13+
both in AndroidX Media and via the existing [ExoPlayer project][] and we are
14+
still handling ExoPlayer issues on the [ExoPlayer issue tracker][].
1715

1816
You'll find some [Media3 documentation on developer.android.com][], including a
1917
[migration guide for existing ExoPlayer and MediaSession users][].

constants.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414
project.ext {
15-
releaseVersion = '1.0.0-beta03'
16-
releaseVersionCode = 1_000_000_1_03
15+
releaseVersion = '1.0.0-rc01'
16+
releaseVersionCode = 1_000_000_2_01
1717
minSdkVersion = 16
1818
appTargetSdkVersion = 33
1919
// API version before restricting local file access.

libraries/common/src/main/java/androidx/media3/common/MediaLibraryInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ public final class MediaLibraryInfo {
2929

3030
/** The version of the library expressed as a string, for example "1.2.3" or "1.2.3-beta01". */
3131
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
32-
public static final String VERSION = "1.0.0-beta03";
32+
public static final String VERSION = "1.0.0-rc01";
3333

3434
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */
3535
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
36-
public static final String VERSION_SLASHY = "AndroidXMedia3/1.0.0-beta03";
36+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.0.0-rc01";
3737

3838
/**
3939
* The version of the library expressed as an integer, for example 1002003300.
@@ -47,7 +47,7 @@ public final class MediaLibraryInfo {
4747
* (123-045-006-3-00).
4848
*/
4949
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
50-
public static final int VERSION_INT = 1_000_000_1_03;
50+
public static final int VERSION_INT = 1_000_000_2_01;
5151

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

0 commit comments

Comments
 (0)