Bump version for bugfix release
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=151028565
This commit is contained in:
parent
0e6ef0edf6
commit
f4c33daf77
@ -1,5 +1,14 @@
|
|||||||
# Release notes #
|
# Release notes #
|
||||||
|
|
||||||
|
### r2.3.1 ###
|
||||||
|
|
||||||
|
* Fix NPE enabling WebVTT subtitles in DASH streams
|
||||||
|
([#2596](https://github.com/google/ExoPlayer/issues/2596)).
|
||||||
|
* Fix skipping to keyframes when MediaCodecVideoRenderer is enabled but without
|
||||||
|
a Surface ([#2575](https://github.com/google/ExoPlayer/issues/2575)).
|
||||||
|
* Minor fix for CEA-708 decoder
|
||||||
|
([#2595](https://github.com/google/ExoPlayer/issues/2595)).
|
||||||
|
|
||||||
### r2.3.0 ###
|
### r2.3.0 ###
|
||||||
|
|
||||||
* GVR extension: Wraps the Google VR Audio SDK to provide spatial audio
|
* GVR extension: Wraps the Google VR Audio SDK to provide spatial audio
|
||||||
|
@ -37,7 +37,7 @@ allprojects {
|
|||||||
releaseRepoName = getBintrayRepo()
|
releaseRepoName = getBintrayRepo()
|
||||||
releaseUserOrg = 'google'
|
releaseUserOrg = 'google'
|
||||||
releaseGroupId = 'com.google.android.exoplayer'
|
releaseGroupId = 'com.google.android.exoplayer'
|
||||||
releaseVersion = 'r2.3.0'
|
releaseVersion = 'r2.3.1'
|
||||||
releaseWebsite = 'https://github.com/google/ExoPlayer'
|
releaseWebsite = 'https://github.com/google/ExoPlayer'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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="2300"
|
android:versionCode="2301"
|
||||||
android:versionName="2.3.0">
|
android:versionName="2.3.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"/>
|
||||||
|
@ -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.3.0";
|
String VERSION = "2.3.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 = 2003000;
|
int VERSION_INT = 2003001;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user