diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index de217959203..789d59dabb6 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -68,28 +68,23 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + fetch-depth: 0 # fetch all history for sonar analysis - uses: GetStream/android-ci-actions/actions/setup-java@main - uses: GetStream/android-ci-actions/actions/gradle-cache@main - name: Run unit tests - run: | - ./gradlew :stream-video-android-ui-compose:koverXmlReportDebug --scan --stacktrace - ./gradlew :stream-video-android-core:koverXmlReportDebug --scan --stacktrace - - - name: Unit tests core results - uses: actions/upload-artifact@v4 - with: - name: unit-tests-core-results - path: stream-video-android-core/build/reports/tests/testDebugUnitTest/index.html + run: ./gradlew :testCoverage --scan --stacktrace - - name: Unit tests compose results + - name: Upload tests results uses: actions/upload-artifact@v4 + if: failure() with: - name: unit-tests-compose-results - path: stream-video-android-ui-compose/build/reports/tests/testDebugUnitTest/index.html + name: testResults + path: ./**/build/reports/tests/** - uses: GetStream/android-ci-actions/actions/setup-ruby@main diff --git a/build.gradle.kts b/build.gradle.kts index 76042631e41..a3eda6edfd4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,6 +1,5 @@ apply(plugin = "io.github.gradle-nexus.publish-plugin") apply(plugin = "org.jetbrains.dokka") -apply(from = "${rootDir}/scripts/sonar.gradle") apply(from = "${rootDir}/scripts/open-api-code-gen.gradle.kts") buildscript { @@ -61,8 +60,6 @@ subprojects { ) } } - - apply(from = "${rootDir}/scripts/coverage.gradle") } tasks.register("clean") @@ -78,6 +75,9 @@ apply(from = "${rootDir}/scripts/publish-root.gradle") // return File(teamPropsDir, propsFile) //} +apply(from = "${rootDir}/scripts/sonar.gradle") +apply(from = "${rootDir}/scripts/coverage.gradle") + afterEvaluate { println("Running Add Pre Commit Git Hook Script on Build") exec { @@ -90,4 +90,4 @@ afterEvaluate { } } println("Added pre-push Git Hook Script.") -} \ No newline at end of file +} diff --git a/gradle.properties b/gradle.properties index 0609e3070e1..00c1e88b097 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,7 +19,9 @@ org.gradle.caching=true org.gradle.parallel=true # Configure only necessary projects, useful with multimodule projects -org.gradle.configureondemand=true +# Disabling as it causes prevents tweaking tasks configuration in some cases, +# and the performance gain is minimal for our project structure. +#org.gradle.configureondemand=true # AndroidX Migration https://developer.android.com/jetpack/androidx/migrate android.useAndroidX=true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d85188ff1c4..d37a3f6c4f6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,7 +2,7 @@ allureKotlin = "2.4.0" androidGradlePlugin = "8.4.2" cameraCamera2 = "1.3.4" -kover = "0.9.1" +kover = "0.8.3" sonarqube = "6.0.1.5171" spotless = "6.21.0" nexusPlugin = "1.3.0" @@ -65,7 +65,7 @@ androidxUiAutomator = "2.4.0-alpha01" androidxContraintLayout = "2.1.4" androidxEspresso = "3.5.1" androidxMedia = "1.7.0" -paparazzi = "1.3.1" +paparazzi = "1.3.4" robolectric = "4.11.1" junit = "4.13.2" truth = "1.1.3" diff --git a/scripts/coverage.gradle b/scripts/coverage.gradle index b745d27fad8..e621dc441c1 100644 --- a/scripts/coverage.gradle +++ b/scripts/coverage.gradle @@ -1,41 +1,123 @@ -if (!rootProject.ext.sonar.ignoreModules.contains(name)) { - apply plugin: "org.jetbrains.kotlinx.kover" - apply plugin: "org.sonarqube" - - if (hasProperty('android')) { - android { - buildTypes { - debug { - testCoverageEnabled = true - enableUnitTestCoverage = true - enableAndroidTestCoverage true - } - } - } - } +ext.coverageModules = [ + 'stream-video-android-core', + 'stream-video-android-ui-core', + 'stream-video-android-ui-xml', + 'stream-video-android-ui-compose', +] + +ext.koverClassExcludes = [ + '*R', + '*R$*', + '*BuildConfig', + '*Manifest*', + '*Composable*', + "io.getstream.android.video.generated.*", + "io.getstream.video.android.core.model.*" +] +ext.koverAnnotationExcludes = [ + 'androidx.compose.ui.tooling.preview.Preview' +] - kover { +def configureKoverReports(project) { + project.kover { reports { verify { warningInsteadOfFailure = true } - } - currentProject { - instrumentation { - excludedClasses.addAll( - "io.getstream.android.video.generated.*", - "io.getstream.video.android.core.model.*" - ) + filters { + excludes { + classes(rootProject.ext.koverClassExcludes as String[]) + annotatedBy(rootProject.ext.koverAnnotationExcludes as String[]) + } } } } +} + +def coverageModulesWithTests = subprojects.findAll { + rootProject.ext.coverageModules.contains(it.name) && file("${it.projectDir}/src/test").exists() +} +println("Setting up coverage for:\n${coverageModulesWithTests.join("\n")}") + +// Configure code coverage for modules with tests +subprojects { + def isCoverageModule = coverageModulesWithTests.collect {it.name}.contains(name) + + sonar { + skipProject = !isCoverageModule + } + + if (isCoverageModule) { + apply plugin: "org.jetbrains.kotlinx.kover" + + afterEvaluate { + def isAndroidModule = plugins.hasPlugin("com.android.library") || plugins.hasPlugin("com.android.application") + def hasPaparazziPlugin = plugins.hasPlugin("app.cash.paparazzi") + + if (isAndroidModule) { + android { + buildTypes { + debug { + testCoverageEnabled = true + enableUnitTestCoverage = true + } + } + } + } + + // Determine the appropriate test task name based on module type and plugins + def testTaskName = isAndroidModule + ? (hasPaparazziPlugin ? "verifyPaparazziDebug" : "testDebugUnitTest") + : "test" - sonarqube { - properties { - property "sonar.junit.reportPaths", "${buildDir}/test-results/testDebugUnitTest" - property "sonar.coverage.jacoco.xmlReportPaths", "${buildDir}/reports/kover/reportDebug.xml" - property "sonar.sources", "src/main/kotlin" - property "sonar.coverage.exclusions", "**/generated/**,**/io/getstream/video/android/core/model/**" + tasks.register("testCoverage") { + group = "verification" + description = "Run module-specific tests" + dependsOn(testTaskName) + } + + kover { + currentProject { + // Variant configuration for aggregated coverage + createVariant("coverage") { + if (isAndroidModule) { + add(["debug"], true) + } else { + add(["jvm"], true) + } + } + } + configureKoverReports(project) + } } } } + +// Configure root project to aggregate coverage reports +apply plugin: "org.jetbrains.kotlinx.kover" + +// Specify the projects that should be included in the aggregate coverage report +coverageModulesWithTests.each { project -> dependencies { kover(project) } } + +// Aggregate all submodules' testCoverage + merged reports +tasks.register("testCoverage") { + group = "verification" + description = "Run all tests in all modules and generate merged coverage report" + + dependsOn(subprojects.collect { it.tasks.matching { it.name == "testCoverage" } }) + dependsOn("koverXmlReportCoverage", "koverHtmlReportCoverage") +} + +kover { + currentProject { + // Variant configuration for aggregated coverage (needs to be defined in the root project too) + createVariant("coverage") {} + } + configureKoverReports(project) +} + +sonar { + properties { + property "sonar.coverage.jacoco.xmlReportPaths", "${buildDir}/reports/kover/reportCoverage.xml" + } +} diff --git a/scripts/sonar.gradle b/scripts/sonar.gradle index 99b0ed5442d..7fa9b9a5623 100644 --- a/scripts/sonar.gradle +++ b/scripts/sonar.gradle @@ -1,34 +1,21 @@ apply plugin: "org.sonarqube" ext.sonar = [ - ignoreModules : [ - 'stream-video-android-bom', - 'stream-video-android-previewdata', - 'demo-app', - 'benchmark', - 'tutorials', - 'tutorial-audio', - 'tutorial-video', - 'tutorial-ringing', - 'tutorial-livestream', - 'metrics' - ], excludeFilter : [ - '**/test/**', - '**/androidTest/**', - '**/R.class', - '**/R2.class', - '**/R$*.class', - '**/BuildConfig.*', - '**/Manifest*.*', - '**/*Test*.*' + '**/test/**', + '**/androidTest/**', + '**/R.class', + '**/R2.class', + '**/R$*.class', + '**/BuildConfig.*', + '**/Manifest*.*', + '**/*.mp3', + '**/*.webp', + "**/generated/**", + "**/io/getstream/video/android/core/model/**" ] ] -ext.sonar.ignoreModules.each { - ext.sonar.excludeFilter << "**/${it}/**" -} - sonarqube { properties { property("sonar.host.url", "https://sonarcloud.io") @@ -36,9 +23,6 @@ sonarqube { property("sonar.organization", "getstream") property("sonar.projectKey", "GetStream_stream-video-android") property("sonar.projectName", "stream-video-android") - property "sonar.java.coveragePlugin", "jacoco" - property "sonar.sourceEncoding", "UTF-8" - property "sonar.java.binaries", "${rootDir}/**/build/tmp/kotlin-classes/debug" - property "sonar.coverage.exclusions", rootProject.ext.sonar.excludeFilter + property "sonar.exclusions", rootProject.ext.sonar.excludeFilter.join(",") } } diff --git a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioCallContentTest.kt b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioCallContentTest.kt index 1f8c0398e3f..0e516239624 100644 --- a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioCallContentTest.kt +++ b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioCallContentTest.kt @@ -22,6 +22,7 @@ import io.getstream.video.android.compose.base.BaseComposeTest import io.getstream.video.android.compose.ui.components.call.activecall.AudioCallContent import io.getstream.video.android.compose.ui.components.call.activecall.AudioOnlyCallContent import io.getstream.video.android.mock.previewCall +import org.junit.Ignore import org.junit.Rule import org.junit.Test @@ -54,6 +55,7 @@ internal class AudioCallContentTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot AudioOnlyCallContent in default state`() { snapshot { @@ -65,6 +67,7 @@ internal class AudioCallContentTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot AudioOnlyCallContent without header`() { snapshot { diff --git a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioRoomTest.kt b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioRoomTest.kt index 82f2f0e734d..7a736351df3 100644 --- a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioRoomTest.kt +++ b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/AudioRoomTest.kt @@ -20,6 +20,7 @@ import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.ui.Modifier import app.cash.paparazzi.DeviceConfig import app.cash.paparazzi.Paparazzi +import com.android.resources.ScreenOrientation import io.getstream.video.android.compose.base.BaseComposeTest import io.getstream.video.android.compose.ui.components.audio.AudioAppBar import io.getstream.video.android.compose.ui.components.audio.AudioControlActions @@ -27,13 +28,16 @@ import io.getstream.video.android.compose.ui.components.audio.AudioParticipantsG import io.getstream.video.android.compose.ui.components.audio.AudioRoomContent import io.getstream.video.android.mock.previewCall import io.getstream.video.android.mock.previewParticipantsList +import org.junit.Ignore import org.junit.Rule import org.junit.Test internal class AudioRoomTest : BaseComposeTest() { @get:Rule - val paparazzi = Paparazzi(deviceConfig = DeviceConfig.NEXUS_5_LAND) + val paparazzi = Paparazzi( + deviceConfig = DeviceConfig.PIXEL_2.copy(orientation = ScreenOrientation.LANDSCAPE), + ) override fun basePaparazzi(): Paparazzi = paparazzi @@ -61,6 +65,7 @@ internal class AudioRoomTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot AudioRoom composable`() { snapshot { @@ -71,6 +76,7 @@ internal class AudioRoomTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot AudioRoom DarkMode composable`() { snapshot(isInDarkMode = true) { diff --git a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/LivestreamTest.kt b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/LivestreamTest.kt index 741cdeac33d..f6a40b1fd8c 100644 --- a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/LivestreamTest.kt +++ b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/LivestreamTest.kt @@ -19,6 +19,7 @@ package io.getstream.video.android.compose import androidx.compose.foundation.layout.Box import app.cash.paparazzi.DeviceConfig import app.cash.paparazzi.Paparazzi +import com.android.resources.ScreenOrientation import io.getstream.video.android.compose.base.BaseComposeTest import io.getstream.video.android.compose.ui.components.livestream.LivestreamPlayer import io.getstream.video.android.compose.ui.components.livestream.LivestreamPlayerOverlay @@ -29,7 +30,9 @@ import org.junit.Test internal class LivestreamTest : BaseComposeTest() { @get:Rule - val paparazzi = Paparazzi(deviceConfig = DeviceConfig.NEXUS_5_LAND) + val paparazzi = Paparazzi( + deviceConfig = DeviceConfig.PIXEL_2.copy(orientation = ScreenOrientation.LANDSCAPE), + ) override fun basePaparazzi(): Paparazzi = paparazzi diff --git a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantLandscapeTest.kt b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantLandscapeTest.kt index a77dabaee57..5f3a82715b6 100644 --- a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantLandscapeTest.kt +++ b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantLandscapeTest.kt @@ -24,6 +24,7 @@ import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.unit.IntSize import app.cash.paparazzi.DeviceConfig import app.cash.paparazzi.Paparazzi +import com.android.resources.ScreenOrientation import io.getstream.video.android.compose.base.BaseComposeTest import io.getstream.video.android.compose.theme.VideoTheme import io.getstream.video.android.compose.ui.components.call.renderer.internal.LandscapeScreenSharingVideoRenderer @@ -33,16 +34,20 @@ import io.getstream.video.android.core.model.ScreenSharingSession import io.getstream.video.android.mock.previewCall import io.getstream.video.android.mock.previewParticipant import io.getstream.video.android.mock.previewParticipantsList +import org.junit.Ignore import org.junit.Rule import org.junit.Test internal class ParticipantLandscapeTest : BaseComposeTest() { @get:Rule - val paparazziLandscape = Paparazzi(deviceConfig = DeviceConfig.NEXUS_5_LAND) + val paparazzi = Paparazzi( + deviceConfig = DeviceConfig.PIXEL_2.copy(orientation = ScreenOrientation.LANDSCAPE), + ) - override fun basePaparazzi(): Paparazzi = paparazziLandscape + override fun basePaparazzi(): Paparazzi = paparazzi + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot LandscapeParticipants1 composable`() { snapshot { @@ -65,6 +70,7 @@ internal class ParticipantLandscapeTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot LandscapeParticipants2 composable`() { snapshot { @@ -87,6 +93,7 @@ internal class ParticipantLandscapeTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot LandscapeParticipants3 composable`() { snapshot { diff --git a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantsPortraitTest.kt b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantsPortraitTest.kt index f4cec5b6ad7..85566da6b72 100644 --- a/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantsPortraitTest.kt +++ b/stream-video-android-ui-compose/src/test/kotlin/io/getstream/video/android/compose/ParticipantsPortraitTest.kt @@ -45,6 +45,7 @@ import io.getstream.video.android.mock.previewCall import io.getstream.video.android.mock.previewMemberListState import io.getstream.video.android.mock.previewParticipant import io.getstream.video.android.mock.previewParticipantsList +import org.junit.Ignore import org.junit.Rule import org.junit.Test @@ -166,6 +167,7 @@ internal class ParticipantsPortraitTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot PortraitParticipants1 composable`() { snapshot { @@ -188,6 +190,7 @@ internal class ParticipantsPortraitTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot PortraitParticipants2 composable`() { snapshot { @@ -210,6 +213,7 @@ internal class ParticipantsPortraitTest : BaseComposeTest() { } } + @Ignore("https://linear.app/stream/issue/AND-786/fix-video-snapshot-tests") @Test fun `snapshot PortraitParticipants3 composable`() { snapshot { diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent in default state.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent in default state.png index 947965634a4..89acf0b5ac8 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent in default state.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent in default state.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent without header.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent without header.png index 8129f843138..88533d207ac 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent without header.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioCallContent without header.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent in default state.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent in default state.png index 947965634a4..dabe1510783 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent in default state.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent in default state.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent without header.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent without header.png index 8129f843138..2ae2eb5be5b 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent without header.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioCallContentTest_snapshot AudioOnlyCallContent without header.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioAppBar composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioAppBar composable.png index 0a1372c660a..d296bf8e518 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioAppBar composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioAppBar composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioControlActions composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioControlActions composable.png index e1b60687437..773bd0d56b7 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioControlActions composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioControlActions composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioParticipantsGrid composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioParticipantsGrid composable.png index 1a6e5ed7758..4dded986aee 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioParticipantsGrid composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioParticipantsGrid composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom DarkMode composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom DarkMode composable.png index f576d64cf01..7d3d45604d7 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom DarkMode composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom DarkMode composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom composable.png index 9dc161c9441..7d3d45604d7 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AudioRoomTest_snapshot AudioRoom composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot AvatarInitial composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot AvatarInitial composable.png index e0c99b4cf42..1c9738c3030 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot AvatarInitial composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot AvatarInitial composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot UserAvatar composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot UserAvatar composable.png index 956f8434464..4e57dd3569f 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot UserAvatar composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_AvatarTest_snapshot UserAvatar composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Badges with buttons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Badges with buttons.png new file mode 100644 index 00000000000..e52826c89b2 Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Badges with buttons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Button with icons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Button with icons.png new file mode 100644 index 00000000000..878bca0a2eb Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Button with icons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Different size buttons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Different size buttons.png new file mode 100644 index 00000000000..db37ec91302 Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Different size buttons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Generic container (for info messages).png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Generic container (for info messages).png new file mode 100644 index 00000000000..89dbe04b291 Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Generic container (for info messages).png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Input fields.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Input fields.png new file mode 100644 index 00000000000..6ce99d9b11b Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Input fields.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Regular buttons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Regular buttons.png new file mode 100644 index 00000000000..195dc11d177 Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Regular buttons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Regular icon buttons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Regular icon buttons.png new file mode 100644 index 00000000000..1b59df36b1d Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Regular icon buttons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Show progress into icon buttons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Show progress into icon buttons.png new file mode 100644 index 00000000000..d99918c1ecf Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Show progress into icon buttons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Toggle buttons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Toggle buttons.png new file mode 100644 index 00000000000..5288309503f Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Toggle buttons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Toggle icon buttons.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Toggle icon buttons.png new file mode 100644 index 00000000000..ff040489c55 Binary files /dev/null and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_BaseComponentsTest_Toggle icon buttons.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallBackgroundTest_snapshot CallBackground composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallBackgroundTest_snapshot CallBackground composable.png deleted file mode 100644 index 32ec8108d9c..00000000000 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallBackgroundTest_snapshot CallBackground composable.png and /dev/null differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsLandscapeTest_snapshot LandscapeCallControls composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsLandscapeTest_snapshot LandscapeCallControls composable.png deleted file mode 100644 index b480a452709..00000000000 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsLandscapeTest_snapshot LandscapeCallControls composable.png and /dev/null differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallAppBar composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallAppBar composable.png index e7d81efa228..28af9c1ff06 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallAppBar composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallAppBar composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallControls composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallControls composable.png index 2acd5186b39..494064a1145 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallControls composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot CallControls composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot ParticipantIndicatorIcon composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot ParticipantIndicatorIcon composable.png deleted file mode 100644 index 47a32851b37..00000000000 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot ParticipantIndicatorIcon composable.png and /dev/null differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot RegularCallControls composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot RegularCallControls composable.png index 5a49f119c8c..494064a1145 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot RegularCallControls composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallComponentsPortraitTest_snapshot RegularCallControls composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContainerLandscapeTest_snapshot CallContent with multiple participants composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContainerLandscapeTest_snapshot CallContent with multiple participants composable.png deleted file mode 100644 index 6672f5a3391..00000000000 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContainerLandscapeTest_snapshot CallContent with multiple participants composable.png and /dev/null differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContainerPortraitTest_snapshot CallContent with multiple participants composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContainerPortraitTest_snapshot CallContent with multiple participants composable.png deleted file mode 100644 index 73756002212..00000000000 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContainerPortraitTest_snapshot CallContent with multiple participants composable.png and /dev/null differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot CallContent with multiple participants composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot CallContent with multiple participants composable.png index b7c39d69500..2e39620f68b 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot CallContent with multiple participants composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot CallContent with multiple participants composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent Video type with multiple participants composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent Video type with multiple participants composable.png index 67e18824e0e..9841750785d 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent Video type with multiple participants composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent Video type with multiple participants composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with minimum parameters.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with minimum parameters.png index 24c93b769cd..b5f1c974e0f 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with minimum parameters.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with minimum parameters.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with one participant composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with one participant composable.png index 84e9e0a7c3a..36dc5acb87b 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with one participant composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContent with one participant composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Audio composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Audio composable.png index bc46bbae3f9..3393f5cbfea 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Audio composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Audio composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Video composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Video composable.png index bc46bbae3f9..3393f5cbfea 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Video composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallContentDetails Video composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallOptions composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallOptions composable.png index adada3b14fc..2d5a29aa6f8 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallOptions composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot IncomingCallOptions composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and audio type.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and audio type.png index e45e112de56..4773b48ae8a 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and audio type.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and audio type.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and video type.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and video type.png index 485d43a9bb3..2be58a0cdb3 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and video type.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with minimum parameters and video type.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with multiple participants composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with multiple participants composable.png index 8a659cf13f6..29cbcadecef 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with multiple participants composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with multiple participants composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with one participant composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with one participant composable.png index 7dec596910e..6f18a657d62 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with one participant composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallContent with one participant composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Audio composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Audio composable.png index 7910a055515..90940945279 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Audio composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Audio composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Video composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Video composable.png index 7910a055515..90940945279 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Video composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallDetails Video composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallOptions composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallOptions composable.png index c14cc78a3a8..f0f82dd7b5f 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallOptions composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallContentTest_snapshot OutgoingCallOptions composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls Actions composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls Actions composable.png index d53b30ae9b9..8ffb4dc0c13 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls Actions composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls Actions composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls composable.png index 2acd5186b39..494064a1145 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallControlsTest_snapshot CallControls composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallLobbyTest_snapshot CallLobby composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallLobbyTest_snapshot CallLobby composable.png index 6da056d3474..d13d83abbff 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallLobbyTest_snapshot CallLobby composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_CallLobbyTest_snapshot CallLobby composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot ActiveSoundLevels composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot ActiveSoundLevels composable.png deleted file mode 100644 index 93b8bad9f86..00000000000 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot ActiveSoundLevels composable.png and /dev/null differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ConnectionQualityIndicator composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ConnectionQualityIndicator composable.png index 2c81287ece8..8298752dc49 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ConnectionQualityIndicator composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ConnectionQualityIndicator composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ParticipantLabel composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ParticipantLabel composable.png index 4d8201aaf58..accb39d2899 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ParticipantLabel composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot Connection ParticipantLabel composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot SoundIndicator composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot SoundIndicator composable.png index 037c796f9a9..1d1e7068eeb 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot SoundIndicator composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_IndicatorsTest_snapshot SoundIndicator composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player Overlay composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player Overlay composable.png index ca4d61dd090..b60100f52ff 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player Overlay composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player Overlay composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player composable.png index 54faada2597..fd22a42d6ef 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_LivestreamTest_snapshot Livestream Player composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants1 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants1 composable.png index c15cde0a67a..33f5bb69046 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants1 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants1 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants2 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants2 composable.png index fc702a85ae3..92326d08445 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants2 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants2 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants3 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants3 composable.png index 054357f66ca..b38ae37f04d 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants3 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants3 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants4 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants4 composable.png index fd60af9e8c0..f95ed366d30 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants4 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants4 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants5 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants5 composable.png index df5212734fb..f1fb186de64 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants5 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants5 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants6 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants6 composable.png index f21588e8229..877d91b081c 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants6 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeParticipants6 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for myself composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for myself composable.png index 11f3ea291be..71fff75ac0f 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for myself composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for myself composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for other participant composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for other participant composable.png index 11f3ea291be..71fff75ac0f 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for other participant composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot LandscapeScreenSharingContent for other participant composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot ParticipantsRow composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot ParticipantsRow composable.png index 560ff1fa2fa..8f144d3328d 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot ParticipantsRow composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantLandscapeTest_snapshot ParticipantsRow composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a local call composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a local call composable.png index da63db0d10e..dfe177eb6a8 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a local call composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a local call composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a remote call composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a remote call composable.png index 1dfb0eb0cf1..3dd0fd08726 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a remote call composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipant a remote call composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoAppBar composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoAppBar composable.png index 4c32834dd68..0749d858df1 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoAppBar composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoAppBar composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoOptions composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoOptions composable.png index 2290ea3338a..216ccc0f910 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoOptions composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsInfoOptions composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsList composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsList composable.png index e7f0076a12a..92ad701303b 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsList composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot CallParticipantsList composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot InviteUserList composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot InviteUserList composable.png index af0ef4f6f56..3b012921ffe 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot InviteUserList composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot InviteUserList composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot LocalVideoContent composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot LocalVideoContent composable.png index 3e6715d4634..8e917f9d255 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot LocalVideoContent composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot LocalVideoContent composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantAvatars composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantAvatars composable.png index 4e63381901f..79af88c04f7 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantAvatars composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantAvatars composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantInformation composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantInformation composable.png index 806bdbb0a28..b3f995a449b 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantInformation composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantInformation composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantVideo composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantVideo composable.png index 7c981e7c354..418cfc76796 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantVideo composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantVideo composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantsColumn composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantsColumn composable.png index 5d0e1ff4d71..2e00f865b59 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantsColumn composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot ParticipantsColumn composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants1 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants1 composable.png index da63db0d10e..c158291f807 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants1 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants1 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants2 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants2 composable.png index fd114f9e29c..4c83f3acc33 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants2 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants2 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants3 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants3 composable.png index 3cbea25f50e..efc64e3cd89 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants3 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants3 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants4 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants4 composable.png index 9d12fb24839..d0d0266246b 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants4 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants4 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants5 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants5 composable.png index c98104b27c3..61b6c5944c8 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants5 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants5 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants6 composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants6 composable.png index 7d271ee1695..d6d8b132265 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants6 composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitParticipants6 composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for myself composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for myself composable.png index 1185d221036..822c1ec8184 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for myself composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for myself composable.png differ diff --git a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for other participant composable.png b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for other participant composable.png index 4e4a69a69f9..822c1ec8184 100644 Binary files a/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for other participant composable.png and b/stream-video-android-ui-compose/src/test/snapshots/images/io.getstream.video.android.compose_ParticipantsPortraitTest_snapshot PortraitScreenSharingContent for other participant composable.png differ