Skip to content

Commit 37f1116

Browse files
committed
Version bump to exoplayer:2.18.1 and media3:1.0.0-beta02
#minor-release PiperOrigin-RevId: 461162552 (cherry picked from commit be27dae)
1 parent dfe8bee commit 37f1116

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
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-beta02
2021
- 1.0.0-beta01
2122
- 1.0.0-alpha03
2223
- 1.0.0-alpha02

RELEASENOTES.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
### Unreleased changes
44

5+
* Core library:
6+
* Add `ExoPlayer.isTunnelingEnabled` to check if tunneling is enabled for
7+
the currently selected tracks
8+
([#2518](https://github.com/google/ExoPlayer/issues/2518)).
9+
* Use `SingleThreadExecutor` for releasing `AudioTrack` instances to avoid
10+
OutOfMemory errors when releasing multiple players at the same time
11+
([#10057](https://github.com/google/ExoPlayer/issues/10057)).
12+
* Metadata:
13+
* `MetadataRenderer` can now be configured to render metadata as soon as
14+
they are available. Create an instance with
15+
`MetadataRenderer(MetadataOutput, Looper, MetadataDecoderFactory,
16+
boolean)` to specify whether the renderer will output metadata early or
17+
in sync with the player position.
18+
19+
### 1.0.0-beta02 (2022-07-15)
20+
21+
This release corresponds to the
22+
[ExoPlayer 2.18.1 release](https://github.com/google/ExoPlayer/releases/tag/r2.18.1).
23+
524
* Core library:
625
* Ensure that changing the `ShuffleOrder` with `ExoPlayer.setShuffleOrder`
726
results in a call to `Player.Listener#onTimelineChanged` with

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-beta01'
16-
releaseVersionCode = 1_000_000_1_01
15+
releaseVersion = '1.0.0-beta02'
16+
releaseVersionCode = 1_000_000_1_02
1717
minSdkVersion = 16
1818
appTargetSdkVersion = 29
1919
// Upgrading this requires [Internal ref: b/193254928] to be fixed, or some

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-beta01";
32+
public static final String VERSION = "1.0.0-beta02";
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-beta01";
36+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.0.0-beta02";
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_01;
50+
public static final int VERSION_INT = 1_000_000_1_02;
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)