build: update deps

AGP -> 8.0.2
Coil -> 2.4.0
This commit is contained in:
Alexander Capehart 2023-05-25 12:55:42 -06:00
parent ba94d4fa21
commit 21a6b97bfa
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
3 changed files with 6 additions and 4 deletions

View file

@ -125,7 +125,7 @@ dependencies {
implementation project(":media-lib-decoder-ffmpeg")
// Image loading
implementation 'io.coil-kt:coil-base:2.3.0'
implementation 'io.coil-kt:coil-base:2.4.0'
// Material
// TODO: Stuck on 1.8.0-alpha01 until ripple bug with tab layout is actually available

View file

@ -83,9 +83,11 @@ open class FakeArtist : Artist {
get() = throw NotImplementedError()
override val albums: List<Album>
get() = throw NotImplementedError()
override val genres: List<Genre>
override val explicitAlbums: List<Album>
get() = throw NotImplementedError()
override val isCollaborator: Boolean
override val implicitAlbums: List<Album>
get() = throw NotImplementedError()
override val genres: List<Genre>
get() = throw NotImplementedError()
override val durationMs: Long
get() = throw NotImplementedError()

View file

@ -11,7 +11,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.1'
classpath 'com.android.tools.build:gradle:8.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.18.0"