build: upgrade deps
Upgrade the dependencies I can without breaking the app: core -> 1.9.0 activity -> 1.6.0 fragment -> 1.5.3 nav -> 2.5.2
This commit is contained in:
parent
62ee46cfe6
commit
5c76838f69
3 changed files with 8 additions and 4 deletions
|
@ -69,9 +69,9 @@ dependencies {
|
|||
// General
|
||||
// 1.4.0 is used in order to avoid a ripple bug in material components
|
||||
implementation "androidx.appcompat:appcompat:1.4.0"
|
||||
implementation "androidx.core:core-ktx:1.8.0"
|
||||
implementation "androidx.activity:activity-ktx:1.6.0-rc01"
|
||||
implementation "androidx.fragment:fragment-ktx:1.5.2"
|
||||
implementation "androidx.core:core-ktx:1.9.0"
|
||||
implementation "androidx.activity:activity-ktx:1.6.0"
|
||||
implementation "androidx.fragment:fragment-ktx:1.5.3"
|
||||
|
||||
// UI
|
||||
implementation "androidx.recyclerview:recyclerview:1.2.1"
|
||||
|
|
|
@ -377,6 +377,7 @@ class Song constructor(raw: Raw, settings: Settings) : Music() {
|
|||
class Raw
|
||||
constructor(
|
||||
var mediaStoreId: Long? = null,
|
||||
var mbid: UUID? = null,
|
||||
var name: String? = null,
|
||||
var sortName: String? = null,
|
||||
var displayName: String? = null,
|
||||
|
@ -391,11 +392,14 @@ class Song constructor(raw: Raw, settings: Settings) : Music() {
|
|||
var disc: Int? = null,
|
||||
var date: Date? = null,
|
||||
var albumMediaStoreId: Long? = null,
|
||||
var albumMbid: UUID? = null,
|
||||
var albumName: String? = null,
|
||||
var albumSortName: String? = null,
|
||||
var albumReleaseType: List<String> = listOf(),
|
||||
var artistMbids: List<UUID> = listOf(),
|
||||
var artistNames: List<String> = listOf(),
|
||||
var artistSortNames: List<String> = listOf(),
|
||||
var albumArtistMbids: List<UUID> = listOf(),
|
||||
var albumArtistNames: List<String> = listOf(),
|
||||
var albumArtistSortNames: List<String> = listOf(),
|
||||
var genreNames: List<String> = listOf()
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.7.10'
|
||||
ext.navigation_version = "2.5.1"
|
||||
ext.navigation_version = "2.5.2"
|
||||
|
||||
repositories {
|
||||
google()
|
||||
|
|
Loading…
Reference in a new issue