Skip to content

Commit 1b4995a

Browse files
Update all dependencies
1 parent 5db7d9a commit 1b4995a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

1515
- name: Set Up JDK
16-
uses: actions/setup-java@v4
16+
uses: actions/setup-java@v5
1717
with:
1818
distribution: 'zulu' # See 'Supported distributions' for available options
1919
java-version: '17'
2020
cache: 'gradle'
2121

2222
- name: Setup Gradle
23-
uses: gradle/actions/setup-gradle@v4
23+
uses: gradle/actions/setup-gradle@v5
2424

2525
- name: Setup Android SDK
2626
uses: android-actions/setup-android@v3

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ android {
5050
}
5151

5252
dependencies {
53-
def room_version = '2.7.2'
53+
def room_version = '2.8.3'
5454

5555
implementation "androidx.room:room-runtime:$room_version"
5656
//kapt "androidx.room:room-compiler:$room_version"
@@ -60,9 +60,9 @@ dependencies {
6060
implementation "androidx.room:room-ktx:$room_version"
6161

6262
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2'
63-
implementation 'androidx.core:core-ktx:1.16.0'
63+
implementation 'androidx.core:core-ktx:1.17.0'
6464
implementation 'androidx.appcompat:appcompat:1.7.1'
65-
implementation 'com.google.android.material:material:1.12.0'
65+
implementation 'com.google.android.material:material:1.13.0'
6666
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
6767
testImplementation 'junit:junit:4.13.2'
6868
androidTestImplementation 'androidx.test.ext:junit:1.3.0'

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
// Top-level build file where you can add configuration options common to all sub-projects/modules.
1818
buildscript {
19-
ext.kotlin_version = "2.2.0"
19+
ext.kotlin_version = "2.2.21"
2020
repositories {
2121
google()
2222
mavenCentral()
2323
}
2424
dependencies {
25-
classpath 'com.android.tools.build:gradle:8.11.1'
25+
classpath 'com.android.tools.build:gradle:8.13.0'
2626
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2727

2828
// NOTE: Do not place your application dependencies here; they belong
@@ -31,8 +31,8 @@ buildscript {
3131
}
3232

3333
plugins {
34-
id 'org.jetbrains.kotlin.android' version '2.2.0' apply false
35-
id 'com.google.devtools.ksp' version '2.2.0-2.0.2' apply false
34+
id 'org.jetbrains.kotlin.android' version '2.2.21' apply false
35+
id 'com.google.devtools.ksp' version '2.3.1' apply false
3636
}
3737

3838
allprojects {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)