chore: upgrade compose
Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
parent
3c3000b1d5
commit
3ddc125286
|
|
@ -139,7 +139,7 @@ android {
|
|||
compose true
|
||||
}
|
||||
composeOptions {
|
||||
kotlinCompilerExtensionVersion compose_version
|
||||
kotlinCompilerExtensionVersion compose_compiler_version
|
||||
}
|
||||
packagingOptions {
|
||||
resources {
|
||||
|
|
@ -166,7 +166,7 @@ sentry {
|
|||
dependencies {
|
||||
// Android/Kotlin Core
|
||||
implementation 'androidx.core:core-ktx:1.12.0'
|
||||
implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.10"
|
||||
implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.22"
|
||||
|
||||
// Kotlinx - various first-party extensions for Kotlin
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0"
|
||||
|
|
@ -237,7 +237,7 @@ dependencies {
|
|||
// Libraries used for legacy View-based UI
|
||||
implementation "androidx.constraintlayout:constraintlayout:2.2.0-alpha13"
|
||||
implementation "androidx.appcompat:appcompat:1.7.0-alpha03"
|
||||
implementation 'com.google.android.material:material:1.10.0'
|
||||
implementation 'com.google.android.material:material:1.11.0'
|
||||
|
||||
// hCaptcha - captcha provider
|
||||
implementation "com.github.hcaptcha:hcaptcha-android-sdk:3.8.1"
|
||||
|
|
|
|||
12
build.gradle
12
build.gradle
|
|
@ -1,8 +1,8 @@
|
|||
buildscript {
|
||||
ext {
|
||||
compose_version = '1.5.3'
|
||||
compose_bom_version = '2023.09.00'
|
||||
accompanist_version = '0.31.2-alpha'
|
||||
compose_compiler_version = '1.5.10'
|
||||
compose_bom_version = '2024.02.01'
|
||||
accompanist_version = '0.34.0'
|
||||
okhttp_version = '4.10.0'
|
||||
nav_version = '2.7.5'
|
||||
hilt_version = '2.44'
|
||||
|
|
@ -19,11 +19,11 @@ buildscript {
|
|||
plugins {
|
||||
id 'com.android.application' version '8.4.0-alpha09' apply false
|
||||
id 'com.android.library' version '8.4.0-alpha09' 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 'org.jetbrains.kotlin.android' version '1.9.22' apply false
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.22' apply false
|
||||
id "com.google.dagger.hilt.android" version "2.44" apply false
|
||||
id 'com.mikepenz.aboutlibraries.plugin' version "10.9.1" apply false
|
||||
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
|
||||
id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
|
||||
id 'org.jmailen.kotlinter' version "4.0.0" apply false
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue