build: update deps
AGP -> 8.0.2 Coil -> 2.4.0
This commit is contained in:
parent
ba94d4fa21
commit
21a6b97bfa
3 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue