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:
Alexander Capehart 2022-09-23 10:34:40 -06:00
parent 62ee46cfe6
commit 5c76838f69
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
3 changed files with 8 additions and 4 deletions

View file

@ -69,9 +69,9 @@ dependencies {
// General // General
// 1.4.0 is used in order to avoid a ripple bug in material components // 1.4.0 is used in order to avoid a ripple bug in material components
implementation "androidx.appcompat:appcompat:1.4.0" implementation "androidx.appcompat:appcompat:1.4.0"
implementation "androidx.core:core-ktx:1.8.0" implementation "androidx.core:core-ktx:1.9.0"
implementation "androidx.activity:activity-ktx:1.6.0-rc01" implementation "androidx.activity:activity-ktx:1.6.0"
implementation "androidx.fragment:fragment-ktx:1.5.2" implementation "androidx.fragment:fragment-ktx:1.5.3"
// UI // UI
implementation "androidx.recyclerview:recyclerview:1.2.1" implementation "androidx.recyclerview:recyclerview:1.2.1"

View file

@ -377,6 +377,7 @@ class Song constructor(raw: Raw, settings: Settings) : Music() {
class Raw class Raw
constructor( constructor(
var mediaStoreId: Long? = null, var mediaStoreId: Long? = null,
var mbid: UUID? = null,
var name: String? = null, var name: String? = null,
var sortName: String? = null, var sortName: String? = null,
var displayName: String? = null, var displayName: String? = null,
@ -391,11 +392,14 @@ class Song constructor(raw: Raw, settings: Settings) : Music() {
var disc: Int? = null, var disc: Int? = null,
var date: Date? = null, var date: Date? = null,
var albumMediaStoreId: Long? = null, var albumMediaStoreId: Long? = null,
var albumMbid: UUID? = null,
var albumName: String? = null, var albumName: String? = null,
var albumSortName: String? = null, var albumSortName: String? = null,
var albumReleaseType: List<String> = listOf(), var albumReleaseType: List<String> = listOf(),
var artistMbids: List<UUID> = listOf(),
var artistNames: List<String> = listOf(), var artistNames: List<String> = listOf(),
var artistSortNames: List<String> = listOf(), var artistSortNames: List<String> = listOf(),
var albumArtistMbids: List<UUID> = listOf(),
var albumArtistNames: List<String> = listOf(), var albumArtistNames: List<String> = listOf(),
var albumArtistSortNames: List<String> = listOf(), var albumArtistSortNames: List<String> = listOf(),
var genreNames: List<String> = listOf() var genreNames: List<String> = listOf()

View file

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.7.10' ext.kotlin_version = '1.7.10'
ext.navigation_version = "2.5.1" ext.navigation_version = "2.5.2"
repositories { repositories {
google() google()