build: update media3 to 1.0.2

This commit is contained in:
Alexander Capehart 2023-05-17 19:06:53 -06:00
parent 97e144058a
commit ded7956319
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
5 changed files with 6 additions and 3 deletions

View file

@ -13,6 +13,9 @@ be parsed as images
- Fixed issue where the notification would not respond to changes in the album cover setting - Fixed issue where the notification would not respond to changes in the album cover setting
- Fixed issue where short names starting with an article would not be correctly sorted (ex. "the 1") - Fixed issue where short names starting with an article would not be correctly sorted (ex. "the 1")
#### Dev/Meta
- Switched to androidx media3 (New Home of ExoPlayer) for backing player components
## 3.0.5 ## 3.0.5
#### What's Fixed #### What's Fixed

View file

@ -210,8 +210,6 @@ private class DeviceLibraryImpl(rawSongs: List<RawSong>, settings: MusicSettings
albums: List<AlbumImpl>, albums: List<AlbumImpl>,
settings: MusicSettings settings: MusicSettings
): List<ArtistImpl> { ): List<ArtistImpl> {
// TODO: Debug an issue with my current library config that results in two duplicate
// artists.
// Add every raw artist credited to each Song/Album to the grouping. This way, // Add every raw artist credited to each Song/Album to the grouping. This way,
// different multi-artist combinations are not treated as different artists. // different multi-artist combinations are not treated as different artists.
val musicByArtist = mutableMapOf<RawArtist, MutableList<Music>>() val musicByArtist = mutableMapOf<RawArtist, MutableList<Music>>()

View file

@ -36,6 +36,7 @@ import org.oxycblt.auxio.util.unlikelyToBeNull
/** /**
* A [ViewBindingDialogFragment] that asks the user to confirm the deletion of a [Playlist]. * A [ViewBindingDialogFragment] that asks the user to confirm the deletion of a [Playlist].
*
* @author Alexander Capehart (OxygenCobalt) * @author Alexander Capehart (OxygenCobalt)
*/ */
@AndroidEntryPoint @AndroidEntryPoint

2
media

@ -1 +1 @@
Subproject commit 4ab06ffd6039c038f2995f1a06bafed28bdd9be4 Subproject commit 8712967a789192d60d2207451cd5ed2b3191999e

View file

@ -1,4 +1,5 @@
include ':app' include ':app'
rootProject.name = "Auxio" rootProject.name = "Auxio"
gradle.ext.androidxMediaModulePrefix = 'media-' gradle.ext.androidxMediaModulePrefix = 'media-'
gradle.ext.androidxMediaProjectName = 'media-'
apply from: file("media/core_settings.gradle") apply from: file("media/core_settings.gradle")