File tree Expand file tree Collapse file tree 4 files changed +10
-11
lines changed
libraries/common/src/main/java/androidx/media3/common Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 17
17
label : Media3 Version
18
18
description : What version of Media3 are you using?
19
19
options :
20
+ - 1.0.0-beta03
20
21
- 1.0.0-beta02
21
22
- 1.0.0-beta01
22
23
- 1.0.0-alpha03
Original file line number Diff line number Diff line change 1
1
Release notes
2
2
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 ) .
4
7
5
8
* Core library:
6
9
* Add ` ExoPlayer.isTunnelingEnabled ` to check if tunneling is enabled for
@@ -16,9 +19,6 @@ Release notes
16
19
* Close the Tracing "doSomeWork" block when offload is enabled.
17
20
* Try alternative decoder for Dolby Vision if display does not support it.
18
21
([ #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 ) ).
22
22
* Prefer other tracks to Dolby Vision if display does not support it.
23
23
([ #8944 ] ( https://github.com/google/ExoPlayer/issues/8944 ) ).
24
24
* Fix session tracking problem with fast seeks in ` PlaybackStatsListener `
@@ -137,8 +137,6 @@ Release notes
137
137
* Add muxer watchdog timer to detect when generating an output sample is
138
138
too slow.
139
139
* Remove deprecated symbols:
140
- * Remove ` DefaultAudioSink ` constructors, use ` DefaultAudioSink.Builder `
141
- instead.
142
140
* Remove ` Transformer.Builder.setOutputMimeType(String) ` . This feature has
143
141
been removed. The MIME type will always be MP4 when the default muxer is
144
142
used.
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
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
17
17
minSdkVersion = 16
18
18
appTargetSdkVersion = 33
19
19
// API version before restricting local file access.
Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ public final class MediaLibraryInfo {
29
29
30
30
/** The version of the library expressed as a string, for example "1.2.3" or "1.2.3-beta01". */
31
31
// 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 " ;
33
33
34
34
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */
35
35
// 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 " ;
37
37
38
38
/**
39
39
* The version of the library expressed as an integer, for example 1002003300.
@@ -47,7 +47,7 @@ public final class MediaLibraryInfo {
47
47
* (123-045-006-3-00).
48
48
*/
49
49
// 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 ;
51
51
52
52
/** Whether the library was compiled with {@link Assertions} checks enabled. */
53
53
public static final boolean ASSERTIONS_ENABLED = true ;
You can’t perform that action at this time.
0 commit comments