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
92e05bcd
authored
May 14, 2021
by
Oliver Woodman
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Remove dev release notes from release
parent
bd543943
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
29 deletions
RELEASENOTES.md
RELEASENOTES.md
View file @
92e05bcd
# Release notes
### dev-v2 (not yet released)
*
Remove deprecated symbols:
*
Remove
`PlaybackPreparer`
. UI components that previously had
`setPlaybackPreparer`
methods will now call
`Player.prepare`
by default.
If this behavior is sufficient, use of
`PlaybackPreparer`
can be removed
from application code without replacement. For custom preparation logic,
replace calls to
`setPlaybackPreparer`
with calls to
`setControlDispatcher`
on the same components, passing a
`ControlDispatcher`
that implements custom preparation logic in
`dispatchPrepare`
. Extend
`DefaultControlDispatcher`
to avoid having to
implement the other
`ControlDispatcher`
methods.
*
Remove
`setRewindIncrementMs`
and
`setFastForwardIncrementMs`
from UI
components. Use
`setControlDispatcher`
on the same components, passing a
`DefaultControlDispatcher`
built using
`DefaultControlDispatcher(long,
long)`
.
*
Remove
`PlayerNotificationManager`
constructors and
`createWith`
methods. Use
`PlayerNotificationManager.Builder`
instead.
*
Remove
`PlayerNotificationManager.setNotificationListener`
. Use
`PlayerNotificationManager.Builder.setNotificationListener`
instead.
*
Remove
`PlayerNotificationManager`
`setUseNavigationActions`
and
`setUseNavigationActionsInCompactView`
. Use
`setUseNextAction`
,
`setUsePreviousAction`
,
`setUseNextActionInCompactView`
and
`setUsePreviousActionInCompactView`
instead.
*
Remove
`Format.create`
methods. Use
`Format.Builder`
instead.
*
Remove
`CastPlayer`
specific playlist manipulation methods. Use
`setMediaItems`
,
`addMediaItems`
,
`removeMediaItem`
and
`moveMediaItem`
instead.
### 2.14.0 (2021-05-13)
*
Core Library:
...
...
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