diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f12515e..804a362 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,17 +10,17 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set Up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: 'zulu' # See 'Supported distributions' for available options java-version: '17' cache: 'gradle' - name: Setup Gradle - uses: gradle/actions/setup-gradle@v4 + uses: gradle/actions/setup-gradle@v5 - name: Setup Android SDK uses: android-actions/setup-android@v3 diff --git a/app/build.gradle b/app/build.gradle index 544ca44..01cf6d4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -62,18 +62,18 @@ android { } dependencies { - def room_version = '2.7.2' + def room_version = '2.8.4' implementation "androidx.room:room-runtime:$room_version" ksp("androidx.room:room-compiler:$room_version") implementation "androidx.room:room-ktx:$room_version" - implementation 'androidx.core:core-ktx:1.16.0' - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.9.2' - implementation 'androidx.activity:activity-compose:1.10.1' + implementation 'androidx.core:core-ktx:1.17.0' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.10.0' + implementation 'androidx.activity:activity-compose:1.12.1' implementation "androidx.compose.ui:ui:$compose_ui_version" implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version" - implementation 'androidx.compose.material:material:1.8.3' + implementation 'androidx.compose.material:material:1.10.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.3.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0' diff --git a/build.gradle b/build.gradle index 40ead2e..fcec130 100644 --- a/build.gradle +++ b/build.gradle @@ -16,13 +16,13 @@ buildscript { ext { - compose_ui_version = '1.8.3' + compose_ui_version = '1.10.0' } }// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id 'com.android.application' version '8.11.1' apply false - id 'com.android.library' version '8.11.1' apply false - id 'org.jetbrains.kotlin.android' version '2.2.0' apply false - id 'com.google.devtools.ksp' version '2.2.0-2.0.2' apply false - id 'org.jetbrains.kotlin.plugin.compose' version '2.2.0' apply false + id 'com.android.application' version '8.13.2' apply false + id 'com.android.library' version '8.13.2' apply false + id 'org.jetbrains.kotlin.android' version '2.2.21' apply false + id 'com.google.devtools.ksp' version '2.3.3' apply false + id 'org.jetbrains.kotlin.plugin.compose' version '2.2.21' apply false } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d4081da..23449a2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME