updated to 22.0.0

This commit is contained in:
Fr4nz D13trich 2025-10-04 10:41:35 +02:00
parent 93184d21d1
commit 356462d6ab
60 changed files with 1198 additions and 469 deletions

View file

@ -39,8 +39,8 @@ android {
// mayor.minor.hotfix.increment (for increment: 01-50=Alpha / 51-89=RC / 90-99=stable)
// xx .xxx .xx .xx
versionCode 230000005
versionName "23.0.0 Alpha 05"
versionCode 230000009
versionName "23.0.0 Alpha 09"
flavorDimensions "default"
renderscriptTargetApi = 19
@ -158,7 +158,7 @@ kapt {
ext {
androidxCameraVersion = "1.5.0"
coilKtVersion = "2.7.0"
daggerVersion = "2.57.1"
daggerVersion = "2.57.2"
emojiVersion = "1.6.0"
fidoVersion = "4.1.0-patch2"
lifecycleVersion = '2.9.4'
@ -169,7 +169,7 @@ ext {
prismVersion = "2.0.0"
retrofit2Version = "3.0.0"
roomVersion = "2.8.0"
workVersion = "2.10.4"
workVersion = "2.10.5"
espressoVersion = "3.7.0"
androidxTestVersion = "1.5.0"
media3_version = "1.8.0"
@ -186,12 +186,12 @@ configurations.configureEach {
dependencies {
implementation "androidx.room:room-testing-android:${roomVersion}"
implementation 'androidx.compose.foundation:foundation-layout:1.9.1'
implementation 'androidx.compose.foundation:foundation-layout:1.9.2'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.14.0'
spotbugsPlugins 'com.mebigfatguy.fb-contrib:fb-contrib:7.6.14'
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.8")
implementation("androidx.compose.runtime:runtime:1.9.1")
implementation("androidx.compose.runtime:runtime:1.9.2")
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'androidx.datastore:datastore-core:1.1.7'
implementation 'androidx.datastore:datastore-preferences:1.1.7'
@ -316,7 +316,7 @@ dependencies {
implementation 'com.github.nextcloud-deps:android-talk-webrtc:132.6834.0'
gplayImplementation 'com.google.android.gms:play-services-base:18.8.0'
gplayImplementation "com.google.firebase:firebase-messaging:25.0.0"
gplayImplementation "com.google.firebase:firebase-messaging:25.0.1"
//compose
implementation(platform("androidx.compose:compose-bom:2025.09.00"))
@ -328,18 +328,18 @@ dependencies {
//tests
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.13.4'
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.9.1")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.9.2")
debugImplementation("androidx.compose.ui:ui-test-manifest")
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:5.19.0'
testImplementation 'org.mockito:mockito-core:5.20.0'
testImplementation 'androidx.arch.core:core-testing:2.2.0'
androidTestImplementation "androidx.test:core:1.7.0"
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2"
androidTestImplementation 'androidx.test:core-ktx:1.7.0'
androidTestImplementation 'org.mockito:mockito-android:5.19.0'
androidTestImplementation 'org.mockito:mockito-android:5.20.0'
androidTestImplementation "androidx.work:work-testing:${workVersion}"
// Espresso core
androidTestImplementation ("androidx.test.espresso:espresso-core:$espressoVersion", {
@ -360,7 +360,7 @@ dependencies {
testImplementation 'org.junit.vintage:junit-vintage-engine:5.13.4' // DO NOT REMOVE
testImplementation "androidx.room:room-testing:${roomVersion}"
testImplementation("com.squareup.okhttp3:mockwebserver:$okhttpVersion")
testImplementation("com.google.dagger:hilt-android-testing:2.57.1")
testImplementation("com.google.dagger:hilt-android-testing:2.57.2")
testImplementation("org.robolectric:robolectric:4.16")
}