Rebuilding audio player and handling playback sessions in android. Moving all logic natively

This commit is contained in:
advplyr 2022-04-02 12:12:00 -05:00
parent 314dc960f2
commit f70f707100
19 changed files with 180 additions and 596 deletions

View file

@ -15,10 +15,18 @@ const BookCoverAspectRatio = {
SQUARE: 1
}
const PlayMethod = {
DIRECTPLAY: 0,
DIRECTSTREAM: 1,
TRANSCODE: 2,
LOCAL: 3
}
const Constants = {
DownloadStatus,
CoverDestination,
BookCoverAspectRatio
BookCoverAspectRatio,
PlayMethod
}
export default ({ app }, inject) => {