chore: update dependencies, add glide ksp
Signed-off-by: Infi <wingit@geist.ga>
This commit is contained in:
parent
89c292778b
commit
a1d772ed46
|
|
@ -4,6 +4,7 @@ plugins {
|
|||
id 'org.jetbrains.kotlin.plugin.serialization'
|
||||
id 'com.mikepenz.aboutlibraries.plugin'
|
||||
id 'com.google.dagger.hilt.android'
|
||||
id 'com.google.devtools.ksp'
|
||||
id "io.sentry.android.gradle" version "3.4.2"
|
||||
|
||||
id 'kotlin-kapt'
|
||||
|
|
@ -169,6 +170,7 @@ dependencies {
|
|||
// Glide - Image Loading
|
||||
implementation "com.github.bumptech.glide:glide:$glide_version"
|
||||
implementation "com.github.bumptech.glide:compose:1.0.0-beta1-SNAPSHOT"
|
||||
ksp "com.github.bumptech.glide:ksp:$glide_version"
|
||||
|
||||
// AboutLibraries - automated OSS library attribution
|
||||
implementation "com.mikepenz:aboutlibraries-compose:$aboutlibraries_version"
|
||||
|
|
|
|||
11
build.gradle
11
build.gradle
|
|
@ -1,13 +1,13 @@
|
|||
buildscript {
|
||||
ext {
|
||||
compose_version = '1.4.0'
|
||||
compose_bom_version = '2023.05.01'
|
||||
compose_version = '1.5.3'
|
||||
compose_bom_version = '2023.09.00'
|
||||
accompanist_version = '0.31.2-alpha'
|
||||
okhttp_version = '4.10.0'
|
||||
nav_version = '2.7.1'
|
||||
hilt_version = '2.44'
|
||||
coil_version = '2.2.2'
|
||||
glide_version = '4.14.2'
|
||||
glide_version = '4.16.0'
|
||||
ktor_version = '2.3.0'
|
||||
aboutlibraries_version = '10.5.2'
|
||||
media3_version = '1.1.1'
|
||||
|
|
@ -19,10 +19,11 @@ buildscript {
|
|||
plugins {
|
||||
id 'com.android.application' version '8.2.0-alpha16' apply false
|
||||
id 'com.android.library' version '8.2.0-alpha16' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.0' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.10' apply false
|
||||
id "com.google.dagger.hilt.android" version "2.44" apply false
|
||||
id 'com.mikepenz.aboutlibraries.plugin' version "10.5.2" apply false
|
||||
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
|
||||
}
|
||||
|
||||
tasks.register('clean', Delete) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue