diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f12515e..ef58e58 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,20 +10,20 @@ 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@v6 - name: Setup Android SDK - uses: android-actions/setup-android@v3 + uses: android-actions/setup-android@v4 - name: Build project and run local and device tests run: ./gradlew :app:assembleDebug diff --git a/app/build.gradle b/app/build.gradle index 544ca44..0e7919c 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.19.0' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.10.0' + implementation 'androidx.activity:activity-compose:1.13.0' 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.11.2' 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..519f601 100644 --- a/build.gradle +++ b/build.gradle @@ -16,13 +16,13 @@ buildscript { ext { - compose_ui_version = '1.8.3' + compose_ui_version = '1.11.2' } }// 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 '9.2.1' apply false + id 'com.android.library' version '9.2.1' apply false + id 'org.jetbrains.kotlin.android' version '2.4.0' apply false + id 'com.google.devtools.ksp' version '2.3.9' apply false + id 'org.jetbrains.kotlin.plugin.compose' version '2.4.0' apply false } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d4081da..5dd3c01 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.5.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME