Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6503f016
authored
Mar 23, 2017
by
Oliver Woodman
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Update release notes + bump versions
parent
c96f18f5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
5 deletions
RELEASENOTES.md
build.gradle
demo/src/main/AndroidManifest.xml
library/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java
RELEASENOTES.md
View file @
6503f016
# 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 ###
*
GVR extension: Wraps the Google VR Audio SDK to provide spatial audio
...
...
build.gradle
View file @
6503f016
...
...
@@ -37,7 +37,7 @@ allprojects {
releaseRepoName
=
getBintrayRepo
()
releaseUserOrg
=
'google'
releaseGroupId
=
'com.google.android.exoplayer'
releaseVersion
=
'r2.3.
0
'
releaseVersion
=
'r2.3.
1
'
releaseWebsite
=
'https://github.com/google/ExoPlayer'
}
}
...
...
demo/src/main/AndroidManifest.xml
View file @
6503f016
...
...
@@ -16,8 +16,8 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"com.google.android.exoplayer2.demo"
android:versionCode=
"230
0
"
android:versionName=
"2.3.
0
"
>
android:versionCode=
"230
1
"
android:versionName=
"2.3.
1
"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
...
...
library/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java
View file @
6503f016
...
...
@@ -23,7 +23,7 @@ public interface ExoPlayerLibraryInfo {
/**
* 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.
...
...
@@ -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
=
200300
0
;
int
VERSION_INT
=
200300
1
;
/**
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment