Skip to content

Commit fbf8ac3

Browse files
committed
Version bump to media3:1.3.0-rc01
PiperOrigin-RevId: 605573991 (cherry picked from commit a31a384)
1 parent 43ee291 commit fbf8ac3

File tree

3 files changed

+5
-38
lines changed

3 files changed

+5
-38
lines changed

RELEASENOTES.md

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

3-
### Unreleased changes
4-
5-
* Common Library:
6-
* ExoPlayer:
7-
* Transformer:
8-
* Track Selection:
9-
* Extractors:
10-
* Audio:
11-
* Video:
12-
* Text:
13-
* Metadata:
14-
* Image:
15-
* DRM:
16-
* Effect:
17-
* Muxers:
18-
* IMA extension:
19-
* Session:
20-
* UI:
21-
* Downloads:
22-
* OkHttp Extension:
23-
* Cronet Extension:
24-
* RTMP Extension:
25-
* HLS Extension:
26-
* DASH Extension:
27-
* Smooth Streaming Extension:
28-
* RTSP Extension:
29-
* Decoder Extensions (FFmpeg, VP9, AV1, MIDI, etc.):
30-
* Leanback extension:
31-
* Cast Extension:
32-
* Test Utilities:
33-
* Remove deprecated symbols:
34-
* Demo app:
35-
363
## 1.3
374

385
### 1.3.0-rc01 (2024-02-22)

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.0-beta01'
16-
releaseVersionCode = 1_003_000_1_01
15+
releaseVersion = '1.3.0-rc01'
16+
releaseVersionCode = 1_003_000_2_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.0-beta01";
32+
public static final String VERSION = "1.3.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.3.0-beta01";
36+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.3.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_003_000_1_01;
50+
public static final int VERSION_INT = 1_003_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)