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 bc71932..9e74a4e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -50,7 +50,7 @@ android { } dependencies { - def room_version = '2.7.2' + def room_version = '2.8.4' implementation "androidx.room:room-runtime:$room_version" //kapt "androidx.room:room-compiler:$room_version" @@ -60,9 +60,9 @@ dependencies { implementation "androidx.room:room-ktx:$room_version" implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2' - implementation 'androidx.core:core-ktx:1.16.0' + implementation 'androidx.core:core-ktx:1.17.0' implementation 'androidx.appcompat:appcompat:1.7.1' - implementation 'com.google.android.material:material:1.12.0' + implementation 'com.google.android.material:material:1.13.0' implementation 'androidx.constraintlayout:constraintlayout:2.2.1' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.3.0' diff --git a/build.gradle b/build.gradle index ee0e870..e94612f 100644 --- a/build.gradle +++ b/build.gradle @@ -16,13 +16,13 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = "2.2.0" + ext.kotlin_version = "2.2.21" repositories { google() mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.11.1' + classpath 'com.android.tools.build:gradle:8.13.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong @@ -31,8 +31,8 @@ buildscript { } plugins { - 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.android' version '2.2.21' apply false + id 'com.google.devtools.ksp' version '2.3.3' apply false } allprojects { 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