mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Bump version to r2.0.4
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136697697
This commit is contained in:
parent
bebbf29a78
commit
f56b05f0d7
@ -1,22 +1,27 @@
|
||||
# Release notes #
|
||||
|
||||
### r2.0.4 ###
|
||||
|
||||
This release contains important bug fixes. Users of earlier r2.0.x versions
|
||||
should proactively update to this version.
|
||||
|
||||
* Fix crash on Jellybean devices when using playback controls
|
||||
([#1965](https://github.com/google/ExoPlayer/issues/1965)).
|
||||
|
||||
### r2.0.3 ###
|
||||
|
||||
This release contains important bug fixes. Users of r2.0.0, r2.0.1 and r2.0.2
|
||||
should proactively update to this version.
|
||||
|
||||
* Fixed NullPointerException in ExtractorMediaSource
|
||||
([#1914](https://github.com/google/ExoPlayer/issues/1914).
|
||||
([#1914](https://github.com/google/ExoPlayer/issues/1914)).
|
||||
* Fixed NullPointerException in HlsMediaPeriod
|
||||
([#1907](https://github.com/google/ExoPlayer/issues/1907).
|
||||
([#1907](https://github.com/google/ExoPlayer/issues/1907)).
|
||||
* Fixed memory leak in PlaybackControlView
|
||||
([#1908](https://github.com/google/ExoPlayer/issues/1908).
|
||||
([#1908](https://github.com/google/ExoPlayer/issues/1908)).
|
||||
* Fixed strict mode violation when using
|
||||
SimpleExoPlayer.setVideoPlayerTextureView().
|
||||
* Fixed L3 Widevine provisioning
|
||||
([#1925](https://github.com/google/ExoPlayer/issues/1925).
|
||||
([#1925](https://github.com/google/ExoPlayer/issues/1925)).
|
||||
* Fixed hiding of controls with use_controller="false"
|
||||
([#1919](https://github.com/google/ExoPlayer/issues/1919).
|
||||
([#1919](https://github.com/google/ExoPlayer/issues/1919)).
|
||||
* Improvements to Cronet network stack extension.
|
||||
* Misc bug fixes.
|
||||
|
||||
|
@ -35,7 +35,7 @@ allprojects {
|
||||
releaseRepoName = 'exoplayer'
|
||||
releaseUserOrg = 'google'
|
||||
releaseGroupId = 'com.google.android.exoplayer'
|
||||
releaseVersion = 'r2.0.3'
|
||||
releaseVersion = 'r2.0.4'
|
||||
releaseWebsite = 'https://github.com/google/ExoPlayer'
|
||||
}
|
||||
}
|
||||
|
@ -16,8 +16,8 @@
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.exoplayer2.demo"
|
||||
android:versionCode="2003"
|
||||
android:versionName="2.0.3">
|
||||
android:versionCode="2004"
|
||||
android:versionName="2.0.4">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||
|
@ -23,7 +23,7 @@ public interface ExoPlayerLibraryInfo {
|
||||
/**
|
||||
* The version of the library, expressed as a string.
|
||||
*/
|
||||
String VERSION = "2.0.3";
|
||||
String VERSION = "2.0.4";
|
||||
|
||||
/**
|
||||
* The version of the library, expressed as an integer.
|
||||
@ -32,7 +32,7 @@ public interface ExoPlayerLibraryInfo {
|
||||
* corresponding integer version 1002003 (001-002-003), and "123.45.6" has the corresponding
|
||||
* integer version 123045006 (123-045-006).
|
||||
*/
|
||||
int VERSION_INT = 2000003;
|
||||
int VERSION_INT = 2000004;
|
||||
|
||||
/**
|
||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
||||
|
@ -17,8 +17,8 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.google.android.exoplayer2.playbacktests"
|
||||
android:versionCode="2003"
|
||||
android:versionName="2.0.3">
|
||||
android:versionCode="2004"
|
||||
android:versionName="2.0.4">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user