build: update media3 to 1.0.2
This commit is contained in:
parent
97e144058a
commit
ded7956319
5 changed files with 6 additions and 3 deletions
|
@ -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 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
|
||||
|
||||
#### What's Fixed
|
||||
|
|
|
@ -210,8 +210,6 @@ private class DeviceLibraryImpl(rawSongs: List<RawSong>, settings: MusicSettings
|
|||
albums: List<AlbumImpl>,
|
||||
settings: MusicSettings
|
||||
): 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,
|
||||
// different multi-artist combinations are not treated as different artists.
|
||||
val musicByArtist = mutableMapOf<RawArtist, MutableList<Music>>()
|
||||
|
|
|
@ -36,6 +36,7 @@ import org.oxycblt.auxio.util.unlikelyToBeNull
|
|||
|
||||
/**
|
||||
* A [ViewBindingDialogFragment] that asks the user to confirm the deletion of a [Playlist].
|
||||
*
|
||||
* @author Alexander Capehart (OxygenCobalt)
|
||||
*/
|
||||
@AndroidEntryPoint
|
||||
|
|
2
media
2
media
|
@ -1 +1 @@
|
|||
Subproject commit 4ab06ffd6039c038f2995f1a06bafed28bdd9be4
|
||||
Subproject commit 8712967a789192d60d2207451cd5ed2b3191999e
|
|
@ -1,4 +1,5 @@
|
|||
include ':app'
|
||||
rootProject.name = "Auxio"
|
||||
gradle.ext.androidxMediaModulePrefix = 'media-'
|
||||
gradle.ext.androidxMediaProjectName = 'media-'
|
||||
apply from: file("media/core_settings.gradle")
|
Loading…
Reference in a new issue