Skip to content

Commit

Permalink
build: bump gradle dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lneugebauer committed Jan 17, 2025
1 parent f4a18c9 commit db2ac77
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'dagger.hilt.android.plugin'
id 'kotlin-android'
id 'kotlin-kapt'
id "org.jlleitschuh.gradle.ktlint" version "12.1.1"
id "org.jlleitschuh.gradle.ktlint" version "12.1.2"
}

def keystorePropertiesFile = rootProject.file("keystore.properties")
Expand All @@ -15,7 +15,7 @@ if (keystorePropertiesFile.exists()) {
}

android {
compileSdk 34
compileSdk 35
if (keystoreProperties.containsKey('storeFile')) {
signingConfigs {
upload {
Expand All @@ -36,7 +36,7 @@ android {
defaultConfig {
applicationId "de.lukasneugebauer.nextcloudcookbook"
minSdk 24
targetSdk 34
targetSdk 35
versionCode 49
versionName "0.23.0"

Expand Down Expand Up @@ -108,18 +108,18 @@ kotlin {

dependencies {

coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.4'

implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7'
implementation 'androidx.hilt:hilt-navigation-compose:1.2.0'
implementation 'androidx.activity:activity-compose:1.9.3'
implementation 'androidx.activity:activity-compose:1.10.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
implementation 'androidx.datastore:datastore-preferences:1.1.1'
implementation 'androidx.datastore:datastore-preferences:1.1.2'
implementation 'androidx.core:core-splashscreen:1.0.1'

implementation platform('androidx.compose:compose-bom:2024.11.00')
implementation platform('androidx.compose:compose-bom:2025.01.00')
implementation 'androidx.compose.ui:ui'
implementation 'androidx.compose.ui:ui-tooling-preview'

Expand Down Expand Up @@ -164,12 +164,12 @@ dependencies {

implementation 'com.colintheshots:twain:0.3.2'

implementation 'sh.calvin.reorderable:reorderable:2.4.0'
implementation 'sh.calvin.reorderable:reorderable:2.4.3'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.7.5'
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.7.6'

debugImplementation 'androidx.compose.ui:ui-tooling'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.14'
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
buildscript {
ext {
aboutlibs_version = '11.2.3'
accompanist_version = '0.36.0'
accompanist_version = '0.37.0'
acra_version = '5.12.0'
compose_compiler_version = '1.5.15'
compose_destinations_version = '1.11.7'
compose_destinations_version = '1.11.8'
compose_settings_version = '1.0.3'
hilt_version = '2.52'
hilt_version = '2.55'
kotlin_version = '1.9.25'
ksp_version = '1.0.20'
retrofit_version = '2.11.0'
Expand Down

0 comments on commit db2ac77

Please sign in to comment.