Skip to content

Commit a18a7c8

Browse files
committed
update dependencies
1 parent 8c48890 commit a18a7c8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- name: set up JDK 1.17
12-
uses: actions/setup-java@v1
12+
uses: actions/setup-java@v4
1313
with:
1414
java-version: 1.17
1515

1616
- name: Cache Gradle packages
17-
uses: actions/cache@v2
17+
uses: actions/cache@v4
1818
with:
1919
path: ~/.gradle/caches
2020
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
5050
implementation("androidx.core:core-ktx:1.15.0")
5151
implementation("androidx.appcompat:appcompat:1.7.0")
52-
implementation("androidx.constraintlayout:constraintlayout:2.2.0")
52+
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
5353
implementation(project(":core"))
5454
implementation("androidx.legacy:legacy-support-v4:1.0.0")
5555
testImplementation("junit:junit:4.13.2")
@@ -78,7 +78,7 @@ dependencies {
7878
testImplementation("androidx.room:room-testing:$roomVersion")
7979

8080
//Recyclerview Implementation
81-
implementation("androidx.recyclerview:recyclerview:1.3.2")
81+
implementation("androidx.recyclerview:recyclerview:1.4.0")
8282

8383
//Material Design Implementation
8484
implementation("com.google.android.material:material:1.12.0")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
}
88
dependencies {
99
val kotlinVersion = rootProject.extra.get("kotlin_version")
10-
classpath("com.android.tools.build:gradle:8.7.2")
10+
classpath("com.android.tools.build:gradle:8.9.0")
1111
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
1212

1313
// NOTE: Do not place your application dependencies here; they belong

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip

0 commit comments

Comments
 (0)