chore: upgrade dependencies

Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
Infi 2023-12-09 18:06:37 +01:00
parent 7b011e3206
commit 921af46269
2 changed files with 14 additions and 14 deletions

View File

@ -169,7 +169,7 @@ sentry {
dependencies {
// Android/Kotlin Core
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.core:core-ktx:1.12.0'
implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.10"
// Kotlinx - various first-party extensions for Kotlin
@ -188,9 +188,9 @@ dependencies {
implementation 'androidx.compose.material3:material3-window-size-class'
implementation "androidx.compose.ui:ui-tooling-preview"
implementation "androidx.compose.runtime:runtime-livedata"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1'
implementation 'androidx.activity:activity-compose:1.7.2'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2'
implementation 'androidx.activity:activity-compose:1.8.1'
// Accompanist - Jetpack Compose Extensions
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
@ -212,7 +212,7 @@ dependencies {
// Hilt - Dependency Injection
implementation "com.google.dagger:hilt-android:$hilt_version"
implementation "androidx.hilt:hilt-navigation-compose:1.1.0-alpha01"
implementation "androidx.hilt:hilt-navigation-compose:1.1.0"
kapt "com.google.dagger:hilt-compiler:$hilt_version"
// Glide - Image Loading
@ -232,22 +232,22 @@ dependencies {
// Other AndroidX libraries - used for various things and never seem to have a consistent version
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation "androidx.browser:browser:1.6.0"
implementation "androidx.webkit:webkit:1.7.0"
implementation "androidx.datastore:datastore-preferences:1.1.0-alpha04"
implementation "androidx.datastore:datastore:1.1.0-alpha04"
implementation "androidx.browser:browser:1.7.0"
implementation "androidx.webkit:webkit:1.9.0"
implementation "androidx.datastore:datastore-preferences:1.1.0-alpha07"
implementation "androidx.datastore:datastore:1.1.0-alpha07"
// Libraries used for legacy View-based UI
implementation "androidx.constraintlayout:constraintlayout:2.2.0-alpha12"
implementation "androidx.constraintlayout:constraintlayout:2.2.0-alpha13"
implementation 'com.github.MikeOrtiz:TouchImageView:3.3'
implementation "androidx.appcompat:appcompat:1.7.0-alpha03"
implementation 'com.google.android.material:material:1.9.0'
implementation 'com.google.android.material:material:1.10.0'
// hCaptcha - captcha provider
implementation "com.github.hcaptcha:hcaptcha-android-sdk:3.8.1"
// JDK Desugaring - polyfill for new Java APIs
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
// Markdown
implementation "com.github.discord:SimpleAST:2.7.0"

View File

@ -4,13 +4,13 @@ buildscript {
compose_bom_version = '2023.09.00'
accompanist_version = '0.31.2-alpha'
okhttp_version = '4.10.0'
nav_version = '2.7.1'
nav_version = '2.7.5'
hilt_version = '2.44'
coil_version = '2.2.2'
glide_version = '4.16.0'
ktor_version = '2.3.0'
aboutlibraries_version = '10.9.1'
media3_version = '1.1.1'
media3_version = '1.2.0'
}
}