Skip to content

Commit b55c38c

Browse files
committed
Update all dependencies
1 parent 13da276 commit b55c38c

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

app/build.gradle

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ android {
6666
}
6767

6868
dependencies {
69-
implementation 'androidx.work:work-runtime-ktx:2.10.4'
70-
implementation 'androidx.room:room-runtime:2.7.2'
71-
annotationProcessor 'androidx.room:room-compiler:2.7.2'
72-
ksp 'androidx.room:room-compiler:2.7.2'
73-
implementation 'androidx.room:room-ktx:2.7.2'
74-
implementation 'androidx.core:core-ktx:1.16.0'
75-
implementation platform('org.jetbrains.kotlin:kotlin-bom:2.1.21')
76-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.9.3'
77-
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.9.3'
78-
implementation 'androidx.activity:activity-compose:1.10.1'
79-
implementation 'androidx.activity:activity-ktx:1.10.1'
69+
implementation 'androidx.work:work-runtime-ktx:2.11.0'
70+
implementation 'androidx.room:room-runtime:2.8.4'
71+
annotationProcessor 'androidx.room:room-compiler:2.8.4'
72+
ksp 'androidx.room:room-compiler:2.8.4'
73+
implementation 'androidx.room:room-ktx:2.8.4'
74+
implementation 'androidx.core:core-ktx:1.17.0'
75+
implementation platform('org.jetbrains.kotlin:kotlin-bom:2.2.21')
76+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.10.0'
77+
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.10.0'
78+
implementation 'androidx.activity:activity-compose:1.12.1'
79+
implementation 'androidx.activity:activity-ktx:1.12.1'
8080
implementation 'androidx.fragment:fragment-ktx:1.8.9'
8181
implementation platform('androidx.compose:compose-bom:2025.12.00')
8282
implementation 'androidx.compose.ui:ui'
@@ -85,19 +85,19 @@ dependencies {
8585
implementation 'androidx.compose.material3:material3'
8686
implementation 'androidx.compose.material:material-icons-extended'
8787
implementation 'androidx.compose.runtime:runtime-livedata'
88-
implementation 'androidx.datastore:datastore-preferences:1.1.7'
89-
implementation 'com.squareup.okhttp3:okhttp:5.1.0'
90-
implementation 'com.squareup.okhttp3:logging-interceptor:5.1.0'
88+
implementation 'androidx.datastore:datastore-preferences:1.2.0'
89+
implementation 'com.squareup.okhttp3:okhttp:5.3.2'
90+
implementation 'com.squareup.okhttp3:logging-interceptor:5.3.2'
9191
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0'
9292
testImplementation 'junit:junit:4.13.2'
9393
testImplementation 'net.sf.kxml:kxml2:2.3.0'
94-
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
95-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
94+
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
95+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
9696
androidTestImplementation platform('androidx.compose:compose-bom:2025.12.00')
9797
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
9898
debugImplementation 'androidx.compose.ui:ui-tooling'
9999
debugImplementation 'androidx.compose.ui:ui-test-manifest'
100-
implementation 'com.google.guava:guava:32.1.2-android'
100+
implementation 'com.google.guava:guava:33.5.0-android'
101101
implementation 'ru.gildor.coroutines:kotlin-coroutines-okhttp:1.0'
102102
implementation 'io.github.rburgst:okhttp-digest:3.1.1'
103103
}

app/src/main/java/com/phpbg/easysync/util/ParametrizedMutex.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import kotlinx.coroutines.sync.Mutex
3030
import kotlinx.coroutines.sync.withLock
3131
import java.util.concurrent.TimeUnit
3232

33-
class ParametrizedMutex<T> {
33+
class ParametrizedMutex<T : Any> {
3434

3535
private val mutexes: Cache<T, Mutex> = CacheBuilder.newBuilder()
3636
.maximumSize(1000)

0 commit comments

Comments
 (0)