mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Bump version to 2.0.1
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=134662367
This commit is contained in:
parent
8bf0243daf
commit
21626c417e
5 changed files with 16 additions and 7 deletions
|
|
@ -1,5 +1,14 @@
|
||||||
# Release notes #
|
# Release notes #
|
||||||
|
|
||||||
|
### r2.0.1 ###
|
||||||
|
|
||||||
|
* Fix playback of short duration content
|
||||||
|
([#1837](https://github.com/google/ExoPlayer/issues/1837)).
|
||||||
|
* Fix MergingMediaSource preparation issue
|
||||||
|
([#1853](https://github.com/google/ExoPlayer/issues/1853)).
|
||||||
|
* Fix live stream buffering (out of memory) issue
|
||||||
|
([#1825](https://github.com/google/ExoPlayer/issues/1825)).
|
||||||
|
|
||||||
### r2.0.0 ###
|
### r2.0.0 ###
|
||||||
|
|
||||||
ExoPlayer 2.x is a major iteration of the library. It includes significant API
|
ExoPlayer 2.x is a major iteration of the library. It includes significant API
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.google.android.exoplayer2.demo"
|
package="com.google.android.exoplayer2.demo"
|
||||||
android:versionCode="2000"
|
android:versionCode="2001"
|
||||||
android:versionName="2.0.0">
|
android:versionName="2.0.1">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ publish {
|
||||||
userOrg = 'google'
|
userOrg = 'google'
|
||||||
groupId = 'com.google.android.exoplayer'
|
groupId = 'com.google.android.exoplayer'
|
||||||
artifactId = 'exoplayer'
|
artifactId = 'exoplayer'
|
||||||
version = 'r2.0.0'
|
version = 'r2.0.1'
|
||||||
description = 'The ExoPlayer library.'
|
description = 'The ExoPlayer library.'
|
||||||
website = 'https://github.com/google/ExoPlayer'
|
website = 'https://github.com/google/ExoPlayer'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ public interface ExoPlayerLibraryInfo {
|
||||||
/**
|
/**
|
||||||
* The version of the library, expressed as a string.
|
* The version of the library, expressed as a string.
|
||||||
*/
|
*/
|
||||||
String VERSION = "2.0.0";
|
String VERSION = "2.0.1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The version of the library, expressed as an integer.
|
* 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
|
* corresponding integer version 1002003 (001-002-003), and "123.45.6" has the corresponding
|
||||||
* integer version 123045006 (123-045-006).
|
* integer version 123045006 (123-045-006).
|
||||||
*/
|
*/
|
||||||
int VERSION_INT = 2000000;
|
int VERSION_INT = 2000001;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
* 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"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
package="com.google.android.exoplayer2.playbacktests"
|
package="com.google.android.exoplayer2.playbacktests"
|
||||||
android:versionCode="2000"
|
android:versionCode="2001"
|
||||||
android:versionName="2.0.0">
|
android:versionName="2.0.1">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue