Skip to content

Commit ae14bc1

Browse files
committed
Version bump to media3:1.4.0-alpha01
PiperOrigin-RevId: 623185060 (cherry picked from commit 2622e56)
1 parent 947e6de commit ae14bc1

File tree

3 files changed

+8
-43
lines changed

3 files changed

+8
-43
lines changed

RELEASENOTES.md

Lines changed: 3 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,5 @@
11
# Release notes
22

3-
### Unreleased changes
4-
5-
* Common Library:
6-
* ExoPlayer:
7-
* Add `reset` to `BasePreloadManager` to release all the holding sources
8-
while keep the preload manager instance.
9-
* Transformer:
10-
* Track Selection:
11-
* Extractors:
12-
* Audio:
13-
* Video:
14-
* Text:
15-
* Metadata:
16-
* Image:
17-
* DRM:
18-
* Effect:
19-
* Muxers:
20-
* IMA extension:
21-
* Session:
22-
* UI:
23-
* Downloads:
24-
* OkHttp Extension:
25-
* Cronet Extension:
26-
* RTMP Extension:
27-
* HLS Extension:
28-
* DASH Extension:
29-
* Smooth Streaming Extension:
30-
* RTSP Extension:
31-
* Decoder Extensions (FFmpeg, VP9, AV1, MIDI, etc.):
32-
* Leanback extension:
33-
* Cast Extension:
34-
* Test Utilities:
35-
* Remove deprecated symbols:
36-
* Demo app:
37-
383
## 1.4
394

405
### 1.4.0-alpha01 (2024-04-11)
@@ -93,7 +58,7 @@ This release includes the following changes since the
9358
* Update Overlay matrix implementation to make it consistent with the
9459
documentation by flipping the x and y values applied in
9560
`setOverlayFrameAnchor()`. If using
96-
`OverlaySettings.Builder.setOverlayFrameAnchor()`, please flip their x
61+
`OverlaySettings.Builder.setOverlayFrameAnchor()`, flip their x
9762
and y values by multiplying them by `-1`.
9863
* Session:
9964
* Change default of `CommandButton.enabled` to `true` and ensure the value
@@ -106,7 +71,7 @@ This release includes the following changes since the
10671
([#1219](https://github.com/androidx/media/issues/1219)).
10772
* Add `MediaSessionService.pauseAllPlayersAndStopSelf()` that conveniently
10873
allows to pause playback of all sessions and call `stopSelf` to
109-
terminate the lifecyce of the `MediaSessionService`.
74+
terminate the lifecycle of the `MediaSessionService`.
11075
* Override `MediaSessionService.onTaskRemoved(Intent)` to provide a safe
11176
default implementation that keeps the service running in the foreground
11277
if playback is ongoing or stops the service otherwise.
@@ -118,7 +83,7 @@ This release includes the following changes since the
11883
* Test Utilities:
11984
* Implement `onInit()` and `onRelease()` in `FakeRenderer`.
12085
* Change `TestPlayerRunHelper.runUntil/playUntil` methods to fail on
121-
non-fatal errors (e.g. those reported to
86+
nonfatal errors (e.g. those reported to
12287
`AnalyticsListener.onVideoCodecError`). Use the new
12388
`TestPlayerRunHelper.run(player).ignoringNonFatalErrors().untilXXX()`
12489
method chain to disable this behavior.

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.3.1'
16-
releaseVersionCode = 1_003_001_3_00
15+
releaseVersion = '1.4.0-alpha01'
16+
releaseVersionCode = 1_004_000_0_01
1717
minSdkVersion = 19
1818
// See https://developer.android.com/training/cars/media/automotive-os#automotive-module
1919
automotiveMinSdkVersion = 28

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.0-beta01". */
3131
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
32-
public static final String VERSION = "1.3.1";
32+
public static final String VERSION = "1.4.0-alpha01";
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.3.1";
36+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.4.0-alpha01";
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_003_001_3_00;
50+
public static final int VERSION_INT = 1_004_000_0_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)