Skip to content

Commit fc50538

Browse files
committed
Version bump to exoplayer:2.18.2 and media3:1.0.0-beta03
PiperOrigin-RevId: 489959918 (cherry picked from commit 4ea72f0)
1 parent ca5a0d7 commit fc50538

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
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-beta03
2021
- 1.0.0-beta02
2122
- 1.0.0-beta01
2223
- 1.0.0-alpha03

RELEASENOTES.md

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

3-
### Unreleased changes
3+
### 1.0.0-beta03 (2022-11-22)
4+
5+
This release corresponds to the
6+
[ExoPlayer 2.18.2 release](https://github.com/google/ExoPlayer/releases/tag/r2.18.2).
47

58
* Core library:
69
* Add `ExoPlayer.isTunnelingEnabled` to check if tunneling is enabled for
@@ -16,9 +19,6 @@ Release notes
1619
* Close the Tracing "doSomeWork" block when offload is enabled.
1720
* Try alternative decoder for Dolby Vision if display does not support it.
1821
([#9794](https://github.com/google/ExoPlayer/issues/9794)).
19-
* Add suppression reason for unsuitable audio route and play when ready
20-
change reason for suppressed too long.
21-
([#15](https://github.com/androidx/media/issues/15)).
2222
* Prefer other tracks to Dolby Vision if display does not support it.
2323
([#8944](https://github.com/google/ExoPlayer/issues/8944)).
2424
* Fix session tracking problem with fast seeks in `PlaybackStatsListener`
@@ -137,8 +137,6 @@ Release notes
137137
* Add muxer watchdog timer to detect when generating an output sample is
138138
too slow.
139139
* Remove deprecated symbols:
140-
* Remove `DefaultAudioSink` constructors, use `DefaultAudioSink.Builder`
141-
instead.
142140
* Remove `Transformer.Builder.setOutputMimeType(String)`. This feature has
143141
been removed. The MIME type will always be MP4 when the default muxer is
144142
used.

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-beta02'
16-
releaseVersionCode = 1_000_000_1_02
15+
releaseVersion = '1.0.0-beta03'
16+
releaseVersionCode = 1_000_000_1_03
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-beta02";
32+
public static final String VERSION = "1.0.0-beta03";
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-beta02";
36+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.0.0-beta03";
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_02;
50+
public static final int VERSION_INT = 1_000_000_1_03;
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)