Skip to content

Commit 58a1689

Browse files
committed
Fix graddle build
1 parent 2cabe5d commit 58a1689

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

android/app/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,15 @@ dependencies {
5858
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
5959
implementation 'com.jakewharton.timber:timber:5.0.1'
6060
implementation 'androidx.preference:preference-ktx:1.2.1'
61-
implementation 'androidx.work:work-runtime-ktx:2.10.0'
62-
implementation 'androidx.core:core-ktx:1.15.0'
61+
implementation 'androidx.work:work-runtime-ktx:2.10.1'
62+
implementation 'androidx.core:core-ktx:1.16.0'
6363
implementation "androidx.cardview:cardview:1.0.0"
6464
implementation 'com.beust:klaxon:5.6'
6565
implementation 'androidx.appcompat:appcompat:1.7.0'
6666
implementation 'org.apache.commons:commons-text:1.12.0'
6767
implementation 'com.google.android.material:material:1.12.0'
68-
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
68+
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
6969
implementation 'com.googlecode.libphonenumber:libphonenumber:9.0.4'
70-
implementation 'androidx.core:core-ktx:1.15.0'
7170
testImplementation 'junit:junit:4.13.2'
7271
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
7372
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ plugins {
2222
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
2323
}
2424

25-
task clean(type: Delete) {
25+
tasks.register('clean', Delete) {
2626
delete rootProject.buildDir
2727
}

0 commit comments

Comments
 (0)