diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 39cb17d..27033c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -38,7 +38,7 @@ jobs: SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} - - uses: softprops/action-gh-release@v2.6.1 + - uses: softprops/action-gh-release@v3.0.0 if: startsWith(github.ref, 'refs/tags/') with: files: dist/*.apk diff --git a/app/build.gradle b/app/build.gradle index d25b115..3cdd522 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -82,7 +82,7 @@ dependencies { implementation "androidx.room:room-runtime:$room_version" ksp "androidx.room:room-compiler:$room_version" implementation "androidx.room:room-ktx:$room_version" - implementation 'javax.annotation:jsr250-api:1.0' + implementation 'javax.annotation:javax.annotation-api:1.3.2' implementation 'com.google.android.material:material:1.13.0' implementation 'androidx.core:core-ktx:1.18.0' implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.10.0" diff --git a/build.gradle b/build.gradle index 088da77..ef187dd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '2.3.20' + ext.kotlin_version = '2.3.21' repositories { google() mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:9.1.0' + classpath 'com.android.tools.build:gradle:9.2.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong @@ -16,7 +16,7 @@ buildscript { } plugins { - id 'com.google.devtools.ksp' version '2.3.6' apply false + id 'com.google.devtools.ksp' version '2.3.7' apply false } allprojects { repositories { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index dbc3ce4..c61a118 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-9.4.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME