diff --git a/benchmark/build.gradle.kts b/benchmark/build.gradle.kts index 1389a3e8a2..ed369e2c0c 100644 --- a/benchmark/build.gradle.kts +++ b/benchmark/build.gradle.kts @@ -14,6 +14,7 @@ * limitations under the License. */ import io.getstream.video.android.Configuration +import io.getstream.video.configureFlavors @Suppress("DSL_SCOPE_VIOLATION") plugins { @@ -62,16 +63,15 @@ android { } } - flavorDimensions += "environment" - productFlavors { - create("development") { - dimension = "environment" - proguardFiles("benchmark-rules.pro") - } - create("production") { - dimension = "environment" - proguardFiles("benchmark-rules.pro") - } + // Use the same flavor dimensions as the application to allow generating Baseline Profiles on prod, + // which is more close to what will be shipped to users (no fake data), but has ability to run the + // benchmarks on demo, so we benchmark on stable data. + configureFlavors(this) { flavor -> + buildConfigField( + "String", + "APP_FLAVOR_SUFFIX", + "\"${flavor.applicationIdSuffix ?: ""}\"" + ) } targetProjectPath = ":demo-app" diff --git a/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/BaselineProfileGenerator.kt b/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/BaselineProfileGenerator.kt index 43453dcbc6..6715179160 100644 --- a/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/BaselineProfileGenerator.kt +++ b/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/BaselineProfileGenerator.kt @@ -30,7 +30,7 @@ internal class BaselineProfileGenerator { @Test fun startup() = baselineProfileRule.collect( - packageName = packageName, + packageName = PACKAGE_NAME, stableIterations = 2, maxIterations = 8, includeInStartupProfile = true, diff --git a/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/Const.kt b/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/Const.kt deleted file mode 100644 index eb6e6d83e7..0000000000 --- a/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/Const.kt +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (c) 2014-2024 Stream.io Inc. All rights reserved. - * - * Licensed under the Stream License; - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://github.com/GetStream/stream-video-android/blob/main/LICENSE - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package io.getstream.video.android.benchmark - -internal const val packageName = "io.getstream.video.android.dogfooding" diff --git a/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/Utils.kt b/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/Utils.kt index 0459de3464..50d1558977 100644 --- a/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/Utils.kt +++ b/benchmark/src/main/kotlin/io/getstream/video/android/benchmark/Utils.kt @@ -22,6 +22,14 @@ import androidx.test.uiautomator.UiDevice import androidx.test.uiautomator.UiObject2 import androidx.test.uiautomator.Until +/** + * Convenience parameter to use proper package name with regards to build type and build flavor. + */ +val PACKAGE_NAME = buildString { + append("io.getstream.video.android") + append(BuildConfig.APP_FLAVOR_SUFFIX) +} + internal fun UiDevice.waitForObject(selector: BySelector, timeout: Long = 5_000): UiObject2? { if (wait(Until.hasObject(selector), timeout)) { return findObject(selector) diff --git a/build-logic/convention/src/main/kotlin/AndroidApplicationComposeConventionPlugin.kt b/build-logic/convention/src/main/kotlin/AndroidApplicationComposeConventionPlugin.kt index 3a14108274..05cccc3dbc 100644 --- a/build-logic/convention/src/main/kotlin/AndroidApplicationComposeConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/AndroidApplicationComposeConventionPlugin.kt @@ -1,5 +1,7 @@ +import com.android.build.api.dsl.ApplicationExtension import com.android.build.gradle.internal.dsl.BaseAppModuleExtension import io.getstream.video.configureAndroidCompose +import io.getstream.video.configureFlavors import io.getstream.video.configureKotlinAndroid import org.gradle.api.Plugin import org.gradle.api.Project diff --git a/build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt b/build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt index 0289466f61..39bdea2e14 100644 --- a/build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt @@ -1,4 +1,6 @@ +import com.android.build.api.dsl.ApplicationExtension import com.android.build.gradle.internal.dsl.BaseAppModuleExtension +import io.getstream.video.configureFlavors import io.getstream.video.configureKotlinAndroid import org.gradle.api.Plugin import org.gradle.api.Project diff --git a/build-logic/convention/src/main/kotlin/io/getstream/video/DemoFlavor.kt b/build-logic/convention/src/main/kotlin/io/getstream/video/DemoFlavor.kt new file mode 100644 index 0000000000..e4d49ac9ae --- /dev/null +++ b/build-logic/convention/src/main/kotlin/io/getstream/video/DemoFlavor.kt @@ -0,0 +1,43 @@ +package io.getstream.video + +import com.android.build.api.dsl.ApplicationExtension +import com.android.build.api.dsl.ApplicationProductFlavor +import com.android.build.api.dsl.CommonExtension +import com.android.build.api.dsl.ProductFlavor + +@Suppress("EnumEntryName") +enum class FlavorDimension { + contentType +} + +// The content for the app can either come from local static data which is useful for demo +// purposes, or from a production backend server which supplies up-to-date, real content. +// These two product flavors reflect this behaviour. +@Suppress("EnumEntryName") +enum class VideoDemoFlavor(val dimension: FlavorDimension, val applicationIdSuffix: String? = null) { + development(FlavorDimension.contentType, applicationIdSuffix = ".dogfooding"), + production(FlavorDimension.contentType) +} + +fun configureFlavors( + commonExtension: CommonExtension<*, *, *, *, *, *>, + flavorConfigurationBlock: ProductFlavor.(flavor: VideoDemoFlavor) -> Unit = {} +) { + commonExtension.apply { + flavorDimensions += "environment" + productFlavors { + VideoDemoFlavor.values().forEach { + create(it.name) { + dimension = "environment" + flavorConfigurationBlock(this, it) + if (this@apply is ApplicationExtension && this is ApplicationProductFlavor) { + if (it.applicationIdSuffix != null) { + applicationIdSuffix = it.applicationIdSuffix + } + } + proguardFiles("benchmark-rules.pro") + } + } + } + } +} \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt b/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt index c6baf69f36..46c22fd041 100644 --- a/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt @@ -1,16 +1,16 @@ package io.getstream.video.android object Configuration { - const val compileSdk = 34 - const val targetSdk = 34 + const val compileSdk = 35 + const val targetSdk = 35 const val minSdk = 24 const val majorVersion = 1 const val minorVersion = 0 - const val patchVersion = 19 + const val patchVersion = 20 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 42 + const val versionCode = 43 const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream" - const val streamVideoCallGooglePlayVersion = "1.1.12" + const val streamVideoCallGooglePlayVersion = "1.1.14" const val streamWebRtcVersionName = "1.2.1" } diff --git a/demo-app/build.gradle.kts b/demo-app/build.gradle.kts index 4f07c0d7d3..5ecfe0efa5 100644 --- a/demo-app/build.gradle.kts +++ b/demo-app/build.gradle.kts @@ -18,7 +18,10 @@ import com.android.build.api.variant.BuildConfigField import com.android.build.api.variant.ResValue import com.github.triplet.gradle.androidpublisher.ResolutionStrategy +import io.getstream.video.FlavorDimension +import io.getstream.video.VideoDemoFlavor import io.getstream.video.android.Configuration +import io.getstream.video.configureFlavors import java.io.FileInputStream import java.util.* @@ -45,6 +48,7 @@ android { targetSdk = Configuration.targetSdk versionCode = 1 versionName = Configuration.streamVideoCallGooglePlayVersion + missingDimensionStrategy(FlavorDimension.contentType.name, VideoDemoFlavor.development.name) vectorDrawables { useSupportLibrary = true } @@ -83,6 +87,8 @@ android { } } + configureFlavors(this) + buildTypes { getByName("debug") { versionNameSuffix = "-DEBUG" @@ -94,6 +100,7 @@ android { } getByName("release") { isMinifyEnabled = true + baselineProfile.automaticGenerationDuringBuild = true proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" @@ -110,17 +117,6 @@ android { } } - flavorDimensions += "environment" - productFlavors { - create("development") { - dimension = "environment" - applicationIdSuffix = ".dogfooding" - } - create("production") { - dimension = "environment" - } - } - buildFeatures { resValues = true buildConfig = true @@ -136,6 +132,13 @@ android { baselineProfile { mergeIntoMain = true + + // Don't build on every iteration of a full assemble. + // Instead enable generation directly for the release build variant. + automaticGenerationDuringBuild = false + + // Make use of Dex Layout Optimizations via Startup Profiles + dexLayoutOptimization = true } playConfigs { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a33164042c..376e918266 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,9 +3,9 @@ androidGradlePlugin = "8.4.2" cameraCamera2 = "1.3.4" spotless = "6.21.0" nexusPlugin = "1.3.0" -kotlin = "2.0.20" -ksp = "2.0.20-1.0.25" -kotlinSerialization = "1.7.1" +kotlin = "2.0.21" +ksp = "2.0.21-1.0.26" +kotlinSerialization = "1.7.3" kotlinSerializationConverter = "1.0.0" kotlinxCoroutines = "1.9.0" @@ -22,14 +22,14 @@ androidxActivity = "1.9.2" androidxDataStore = "1.1.1" googleService = "4.4.2" -androidxComposeBom = "2024.09.02" +androidxComposeBom = "2024.11.00" androidxComposeTracing = "1.0.0-beta01" androidxHiltNavigation = "1.2.0" -androidxComposeNavigation = "2.8.1" +androidxComposeNavigation = "2.8.4" composeStableMarker = "1.0.5" coil = "2.6.0" -landscapist = "2.3.6" +landscapist = "2.4.2" accompanist = "0.34.0" telephoto = "0.3.0" audioswitch = "1.2.0" @@ -72,7 +72,7 @@ installReferrer = "2.2" playAuth = "20.7.0" playAppUpdate = "2.1.0" -hilt = "2.51.1" +hilt = "2.52" leakCanary = "2.13" binaryCompatabilityValidator = "0.16.3" playPublisher = "3.8.4" diff --git a/stream-video-android-core/api/stream-video-android-core.api b/stream-video-android-core/api/stream-video-android-core.api index c8f4c1c042..2c865fa4c5 100644 --- a/stream-video-android-core/api/stream-video-android-core.api +++ b/stream-video-android-core/api/stream-video-android-core.api @@ -982,7 +982,6 @@ public final class io/getstream/video/android/core/call/RtcSession { public final fun setScreenShareTrack ()V public final fun setSubscriber (Lio/getstream/video/android/core/call/connection/StreamPeerConnection;)V public final fun setTracks (Ljava/util/Map;)V - public final fun switchSfu (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Lkotlin/jvm/functions/Function0;Lkotlin/coroutines/Continuation;)Ljava/lang/Object; public final fun updateTrackDimensions (Ljava/lang/String;Lstream/video/sfu/models/TrackType;ZLstream/video/sfu/models/VideoDimension;)V public static synthetic fun updateTrackDimensions$default (Lio/getstream/video/android/core/call/RtcSession;Ljava/lang/String;Lstream/video/sfu/models/TrackType;ZLstream/video/sfu/models/VideoDimension;ILjava/lang/Object;)V } diff --git a/stream-video-android-core/src/androidTest/kotlin/io/getstream/video/android/core/ReconnectTest.kt b/stream-video-android-core/src/androidTest/kotlin/io/getstream/video/android/core/ReconnectTest.kt index b321bc7ee5..a218d971a6 100644 --- a/stream-video-android-core/src/androidTest/kotlin/io/getstream/video/android/core/ReconnectTest.kt +++ b/stream-video-android-core/src/androidTest/kotlin/io/getstream/video/android/core/ReconnectTest.kt @@ -16,7 +16,6 @@ package io.getstream.video.android.core -import app.cash.turbine.test import app.cash.turbine.testIn import com.google.common.truth.Truth.assertThat import io.getstream.log.taggedLogger @@ -26,7 +25,6 @@ import org.junit.Ignore import org.junit.Test import org.webrtc.PeerConnection import java.util.UUID -import kotlin.time.Duration.Companion.seconds /** * Connection state shows if we've established a connection with the SFU @@ -147,44 +145,4 @@ class ReconnectTest : IntegrationTestBase(connectCoordinatorWS = false) { // await until disconnect a call assertThat(connectionState.awaitItem()).isEqualTo(RealtimeConnection.Disconnected) } - - /** - * Switching an Sfu should be fast - */ - @Test - @Ignore - fun switchSfuQuickly() = runTest(timeout = 30.seconds) { - val call = client.call("default", UUID.randomUUID().toString()) - // join a call - val result = call.join(create = true) - // create a turbine connection state - val connectionState = call.state.connection.testIn(backgroundScope) - // asset that the connection state is connected - val connectionStateItem = connectionState.awaitItem() - assertThat(connectionStateItem).isAnyOf( - RealtimeConnection.Connected, - RealtimeConnection.Joined(result.getOrThrow()), - ) - if (connectionStateItem is RealtimeConnection.Joined) { - connectionState.awaitItem() - } - - // connect to the new socket - // do an ice restart - call.session?.let { - it.switchSfu(it.sfuUrl, it.sfuToken, it.sfuToken, it.remoteIceServers, {}) - } - - // assert the publisher is still connected - val publisher = call.session?.publisher?.state - publisher?.test(timeout = 30.seconds) { - val connection = awaitItem() - if (connection == PeerConnection.PeerConnectionState.CONNECTED) { - awaitComplete() - } - } - // leave and clean up a call - call.leave() - call.cleanup() - } } diff --git a/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/call/RtcSession.kt b/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/call/RtcSession.kt index b474068637..0287768d4f 100644 --- a/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/call/RtcSession.kt +++ b/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/call/RtcSession.kt @@ -108,7 +108,6 @@ import org.webrtc.SessionDescription import retrofit2.HttpException import stream.video.sfu.event.JoinRequest import stream.video.sfu.event.LeaveCallRequest -import stream.video.sfu.event.Migration import stream.video.sfu.event.ReconnectDetails import stream.video.sfu.event.SfuRequest import stream.video.sfu.models.ClientDetails @@ -492,6 +491,7 @@ public class RtcSession internal constructor( suspend fun connect(reconnectDetails: ReconnectDetails? = null) { logger.i { "[connect] #sfu; #track; no args" } val request = JoinRequest( + subscriber_sdp = getSubscriberSdp().description, session_id = sessionId, token = sfuToken, fast_reconnect = false, @@ -1823,13 +1823,14 @@ public class RtcSession internal constructor( return Triple(previousSessionId, currentSubscriptions, publisherTracks) } - internal fun fastReconnect(reconnectDetails: ReconnectDetails?) { + internal suspend fun fastReconnect(reconnectDetails: ReconnectDetails?) { // Fast reconnect, send a JOIN request on the same SFU // and restart ICE on publisher logger.d { "[fastReconnect] Starting fast reconnect." } val (previousSessionId, currentSubscriptions, publisherTracks) = currentSfuInfo() logger.d { "[fastReconnect] Published tracks: $publisherTracks" } val request = JoinRequest( + subscriber_sdp = getSubscriberSdp().description, session_id = sessionId, token = sfuToken, client_details = clientDetails, @@ -1874,147 +1875,6 @@ public class RtcSession internal constructor( errorJob?.cancel() } - suspend fun switchSfu( - sfuName: String, - sfuUrl: String, - sfuToken: String, - remoteIceServers: List, - failedToSwitch: () -> Unit, - ) { - logger.i { "[switchSfu] #sfu; #track; from ${this.sfuUrl} to $sfuUrl" } - - // Prepare SDP - val getSdp = suspend { - getSubscriberSdp().description - } - - // Prepare migration object for SFU socket - val migration = suspend { - Migration( - from_sfu_id = sfuName, - announced_tracks = getPublisherTracks(getSdp.invoke()), - subscriptions = subscriptions.value, - ) - } - // Create a parallel SFU socket - sfuConnectionMigrationModule = SfuConnectionModule( - context = clientImpl.context, - apiKey = apiKey, - apiUrl = sfuUrl, - wssUrl = sfuWsUrl, - connectionTimeoutInMs = 10000L, - userToken = sfuToken, - lifecycle = lifecycle, - ) - - // Connect to SFU socket - val migrationData = migration.invoke() - val request = JoinRequest( - session_id = sessionId, - token = sfuToken, - subscriber_sdp = getSdp.invoke(), - fast_reconnect = false, - migration = migrationData, - client_details = clientDetails, - ) - - sfuConnectionModule.socketConnection.whenConnected { - sfuConnectionMigrationModule!!.socketConnection.sendEvent( - SfuDataRequest(SfuRequest(join_request = request)), - ) - } - // Wait until the socket connects - if it fails to connect then return to "Reconnecting" - // state (to make sure that the full reconnect logic will kick in) - coroutineScope.launch { - sfuConnectionMigrationModule!!.socketConnection.state().collect { it -> - when (it) { - is SfuSocketState.Connected -> { - logger.d { "[switchSfu] Migration SFU socket state changed to Connected" } - - // Disconnect the old SFU and stop listening to SFU stateflows - eventJob?.cancel() - errorJob?.cancel() - // Cleanup called after the migration is successful - // sfuConnectionModule.sfuSocket.cleanup() - - // Make the new SFU the currently used one - setSfuConnectionModule(sfuConnectionMigrationModule!!) - sfuConnectionMigrationModule = null - - // We are connected to the new SFU, change the RtcSession parameters to - // match the new SFU - this@RtcSession.sfuUrl = sfuUrl - this@RtcSession.sfuToken = sfuToken - this@RtcSession.remoteIceServers = remoteIceServers - this@RtcSession.iceServers = buildRemoteIceServers(remoteIceServers) - - // reconnect socket listeners - listenToSfuSocket() - - var tempSubscriber = subscriber - - // step 1 setup the peer connections - subscriber = createSubscriber() - - // This makes sure that the new subscriber starts listening to the existing tracks - // Without this the peer connection state would stay in NEW - setVideoSubscriptions() - - // Start emiting the new subscriber connection state (used by CallHealthMonitor) - listenToSubscriberConnection() - - // Necessary after SFU migration. This will trigger onNegotiationNeeded - publisher?.connection?.restartIce() - - coroutineScope.launch { - subscriber?.state?.collect { - if (it == PeerConnectionState.CONNECTED) { - logger.d { "[switchSfu] Migration subscriber state changed to Connected" } - tempSubscriber?.let { tempSubscriberValue -> - tempSubscriberValue.connection.close() - } - cancel() - } else if (it == PeerConnectionState.CLOSED || - it == PeerConnectionState.DISCONNECTED || - it == PeerConnectionState.FAILED - ) { - logger.d { "[switchSfu] Failed to migrate - subscriber didn't connect ($it)" } - // Something when wrong with the new subscriber connection - // We give up the migration and wait for full reconnect - failedToSwitch() - cancel() - } - } - } - - updatePeerState() - - // Only listen for the connection event once - cancel() - } - - is SfuSocketState.Disconnected.DisconnectedPermanently -> { - logger.d { "[switchSfu] Failed to migrate - SFU socket disconnected permanently ${it.error}" } - failedToSwitch() - cancel() - } - - is SfuSocketState.Disconnected.DisconnectedTemporarily -> { - logger.d { "[switchSfu] Failed to migrate - SFU socket disconnected temporarily ${it.error}" } - // We don't wait for the socket to retry during migration - // In this case we will fall back to full-reconnect - failedToSwitch() - cancel() - } - - else -> { - // Wait - } - } - } - } - } - internal fun leaveWithReason(reason: String) { val leaveCallRequest = LeaveCallRequest( session_id = sessionId, diff --git a/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt b/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt index 79f1443ab0..50204acf75 100644 --- a/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt +++ b/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt @@ -106,7 +106,7 @@ public class VirtualBackgroundVideoFilter( // Make a copy of the scaled virtual background bitmap. Used when processing each frame. scaledVirtualBackgroundBitmapCopy = scaledVirtualBackgroundBitmap!!.copy( /* config = */ - scaledVirtualBackgroundBitmap!!.config, + scaledVirtualBackgroundBitmap!!.config!!, /* isMutable = */ true, ) diff --git a/stream-video-android-previewdata/src/main/baseline-prof.txt b/stream-video-android-previewdata/src/main/baseline-prof.txt index 008d9f2cfc..5b9213546c 100644 --- a/stream-video-android-previewdata/src/main/baseline-prof.txt +++ b/stream-video-android-previewdata/src/main/baseline-prof.txt @@ -1,7 +1,3 @@ -Lio/getstream/video/android/model/Device$$serializer; -HSPLio/getstream/video/android/model/Device$$serializer;->()V -HSPLio/getstream/video/android/model/Device$$serializer;->()V -HSPLio/getstream/video/android/model/Device$$serializer;->getDescriptor()Lkotlinx/serialization/descriptors/SerialDescriptor; PLio/getstream/video/android/model/StreamCallId;->()V PLio/getstream/video/android/model/StreamCallId;->(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V PLio/getstream/video/android/model/StreamCallId;->(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V @@ -13,13 +9,14 @@ PLio/getstream/video/android/model/StreamCallId$Companion;->fromCallCid(Ljava/la PLio/getstream/video/android/model/StreamCallId$Creator;->()V Lio/getstream/video/android/model/User; HSPLio/getstream/video/android/model/User;->()V -HPLio/getstream/video/android/model/User;->(Ljava/lang/String;Ljava/lang/String;Lio/getstream/video/android/model/UserType;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/Map;Lorg/threeten/bp/OffsetDateTime;Lorg/threeten/bp/OffsetDateTime;Lorg/threeten/bp/OffsetDateTime;)V +HSPLio/getstream/video/android/model/User;->(Ljava/lang/String;Ljava/lang/String;Lio/getstream/video/android/model/UserType;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/Map;Lorg/threeten/bp/OffsetDateTime;Lorg/threeten/bp/OffsetDateTime;Lorg/threeten/bp/OffsetDateTime;)V HSPLio/getstream/video/android/model/User;->(Ljava/lang/String;Ljava/lang/String;Lio/getstream/video/android/model/UserType;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/Map;Lorg/threeten/bp/OffsetDateTime;Lorg/threeten/bp/OffsetDateTime;Lorg/threeten/bp/OffsetDateTime;ILkotlin/jvm/internal/DefaultConstructorMarker;)V -HSPLio/getstream/video/android/model/User;->equals(Ljava/lang/Object;)Z +PLio/getstream/video/android/model/User;->equals(Ljava/lang/Object;)Z HSPLio/getstream/video/android/model/User;->getCustom()Ljava/util/Map; HSPLio/getstream/video/android/model/User;->getId()Ljava/lang/String; HSPLio/getstream/video/android/model/User;->getImage()Ljava/lang/String; HSPLio/getstream/video/android/model/User;->getName()Ljava/lang/String; +HSPLio/getstream/video/android/model/User;->getRole()Ljava/lang/String; HSPLio/getstream/video/android/model/User;->getType()Lio/getstream/video/android/model/UserType; HSPLio/getstream/video/android/model/User;->hashCode()I HSPLio/getstream/video/android/model/User;->toString()Ljava/lang/String; @@ -33,41 +30,42 @@ HSPLio/getstream/video/android/model/User$$serializer;->serialize(Lkotlinx/seria Lio/getstream/video/android/model/User$Companion; HSPLio/getstream/video/android/model/User$Companion;->()V HSPLio/getstream/video/android/model/User$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLio/getstream/video/android/model/User$Companion;->isAnonymous(Lio/getstream/video/android/model/User;)Z Lio/getstream/video/android/model/UserType; +HSPLio/getstream/video/android/model/UserType;->$r8$lambda$RWONjubW8NwY9XVQ_oy1H58NDq4()Lkotlinx/serialization/KSerializer; HSPLio/getstream/video/android/model/UserType;->()V HSPLio/getstream/video/android/model/UserType;->()V HSPLio/getstream/video/android/model/UserType;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLio/getstream/video/android/model/UserType;->_init_$_anonymous_()Lkotlinx/serialization/KSerializer; HSPLio/getstream/video/android/model/UserType;->access$get$cachedSerializer$delegate$cp()Lkotlin/Lazy; +Lio/getstream/video/android/model/UserType$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/model/UserType$$ExternalSyntheticLambda0;->()V +HSPLio/getstream/video/android/model/UserType$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object; Lio/getstream/video/android/model/UserType$Anonymous; HSPLio/getstream/video/android/model/UserType$Anonymous;->()V HSPLio/getstream/video/android/model/UserType$Anonymous;->()V -Lio/getstream/video/android/model/UserType$Anonymous$1; -HSPLio/getstream/video/android/model/UserType$Anonymous$1;->()V -HSPLio/getstream/video/android/model/UserType$Anonymous$1;->()V +Lio/getstream/video/android/model/UserType$Anonymous$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/model/UserType$Anonymous$$ExternalSyntheticLambda0;->()V Lio/getstream/video/android/model/UserType$Authenticated; HSPLio/getstream/video/android/model/UserType$Authenticated;->()V HSPLio/getstream/video/android/model/UserType$Authenticated;->()V HSPLio/getstream/video/android/model/UserType$Authenticated;->equals(Ljava/lang/Object;)Z HSPLio/getstream/video/android/model/UserType$Authenticated;->hashCode()I HSPLio/getstream/video/android/model/UserType$Authenticated;->toString()Ljava/lang/String; -Lio/getstream/video/android/model/UserType$Authenticated$1; -HSPLio/getstream/video/android/model/UserType$Authenticated$1;->()V -HSPLio/getstream/video/android/model/UserType$Authenticated$1;->()V +Lio/getstream/video/android/model/UserType$Authenticated$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/model/UserType$Authenticated$$ExternalSyntheticLambda0;->()V Lio/getstream/video/android/model/UserType$Companion; HSPLio/getstream/video/android/model/UserType$Companion;->()V HSPLio/getstream/video/android/model/UserType$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V HSPLio/getstream/video/android/model/UserType$Companion;->get$cachedSerializer()Lkotlinx/serialization/KSerializer; HSPLio/getstream/video/android/model/UserType$Companion;->serializer()Lkotlinx/serialization/KSerializer; -Lio/getstream/video/android/model/UserType$Companion$1; -HSPLio/getstream/video/android/model/UserType$Companion$1;->()V -HSPLio/getstream/video/android/model/UserType$Companion$1;->()V -HSPLio/getstream/video/android/model/UserType$Companion$1;->invoke()Ljava/lang/Object; -HSPLio/getstream/video/android/model/UserType$Companion$1;->invoke()Lkotlinx/serialization/KSerializer; Lio/getstream/video/android/model/UserType$Guest; HSPLio/getstream/video/android/model/UserType$Guest;->()V HSPLio/getstream/video/android/model/UserType$Guest;->()V -Lio/getstream/video/android/model/UserType$Guest$1; -HSPLio/getstream/video/android/model/UserType$Guest$1;->()V -HSPLio/getstream/video/android/model/UserType$Guest$1;->()V -PLio/getstream/video/android/model/mapper/StreamCallCidMapperKt;->isValidCallId(Ljava/lang/String;)Z -PLio/getstream/video/android/model/mapper/StreamCallCidMapperKt;->toTypeAndId(Ljava/lang/String;)Lkotlin/Pair; \ No newline at end of file +Lio/getstream/video/android/model/UserType$Guest$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/model/UserType$Guest$$ExternalSyntheticLambda0;->()V +PLio/getstream/video/android/model/mapper/StreamCallCidMapperKt;->isValidCallCid(Ljava/lang/String;)Z +PLio/getstream/video/android/model/mapper/StreamCallCidMapperKt;->toTypeAndId(Ljava/lang/String;)Lkotlin/Pair; +Lio/getstream/video/android/models/UserCredentials; +Lio/getstream/video/android/models/UsersKt; +HSPLio/getstream/video/android/models/UsersKt;->getBuiltInCredentials(Lio/getstream/video/android/model/User$Companion;)Ljava/util/Map; \ No newline at end of file diff --git a/stream-video-android-ui-compose/src/main/baseline-prof.txt b/stream-video-android-ui-compose/src/main/baseline-prof.txt index dfbd024fa4..1ef966c750 100644 --- a/stream-video-android-ui-compose/src/main/baseline-prof.txt +++ b/stream-video-android-ui-compose/src/main/baseline-prof.txt @@ -1,23 +1,24 @@ +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt;->$r8$lambda$1YfmgN7yDs458T4SvRO87Mgu-vQ(Landroid/content/Context;Landroid/app/Activity;ZLio/getstream/video/android/core/Call;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult; +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt;->MediaPiPLifecycle$lambda$2$lambda$1(Landroid/content/Context;Landroid/app/Activity;ZLio/getstream/video/android/core/Call;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult; HPLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt;->MediaPiPLifecycle(Lio/getstream/video/android/core/Call;ZLandroidx/compose/runtime/Composer;II)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1;->(Landroid/content/Context;Landroid/app/Activity;ZLio/getstream/video/android/core/Call;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult; -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;->(Landroid/app/Activity;Landroid/content/Context;ZLio/getstream/video/android/core/Call;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;->onActivityPaused(Landroid/app/Activity;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;->onActivityResumed(Landroid/app/Activity;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;->onActivitySaveInstanceState(Landroid/app/Activity;Landroid/os/Bundle;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;->onActivityStarted(Landroid/app/Activity;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;->onActivityStopped(Landroid/app/Activity;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$invoke$$inlined$onDispose$1;->(Landroid/app/Application;Lio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$callbackListener$1;)V -PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$invoke$$inlined$onDispose$1;->dispose()V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$$ExternalSyntheticLambda0;->(Landroid/content/Context;Landroid/app/Activity;ZLio/getstream/video/android/core/Call;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$$ExternalSyntheticLambda0;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;->(Landroid/app/Activity;Landroid/content/Context;ZLio/getstream/video/android/core/Call;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;->onActivityPaused(Landroid/app/Activity;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;->onActivityResumed(Landroid/app/Activity;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;->onActivitySaveInstanceState(Landroid/app/Activity;Landroid/os/Bundle;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;->onActivityStarted(Landroid/app/Activity;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;->onActivityStopped(Landroid/app/Activity;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$lambda$2$lambda$1$$inlined$onDispose$1;->(Landroid/app/Application;Lio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$1$1$callbackListener$1;)V +PLio/getstream/video/android/compose/lifecycle/MediaPiPLifecycleKt$MediaPiPLifecycle$lambda$2$lambda$1$$inlined$onDispose$1;->dispose()V HPLio/getstream/video/android/compose/permission/CallPermissionsKt;->rememberCallPermissionsState(Lio/getstream/video/android/core/Call;Ljava/util/List;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)Lio/getstream/video/android/compose/permission/VideoPermissionsState; -PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$1;->(ZLkotlin/jvm/functions/Function1;Lkotlin/coroutines/Continuation;)V -PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation; -PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/permission/CallPermissionsKt$$ExternalSyntheticLambda1;->(Lkotlin/jvm/functions/Function1;Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;)V +PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$1$1;->(ZLkotlin/jvm/functions/Function1;Lkotlin/coroutines/Continuation;)V +PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$1$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation; +PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$1$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object; PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$2$1;->(Lcom/google/accompanist/permissions/MultiplePermissionsState;)V PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$2$1;->launchPermissionRequest()V -PLio/getstream/video/android/compose/permission/CallPermissionsKt$rememberCallPermissionsState$permissionState$1$1;->(Lkotlin/jvm/functions/Function1;Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;)V PLio/getstream/video/android/compose/pip/PictureInPictureKt;->findActivity(Landroid/content/Context;)Landroid/app/Activity; PLio/getstream/video/android/compose/pip/PictureInPictureKt;->isInPictureInPictureMode(Landroid/content/Context;)Z Lio/getstream/video/android/compose/theme/StreamColors; @@ -26,7 +27,7 @@ HPLio/getstream/video/android/compose/theme/StreamColors;->(JJJJJJJJJJJJJJ HSPLio/getstream/video/android/compose/theme/StreamColors;->(JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJLkotlin/jvm/internal/DefaultConstructorMarker;)V HSPLio/getstream/video/android/compose/theme/StreamColors;->getAlertWarning-0d7_KjU()J HPLio/getstream/video/android/compose/theme/StreamColors;->getBasePrimary-0d7_KjU()J -HPLio/getstream/video/android/compose/theme/StreamColors;->getBaseQuaternary-0d7_KjU()J +HSPLio/getstream/video/android/compose/theme/StreamColors;->getBaseQuaternary-0d7_KjU()J HSPLio/getstream/video/android/compose/theme/StreamColors;->getBaseQuinary-0d7_KjU()J HSPLio/getstream/video/android/compose/theme/StreamColors;->getBaseSenary-0d7_KjU()J HSPLio/getstream/video/android/compose/theme/StreamColors;->getBaseSheetPrimary-0d7_KjU()J @@ -71,7 +72,7 @@ HSPLio/getstream/video/android/compose/theme/StreamDimens;->getRoundnessM-D9Ej5f HSPLio/getstream/video/android/compose/theme/StreamDimens;->getRoundnessS-D9Ej5fM()F HSPLio/getstream/video/android/compose/theme/StreamDimens;->getRoundnessXl-D9Ej5fM()F HSPLio/getstream/video/android/compose/theme/StreamDimens;->getSpacingL-D9Ej5fM()F -HPLio/getstream/video/android/compose/theme/StreamDimens;->getSpacingM-D9Ej5fM()F +HSPLio/getstream/video/android/compose/theme/StreamDimens;->getSpacingM-D9Ej5fM()F HSPLio/getstream/video/android/compose/theme/StreamDimens;->getSpacingS-D9Ej5fM()F HSPLio/getstream/video/android/compose/theme/StreamDimens;->getSpacingXs-D9Ej5fM()F HSPLio/getstream/video/android/compose/theme/StreamDimens;->getTextSizeL-XSAIIZE()J @@ -84,15 +85,14 @@ Lio/getstream/video/android/compose/theme/StreamDimens$Companion; HSPLio/getstream/video/android/compose/theme/StreamDimens$Companion;->()V HSPLio/getstream/video/android/compose/theme/StreamDimens$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V HPLio/getstream/video/android/compose/theme/StreamDimens$Companion;->defaultDimens(Landroidx/compose/runtime/Composer;I)Lio/getstream/video/android/compose/theme/StreamDimens; -Lio/getstream/video/android/compose/theme/StreamRippleTheme; -HSPLio/getstream/video/android/compose/theme/StreamRippleTheme;->()V -HSPLio/getstream/video/android/compose/theme/StreamRippleTheme;->()V -HPLio/getstream/video/android/compose/theme/StreamRippleTheme;->defaultColor-WaAFU9c(Landroidx/compose/runtime/Composer;I)J -HPLio/getstream/video/android/compose/theme/StreamRippleTheme;->rippleAlpha(Landroidx/compose/runtime/Composer;I)Landroidx/compose/material/ripple/RippleAlpha; +Lio/getstream/video/android/compose/theme/StreamRippleConfiguration; +HSPLio/getstream/video/android/compose/theme/StreamRippleConfiguration;->()V +HSPLio/getstream/video/android/compose/theme/StreamRippleConfiguration;->()V +HSPLio/getstream/video/android/compose/theme/StreamRippleConfiguration;->default(Landroidx/compose/runtime/Composer;I)Landroidx/compose/material/RippleConfiguration; Lio/getstream/video/android/compose/theme/StreamShapes; HSPLio/getstream/video/android/compose/theme/StreamShapes;->()V HSPLio/getstream/video/android/compose/theme/StreamShapes;->(Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Shape;)V -HPLio/getstream/video/android/compose/theme/StreamShapes;->getButton()Landroidx/compose/ui/graphics/Shape; +HSPLio/getstream/video/android/compose/theme/StreamShapes;->getButton()Landroidx/compose/ui/graphics/Shape; HSPLio/getstream/video/android/compose/theme/StreamShapes;->getCircle()Landroidx/compose/ui/graphics/Shape; HSPLio/getstream/video/android/compose/theme/StreamShapes;->getInput()Landroidx/compose/ui/graphics/Shape; Lio/getstream/video/android/compose/theme/StreamShapes$Companion; @@ -110,7 +110,7 @@ HSPLio/getstream/video/android/compose/theme/StreamTypography;->()V HPLio/getstream/video/android/compose/theme/StreamTypography;->(Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;Landroidx/compose/ui/text/TextStyle;)V HSPLio/getstream/video/android/compose/theme/StreamTypography;->getBodyM()Landroidx/compose/ui/text/TextStyle; PLio/getstream/video/android/compose/theme/StreamTypography;->getBodyS()Landroidx/compose/ui/text/TextStyle; -HPLio/getstream/video/android/compose/theme/StreamTypography;->getLabelM()Landroidx/compose/ui/text/TextStyle; +HSPLio/getstream/video/android/compose/theme/StreamTypography;->getLabelM()Landroidx/compose/ui/text/TextStyle; HSPLio/getstream/video/android/compose/theme/StreamTypography;->getSubtitleS()Landroidx/compose/ui/text/TextStyle; HSPLio/getstream/video/android/compose/theme/StreamTypography;->getTitleM()Landroidx/compose/ui/text/TextStyle; PLio/getstream/video/android/compose/theme/StreamTypography;->getTitleS()Landroidx/compose/ui/text/TextStyle; @@ -123,100 +123,94 @@ HSPLio/getstream/video/android/compose/theme/VideoTheme;->()V HSPLio/getstream/video/android/compose/theme/VideoTheme;->()V Lio/getstream/video/android/compose/theme/VideoThemeKt; HSPLio/getstream/video/android/compose/theme/VideoThemeKt;->()V -HPLio/getstream/video/android/compose/theme/VideoThemeKt;->VideoTheme(ZLio/getstream/video/android/compose/theme/StreamColors;Lio/getstream/video/android/compose/theme/StreamDimens;Lio/getstream/video/android/compose/theme/StreamTypography;Lio/getstream/video/android/compose/theme/StreamShapes;Landroidx/compose/material/ripple/RippleTheme;Lio/getstream/video/android/core/mapper/ReactionMapper;ZLio/getstream/video/android/compose/ui/components/base/styling/CompositeStyleProvider;Lkotlin/jvm/functions/Function2;Landroidx/compose/runtime/Composer;II)V +HPLio/getstream/video/android/compose/theme/VideoThemeKt;->VideoTheme(ZLio/getstream/video/android/compose/theme/StreamColors;Lio/getstream/video/android/compose/theme/StreamDimens;Lio/getstream/video/android/compose/theme/StreamTypography;Lio/getstream/video/android/compose/theme/StreamShapes;Lio/getstream/video/android/compose/theme/StreamRippleConfiguration;Lio/getstream/video/android/core/mapper/ReactionMapper;ZLio/getstream/video/android/compose/ui/components/base/styling/CompositeStyleProvider;Lkotlin/jvm/functions/Function2;Landroidx/compose/runtime/Composer;II)V HPLio/getstream/video/android/compose/theme/VideoThemeKt;->access$getLocalColors$p()Landroidx/compose/runtime/ProvidableCompositionLocal; HPLio/getstream/video/android/compose/theme/VideoThemeKt;->access$getLocalDimens$p()Landroidx/compose/runtime/ProvidableCompositionLocal; HSPLio/getstream/video/android/compose/theme/VideoThemeKt;->access$getLocalShapes$p()Landroidx/compose/runtime/ProvidableCompositionLocal; HSPLio/getstream/video/android/compose/theme/VideoThemeKt;->access$getLocalStyles$p()Landroidx/compose/runtime/ProvidableCompositionLocal; -HPLio/getstream/video/android/compose/theme/VideoThemeKt;->access$getLocalTypography$p()Landroidx/compose/runtime/ProvidableCompositionLocal; -Lio/getstream/video/android/compose/theme/VideoThemeKt$LocalColors$1; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalColors$1;->()V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalColors$1;->()V -Lio/getstream/video/android/compose/theme/VideoThemeKt$LocalDimens$1; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalDimens$1;->()V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalDimens$1;->()V -Lio/getstream/video/android/compose/theme/VideoThemeKt$LocalReactionMapper$1; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalReactionMapper$1;->()V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalReactionMapper$1;->()V -Lio/getstream/video/android/compose/theme/VideoThemeKt$LocalShapes$1; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalShapes$1;->()V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalShapes$1;->()V -Lio/getstream/video/android/compose/theme/VideoThemeKt$LocalStyles$1; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalStyles$1;->()V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalStyles$1;->()V -Lio/getstream/video/android/compose/theme/VideoThemeKt$LocalTypography$1; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalTypography$1;->()V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$LocalTypography$1;->()V +HSPLio/getstream/video/android/compose/theme/VideoThemeKt;->access$getLocalTypography$p()Landroidx/compose/runtime/ProvidableCompositionLocal; +Lio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda0;->(ZLio/getstream/video/android/compose/theme/StreamColors;Lio/getstream/video/android/compose/theme/StreamDimens;Lio/getstream/video/android/compose/theme/StreamTypography;Lio/getstream/video/android/compose/theme/StreamShapes;Lio/getstream/video/android/compose/theme/StreamRippleConfiguration;Lio/getstream/video/android/core/mapper/ReactionMapper;ZLio/getstream/video/android/compose/ui/components/base/styling/CompositeStyleProvider;Lkotlin/jvm/functions/Function2;II)V +Lio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda1; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda1;->()V +Lio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda2; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda2;->()V +Lio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda3; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda3;->()V +Lio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda4; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda4;->()V +Lio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda5; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda5;->()V +Lio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda6; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$$ExternalSyntheticLambda6;->()V Lio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1;->$r8$lambda$Gz2ujoymZhPfVULd67brgwwv2UA(ZLandroidx/compose/ui/semantics/SemanticsPropertyReceiver;)Lkotlin/Unit; HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1;->(ZLkotlin/jvm/functions/Function2;)V +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1;->invoke$lambda$1$lambda$0(ZLandroidx/compose/ui/semantics/SemanticsPropertyReceiver;)Lkotlin/Unit; HPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1;->invoke(Landroidx/compose/runtime/Composer;I)V HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -Lio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1$1$1; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1$1$1;->(Z)V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1$1$1;->invoke(Landroidx/compose/ui/semantics/SemanticsPropertyReceiver;)V -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -Lio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$2; -HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$2;->(ZLio/getstream/video/android/compose/theme/StreamColors;Lio/getstream/video/android/compose/theme/StreamDimens;Lio/getstream/video/android/compose/theme/StreamTypography;Lio/getstream/video/android/compose/theme/StreamShapes;Landroidx/compose/material/ripple/RippleTheme;Lio/getstream/video/android/core/mapper/ReactionMapper;ZLio/getstream/video/android/compose/ui/components/base/styling/CompositeStyleProvider;Lkotlin/jvm/functions/Function2;II)V +Lio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1$$ExternalSyntheticLambda0;->(Z)V +HSPLio/getstream/video/android/compose/theme/VideoThemeKt$VideoTheme$1$$ExternalSyntheticLambda0;->invoke(Ljava/lang/Object;)Ljava/lang/Object; Lio/getstream/video/android/compose/ui/components/avatar/AvatarKt; HPLio/getstream/video/android/compose/ui/components/avatar/AvatarKt;->Avatar-RIwbUY4(Landroidx/compose/ui/Modifier;Ljava/lang/String;Ljava/lang/String;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/layout/ContentScale;Ljava/lang/String;JLjava/lang/Integer;ILandroidx/compose/ui/text/TextStyle;JLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;III)V Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->$r8$lambda$4w6a1tej75o-PXlb6_f7drPQwmc(Ljava/lang/String;)Ljava/lang/String; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->$r8$lambda$8x2Pt_9-QgE5I94XLSHaVkXrabM(Landroidx/compose/ui/Modifier;Ljava/lang/String;Landroidx/compose/ui/text/TextStyle;JLandroidx/compose/ui/graphics/Shape;Lkotlin/jvm/functions/Function1;IILandroidx/compose/runtime/Composer;I)Lkotlin/Unit; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->$r8$lambda$dUOvFritukE76SQzMFpJyR5vefk(Landroidx/compose/runtime/MutableState;Landroidx/compose/ui/graphics/drawscope/ContentDrawScope;)Lkotlin/Unit; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->$r8$lambda$jtkiLE4MZkzA5FpZnd2Bnabj-WQ(Landroidx/compose/runtime/MutableState;Landroidx/compose/runtime/MutableState;Landroidx/compose/ui/text/TextLayoutResult;)Lkotlin/Unit; HPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar-ILWXrKs(Landroidx/compose/ui/Modifier;Ljava/lang/String;Landroidx/compose/ui/text/TextStyle;JLandroidx/compose/ui/graphics/Shape;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$1(Landroidx/compose/runtime/MutableState;)J -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$2(Landroidx/compose/runtime/MutableState;J)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$4(Landroidx/compose/runtime/MutableState;)Z -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$5(Landroidx/compose/runtime/MutableState;Z)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->access$InitialsAvatar_ILWXrKs$lambda$1(Landroidx/compose/runtime/MutableState;)J -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->access$InitialsAvatar_ILWXrKs$lambda$2(Landroidx/compose/runtime/MutableState;J)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->access$InitialsAvatar_ILWXrKs$lambda$4(Landroidx/compose/runtime/MutableState;)Z -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->access$InitialsAvatar_ILWXrKs$lambda$5(Landroidx/compose/runtime/MutableState;Z)V -Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$1; -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$1;->()V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$1;->()V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$1;->invoke(Ljava/lang/String;)Ljava/lang/String; -Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$1$1; -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$1$1;->(Landroidx/compose/runtime/MutableState;)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$1$1;->invoke(Landroidx/compose/ui/graphics/drawscope/ContentDrawScope;)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$2$1; -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$2$1;->(Landroidx/compose/runtime/MutableState;Landroidx/compose/runtime/MutableState;)V -HPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$2$1;->invoke(Landroidx/compose/ui/text/TextLayoutResult;)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$2$2$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$3; -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$3;->(Landroidx/compose/ui/Modifier;Ljava/lang/String;Landroidx/compose/ui/text/TextStyle;JLandroidx/compose/ui/graphics/Shape;Lkotlin/jvm/functions/Function1;II)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$3;->invoke(Landroidx/compose/runtime/Composer;I)V -HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$InitialsAvatar$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$1$lambda$0(Ljava/lang/String;)Ljava/lang/String; +HPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$12$lambda$11$lambda$10(Landroidx/compose/runtime/MutableState;Landroidx/compose/runtime/MutableState;Landroidx/compose/ui/text/TextLayoutResult;)Lkotlin/Unit; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$12$lambda$9$lambda$8(Landroidx/compose/runtime/MutableState;Landroidx/compose/ui/graphics/drawscope/ContentDrawScope;)Lkotlin/Unit; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$13(Landroidx/compose/ui/Modifier;Ljava/lang/String;Landroidx/compose/ui/text/TextStyle;JLandroidx/compose/ui/graphics/Shape;Lkotlin/jvm/functions/Function1;IILandroidx/compose/runtime/Composer;I)Lkotlin/Unit; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$3(Landroidx/compose/runtime/MutableState;)J +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$4(Landroidx/compose/runtime/MutableState;J)V +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$6(Landroidx/compose/runtime/MutableState;)Z +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt;->InitialsAvatar_ILWXrKs$lambda$7(Landroidx/compose/runtime/MutableState;Z)V +Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda1; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda1;->()V +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda2; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda2;->(Landroidx/compose/runtime/MutableState;)V +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda2;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda3; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda3;->(Landroidx/compose/runtime/MutableState;Landroidx/compose/runtime/MutableState;)V +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda3;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +Lio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda4; +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda4;->(Landroidx/compose/ui/Modifier;Ljava/lang/String;Landroidx/compose/ui/text/TextStyle;JLandroidx/compose/ui/graphics/Shape;Lkotlin/jvm/functions/Function1;II)V +HSPLio/getstream/video/android/compose/ui/components/avatar/InitialsAvatarKt$$ExternalSyntheticLambda4;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; Lio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProvider; HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProvider;->()V HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProvider;->()V HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProvider;->getLocalAvatarLoadingPlaceholder(Landroidx/compose/runtime/Composer;I)Ljava/lang/Integer; HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProvider;->getLocalAvatarPreviewPlaceholder(Landroidx/compose/runtime/Composer;I)I Lio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt; +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt;->$r8$lambda$i_2d9rbbhV59sKKK-my9rJVZRT0()I +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt;->$r8$lambda$x1KGiE8kv0FnqBApvy5IkN_lXko()Ljava/lang/Integer; HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt;->()V +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt;->LocalAvatarLoadingPlaceholder$lambda$1()Ljava/lang/Integer; +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt;->LocalAvatarPreviewPlaceholder$lambda$0()I HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt;->getLocalAvatarLoadingPlaceholder()Landroidx/compose/runtime/ProvidableCompositionLocal; HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt;->getLocalAvatarPreviewPlaceholder()Landroidx/compose/runtime/ProvidableCompositionLocal; -Lio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarLoadingPlaceholder$1; -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarLoadingPlaceholder$1;->()V -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarLoadingPlaceholder$1;->()V -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarLoadingPlaceholder$1;->invoke()Ljava/lang/Integer; -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarLoadingPlaceholder$1;->invoke()Ljava/lang/Object; -Lio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarPreviewPlaceholder$1; -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarPreviewPlaceholder$1;->()V -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarPreviewPlaceholder$1;->()V -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarPreviewPlaceholder$1;->invoke()Ljava/lang/Integer; -HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$LocalAvatarPreviewPlaceholder$1;->invoke()Ljava/lang/Object; +Lio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$$ExternalSyntheticLambda0;->()V +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object; +Lio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$$ExternalSyntheticLambda1; +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$$ExternalSyntheticLambda1;->()V +HSPLio/getstream/video/android/compose/ui/components/avatar/LocalAvatarPreviewProviderKt$$ExternalSyntheticLambda1;->invoke()Ljava/lang/Object; Lio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment; HSPLio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment;->$values()[Lio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment; HSPLio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment;->()V HSPLio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment;->(Ljava/lang/String;ILandroidx/compose/ui/Alignment;)V Lio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt; HPLio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt;->UserAvatar-S9GcbaY(Landroidx/compose/ui/Modifier;Ljava/lang/String;Ljava/lang/String;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/layout/ContentScale;Ljava/lang/String;JLjava/lang/Integer;ILandroidx/compose/ui/text/TextStyle;JZLio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;III)V +Lio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt$$ExternalSyntheticLambda0;->(Landroidx/compose/ui/Modifier;Ljava/lang/String;Ljava/lang/String;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/layout/ContentScale;Ljava/lang/String;JLjava/lang/Integer;ILandroidx/compose/ui/text/TextStyle;JZLio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function0;III)V Lio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt$UserAvatar$1; HSPLio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt$UserAvatar$1;->(Lio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment;)V -Lio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt$UserAvatar$3; -HSPLio/getstream/video/android/compose/ui/components/avatar/UserAvatarKt$UserAvatar$3;->(Landroidx/compose/ui/Modifier;Ljava/lang/String;Ljava/lang/String;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/layout/ContentScale;Ljava/lang/String;JLjava/lang/Integer;ILandroidx/compose/ui/text/TextStyle;JZLio/getstream/video/android/compose/ui/components/avatar/OnlineIndicatorAlignment;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function0;III)V Lio/getstream/video/android/compose/ui/components/base/InputFieldsKt; -HPLio/getstream/video/android/compose/ui/components/base/InputFieldsKt;->StreamOutlinedTextField(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/text/input/TextFieldValue;Lkotlin/jvm/functions/Function1;ZZLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;Lkotlin/jvm/functions/Function2;ZLandroidx/compose/ui/text/input/VisualTransformation;Landroidx/compose/foundation/text/KeyboardOptions;Landroidx/compose/foundation/text/KeyboardActions;ZIILkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Landroidx/compose/foundation/interaction/MutableInteractionSource;Landroidx/compose/runtime/Composer;III)V +HSPLio/getstream/video/android/compose/ui/components/base/InputFieldsKt;->StreamOutlinedTextField(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/text/input/TextFieldValue;Lkotlin/jvm/functions/Function1;ZZLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;Lkotlin/jvm/functions/Function2;ZLandroidx/compose/ui/text/input/VisualTransformation;Landroidx/compose/foundation/text/KeyboardOptions;Landroidx/compose/foundation/text/KeyboardActions;ZIILkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function2;Landroidx/compose/foundation/interaction/MutableInteractionSource;Landroidx/compose/runtime/Composer;III)V HPLio/getstream/video/android/compose/ui/components/base/InputFieldsKt;->StreamTextField(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/text/input/TextFieldValue;Lkotlin/jvm/functions/Function1;ZZLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;Ljava/lang/String;ZIILandroidx/compose/ui/graphics/vector/ImageVector;Landroidx/compose/ui/text/input/VisualTransformation;Landroidx/compose/foundation/text/KeyboardOptions;Landroidx/compose/foundation/text/KeyboardActions;Landroidx/compose/foundation/interaction/MutableInteractionSource;Landroidx/compose/runtime/Composer;III)V Lio/getstream/video/android/compose/ui/components/base/InputFieldsKt$StreamTextField$5; HSPLio/getstream/video/android/compose/ui/components/base/InputFieldsKt$StreamTextField$5;->(Lio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;Landroidx/compose/foundation/interaction/MutableInteractionSource;ZLjava/lang/String;)V @@ -226,31 +220,31 @@ HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt;->Generi HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt;->StreamButton(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/graphics/vector/ImageVector;Ljava/lang/String;ZZLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;Landroidx/compose/foundation/interaction/MutableInteractionSource;Lkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt;->StreamIconButton(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function0;ZZLandroidx/compose/foundation/interaction/MutableInteractionSource;Landroidx/compose/runtime/Composer;II)V HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt;->StreamIconToggleButton(Landroidx/compose/ui/Modifier;Landroidx/compose/runtime/State;Landroidx/compose/ui/graphics/vector/ImageVector;Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;ZLio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;ZLandroidx/compose/foundation/interaction/MutableInteractionSource;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V -Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$GenericToggleButton$3; -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$GenericToggleButton$3;->(Landroidx/compose/ui/Modifier;Landroidx/compose/runtime/State;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Lkotlin/jvm/functions/Function4;II)V +Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$$ExternalSyntheticLambda19; +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$$ExternalSyntheticLambda19;->(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/graphics/vector/ImageVector;Ljava/lang/String;ZZLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;Landroidx/compose/foundation/interaction/MutableInteractionSource;Lkotlin/jvm/functions/Function0;II)V +Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$$ExternalSyntheticLambda21; +HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$$ExternalSyntheticLambda21;->(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function0;ZZLandroidx/compose/foundation/interaction/MutableInteractionSource;II)V +Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$$ExternalSyntheticLambda4; +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$$ExternalSyntheticLambda4;->(Landroidx/compose/ui/Modifier;Landroidx/compose/runtime/State;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Lkotlin/jvm/functions/Function4;II)V Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$3; -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$3;->(Landroidx/compose/foundation/interaction/MutableInteractionSource;ZLandroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;Ljava/lang/String;Z)V +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$3;->(Landroidx/compose/foundation/interaction/MutableInteractionSource;ZLandroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;Ljava/lang/String;Z)V HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$3;->invoke(Landroidx/compose/foundation/layout/RowScope;Landroidx/compose/runtime/Composer;I)V -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$4; -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$4;->(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/graphics/vector/ImageVector;Ljava/lang/String;ZZLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;Landroidx/compose/foundation/interaction/MutableInteractionSource;Lkotlin/jvm/functions/Function0;II)V +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamButton$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$3; -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$3;->(ZLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Landroidx/compose/ui/graphics/vector/ImageVector;)V +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$3;->(ZLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Landroidx/compose/ui/graphics/vector/ImageVector;)V HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$3;->invoke(Landroidx/compose/foundation/layout/RowScope;Landroidx/compose/runtime/Composer;I)V -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$4; -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$4;->(Landroidx/compose/ui/Modifier;Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function0;ZZLandroidx/compose/foundation/interaction/MutableInteractionSource;II)V +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconButton$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$3; -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$3;->(Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Landroidx/compose/runtime/State;ZZLandroidx/compose/foundation/interaction/MutableInteractionSource;)V +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$3;->(Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Landroidx/compose/runtime/State;ZZLandroidx/compose/foundation/interaction/MutableInteractionSource;)V HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$3;->invoke(Landroidx/compose/foundation/layout/BoxScope;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;I)V PLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$3$1$1;->(Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/State;)V +PLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$3$$ExternalSyntheticLambda0;->(Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/State;)V Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4; -HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4;->(Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Landroidx/compose/runtime/State;ZZLandroidx/compose/foundation/interaction/MutableInteractionSource;)V +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4;->(Landroidx/compose/ui/graphics/vector/ImageVector;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Landroidx/compose/runtime/State;ZZLandroidx/compose/foundation/interaction/MutableInteractionSource;)V HPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4;->invoke(Landroidx/compose/foundation/layout/BoxScope;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;I)V HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4$1$1; -HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4$1$1;->(Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/State;)V +Lio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4$$ExternalSyntheticLambda0; +HSPLio/getstream/video/android/compose/ui/components/base/StreamButtonKt$StreamIconToggleButton$4$$ExternalSyntheticLambda0;->(Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/State;)V Lio/getstream/video/android/compose/ui/components/base/styling/BadgeStyleProvider; HSPLio/getstream/video/android/compose/ui/components/base/styling/BadgeStyleProvider;->()V HSPLio/getstream/video/android/compose/ui/components/base/styling/BadgeStyleProvider;->()V @@ -292,10 +286,10 @@ HSPLio/getstream/video/android/compose/ui/components/base/styling/DialogStylePro Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle; HSPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->()V HPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->(JLandroidx/compose/foundation/layout/PaddingValues;)V -HPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->(JLandroidx/compose/foundation/layout/PaddingValues;Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->(JLandroidx/compose/foundation/layout/PaddingValues;Lkotlin/jvm/internal/DefaultConstructorMarker;)V PLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->copy-DxMtmZc$default(Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;JLandroidx/compose/foundation/layout/PaddingValues;ILjava/lang/Object;)Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->copy-DxMtmZc(JLandroidx/compose/foundation/layout/PaddingValues;)Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->equals(Ljava/lang/Object;)Z +PLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->copy-DxMtmZc(JLandroidx/compose/foundation/layout/PaddingValues;)Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle; +HSPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->equals(Ljava/lang/Object;)Z HSPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->getColor-0d7_KjU()J HSPLio/getstream/video/android/compose/ui/components/base/styling/IconStyle;->getPadding()Landroidx/compose/foundation/layout/PaddingValues; Lio/getstream/video/android/compose/ui/components/base/styling/IconStyleProvider; @@ -317,13 +311,13 @@ HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonSt HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->(Landroidx/compose/material/ButtonElevation;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/foundation/BorderStroke;Landroidx/compose/material/ButtonColors;Landroidx/compose/foundation/layout/PaddingValues;Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonDrawableStyle;)V HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->copy$default(Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;Landroidx/compose/material/ButtonElevation;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/foundation/BorderStroke;Landroidx/compose/material/ButtonColors;Landroidx/compose/foundation/layout/PaddingValues;Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonDrawableStyle;ILjava/lang/Object;)Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle; HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->copy(Landroidx/compose/material/ButtonElevation;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/foundation/BorderStroke;Landroidx/compose/material/ButtonColors;Landroidx/compose/foundation/layout/PaddingValues;Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonDrawableStyle;)Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getBorder()Landroidx/compose/foundation/BorderStroke; -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getColors()Landroidx/compose/material/ButtonColors; -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getContentPadding()Landroidx/compose/foundation/layout/PaddingValues; +HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getBorder()Landroidx/compose/foundation/BorderStroke; +HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getColors()Landroidx/compose/material/ButtonColors; +HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getContentPadding()Landroidx/compose/foundation/layout/PaddingValues; HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getDrawableStyle()Lio/getstream/video/android/compose/ui/components/base/styling/StreamButtonDrawableStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getElevation()Landroidx/compose/material/ButtonElevation; +HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getElevation()Landroidx/compose/material/ButtonElevation; HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getIconStyle()Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getShape()Landroidx/compose/ui/graphics/Shape; +HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getShape()Landroidx/compose/ui/graphics/Shape; HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamButtonStyle;->getTextStyle()Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle; Lio/getstream/video/android/compose/ui/components/base/styling/StreamDialogStyles; HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamDialogStyles;->()V @@ -345,9 +339,8 @@ HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyl HPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->(Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;)V PLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->copy$default(Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;ILjava/lang/Object;)Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle; HPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->copy(Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle;)Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle; -HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->equals(Ljava/lang/Object;)Z -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->getDefault()Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->getDefault()Lio/getstream/video/android/compose/ui/components/base/styling/StreamStyle; +HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->getDefault()Lio/getstream/video/android/compose/ui/components/base/styling/IconStyle; +HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;->getDefault()Lio/getstream/video/android/compose/ui/components/base/styling/StreamStyle; Lio/getstream/video/android/compose/ui/components/base/styling/StreamStateStyle; HPLio/getstream/video/android/compose/ui/components/base/styling/StreamStateStyle;->of(Lio/getstream/video/android/compose/ui/components/base/styling/StyleState;Landroidx/compose/runtime/Composer;I)Landroidx/compose/runtime/State; Lio/getstream/video/android/compose/ui/components/base/styling/StreamStateStyle$WhenMappings; @@ -359,7 +352,6 @@ HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamTextFiel Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle; HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;->()V HPLio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;->(Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;)V -HPLio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;->equals(Ljava/lang/Object;)Z HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;->getDefault()Lio/getstream/video/android/compose/ui/components/base/styling/StreamStyle; HSPLio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;->getDefault()Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper; Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyles; @@ -377,8 +369,7 @@ HSPLio/getstream/video/android/compose/ui/components/base/styling/StyleState;->< HSPLio/getstream/video/android/compose/ui/components/base/styling/StyleState;->values()[Lio/getstream/video/android/compose/ui/components/base/styling/StyleState; Lio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle; HSPLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;->()V -HPLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;->(Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;Landroidx/compose/material/TextFieldColors;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/foundation/BorderStroke;Landroidx/compose/foundation/layout/PaddingValues;)V -HPLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;->equals(Ljava/lang/Object;)Z +HSPLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;->(Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamIconStyle;Landroidx/compose/material/TextFieldColors;Landroidx/compose/ui/graphics/Shape;Landroidx/compose/foundation/BorderStroke;Landroidx/compose/foundation/layout/PaddingValues;)V HSPLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;->getColors()Landroidx/compose/material/TextFieldColors; HSPLio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyle;->getShape()Landroidx/compose/ui/graphics/Shape; Lio/getstream/video/android/compose/ui/components/base/styling/TextFieldStyleProvider; @@ -389,15 +380,15 @@ Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider;->()V HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider;->()V HPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider;->defaultButtonLabel(Lio/getstream/video/android/compose/ui/components/base/styling/StyleSize;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Landroidx/compose/runtime/Composer;II)Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider;->defaultSubtitle(Lio/getstream/video/android/compose/ui/components/base/styling/StyleSize;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Landroidx/compose/runtime/Composer;II)Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle; -HPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider;->defaultTextField(Lio/getstream/video/android/compose/ui/components/base/styling/StyleSize;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Landroidx/compose/runtime/Composer;II)Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle; +HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider;->defaultSubtitle(Lio/getstream/video/android/compose/ui/components/base/styling/StyleSize;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Landroidx/compose/runtime/Composer;II)Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle; +HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider;->defaultTextField(Lio/getstream/video/android/compose/ui/components/base/styling/StyleSize;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;Landroidx/compose/runtime/Composer;II)Lio/getstream/video/android/compose/ui/components/base/styling/StreamTextStyle; Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider$WhenMappings; HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleProvider$WhenMappings;->()V Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper; HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;->()V HPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;->(Landroidx/compose/ui/text/TextStyle;)V -HPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;->equals(Ljava/lang/Object;)Z -HPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;->getPlatform()Landroidx/compose/ui/text/TextStyle; +HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;->equals(Ljava/lang/Object;)Z +HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;->getPlatform()Landroidx/compose/ui/text/TextStyle; Lio/getstream/video/android/compose/ui/components/base/styling/TextStylesKt; HPLio/getstream/video/android/compose/ui/components/base/styling/TextStylesKt;->disabledAlpha(Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;)Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper; HPLio/getstream/video/android/compose/ui/components/base/styling/TextStylesKt;->withAlpha(Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper;F)Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper; @@ -405,95 +396,93 @@ HSPLio/getstream/video/android/compose/ui/components/base/styling/TextStylesKt;- HPLio/getstream/video/android/compose/ui/components/base/styling/TextStylesKt;->wrapper(Landroidx/compose/ui/text/TextStyle;)Lio/getstream/video/android/compose/ui/components/base/styling/TextStyleWrapper; Lio/getstream/video/android/compose/ui/components/base/styling/UtilsKt; HPLio/getstream/video/android/compose/ui/components/base/styling/UtilsKt;->styleState(Landroidx/compose/foundation/interaction/MutableInteractionSource;ZLandroidx/compose/runtime/Composer;I)Lio/getstream/video/android/compose/ui/components/base/styling/StyleState; +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt;->$r8$lambda$Gw-1O1G75AukSr3okEcXsoe2x70(Ljava/util/List;Landroidx/compose/foundation/lazy/LazyListScope;)Lkotlin/Unit; +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt;->ControlActions$lambda$5$lambda$4$lambda$3(Ljava/util/List;Landroidx/compose/foundation/lazy/LazyListScope;)Lkotlin/Unit; HPLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt;->ControlActions(Lio/getstream/video/android/core/Call;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Ljava/util/List;Landroidx/compose/runtime/Composer;II)V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$1$1;->(Lio/getstream/video/android/core/Call;)V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1;->(Ljava/util/List;)V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1;->invoke(Landroidx/compose/foundation/lazy/LazyListScope;)V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$1;->()V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$1;->()V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$1;->invoke(Ljava/lang/Object;)Ljava/lang/Void; -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$3;->(Lkotlin/jvm/functions/Function1;Ljava/util/List;)V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$3;->invoke(I)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$3;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$4;->(Ljava/util/List;)V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$4;->invoke(Landroidx/compose/foundation/lazy/LazyItemScope;ILandroidx/compose/runtime/Composer;I)V -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$2$1$1$invoke$$inlined$items$default$4;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$3;->(Lio/getstream/video/android/core/Call;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Ljava/util/List;II)V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$$ExternalSyntheticLambda0;->(Lio/getstream/video/android/core/Call;)V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$$ExternalSyntheticLambda1;->(Ljava/util/List;)V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$$ExternalSyntheticLambda1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$$ExternalSyntheticLambda2;->(Lio/getstream/video/android/core/Call;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Ljava/util/List;II)V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$1;->()V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$1;->()V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$1;->invoke(Ljava/lang/Object;)Ljava/lang/Void; +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$3;->(Lkotlin/jvm/functions/Function1;Ljava/util/List;)V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$3;->invoke(I)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$3;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$4;->(Ljava/util/List;)V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$4;->invoke(Landroidx/compose/foundation/lazy/LazyItemScope;ILandroidx/compose/runtime/Composer;I)V +PLio/getstream/video/android/compose/ui/components/call/controls/ControlActionsKt$ControlActions$lambda$5$lambda$4$lambda$3$$inlined$items$default$4;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; HPLio/getstream/video/android/compose/ui/components/call/controls/actions/GenericActionsKt;->ToggleAction-X9YjGh4(Landroidx/compose/ui/Modifier;ZLkotlin/Pair;ZLandroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;ZLio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;III)V -PLio/getstream/video/android/compose/ui/components/call/controls/actions/GenericActionsKt$ToggleAction$3$1;->(Lkotlin/jvm/functions/Function0;)V -HPLio/getstream/video/android/compose/ui/components/call/controls/actions/GenericActionsKt$ToggleAction$4;->(Landroidx/compose/ui/Modifier;ZLkotlin/Pair;ZLandroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;ZLio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function0;III)V -HPLio/getstream/video/android/compose/ui/components/call/controls/actions/ToggleCameraActionKt;->ToggleCameraAction-m_EyDiA(Landroidx/compose/ui/Modifier;ZZLandroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;III)V -PLio/getstream/video/android/compose/ui/components/call/controls/actions/ToggleCameraActionKt$ToggleCameraAction$1$1;->(Lkotlin/jvm/functions/Function1;Z)V +PLio/getstream/video/android/compose/ui/components/call/controls/actions/GenericActionsKt$$ExternalSyntheticLambda0;->(Lkotlin/jvm/functions/Function0;)V +HPLio/getstream/video/android/compose/ui/components/call/controls/actions/GenericActionsKt$$ExternalSyntheticLambda1;->(Landroidx/compose/ui/Modifier;ZLkotlin/Pair;ZLandroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;ZLio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function0;III)V +PLio/getstream/video/android/compose/ui/components/call/controls/actions/ToggleCameraActionKt;->ToggleCameraAction-m_EyDiA(Landroidx/compose/ui/Modifier;ZZLandroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;III)V +PLio/getstream/video/android/compose/ui/components/call/controls/actions/ToggleCameraActionKt$$ExternalSyntheticLambda1;->(Lkotlin/jvm/functions/Function1;Z)V HPLio/getstream/video/android/compose/ui/components/call/controls/actions/ToggleMicrophoneActionKt;->ToggleMicrophoneAction-m_EyDiA(Landroidx/compose/ui/Modifier;ZZLandroidx/compose/ui/graphics/Shape;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Landroidx/compose/ui/graphics/Color;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lio/getstream/video/android/compose/ui/components/base/styling/StreamFixedSizeButtonStyle;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;III)V -PLio/getstream/video/android/compose/ui/components/call/controls/actions/ToggleMicrophoneActionKt$ToggleMicrophoneAction$1$1;->(Lkotlin/jvm/functions/Function1;Z)V +PLio/getstream/video/android/compose/ui/components/call/controls/actions/ToggleMicrophoneActionKt$$ExternalSyntheticLambda0;->(Lkotlin/jvm/functions/Function1;Z)V HPLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt;->CallLobby(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Lio/getstream/video/android/model/User;Landroidx/compose/ui/Alignment;ZZLio/getstream/video/android/core/ParticipantState$Video;Lio/getstream/video/android/compose/permission/VideoPermissionsState;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Landroidx/compose/runtime/Composer;III)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt;->DefaultPermissionHandler(Lio/getstream/video/android/compose/permission/VideoPermissionsState;Landroidx/compose/runtime/Composer;I)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt;->OnRenderedContent(Lio/getstream/video/android/core/Call;Lio/getstream/video/android/core/ParticipantState$Video;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt;->access$OnRenderedContent(Lio/getstream/video/android/core/Call;Lio/getstream/video/android/core/ParticipantState$Video;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V -PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$1;->()V -PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$1;->()V +PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$$ExternalSyntheticLambda2;->()V +PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$$ExternalSyntheticLambda4;->(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Lio/getstream/video/android/model/User;Landroidx/compose/ui/Alignment;ZZLio/getstream/video/android/core/ParticipantState$Video;Lio/getstream/video/android/compose/permission/VideoPermissionsState;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;III)V +PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$$ExternalSyntheticLambda6;->(Lio/getstream/video/android/core/Call;Lio/getstream/video/android/core/ParticipantState$Video;Lkotlin/jvm/functions/Function1;II)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$2;->(Lio/getstream/video/android/core/Call;Lkotlin/jvm/functions/Function1;)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$2;->invoke(Lio/getstream/video/android/core/ParticipantState$Video;Landroidx/compose/runtime/Composer;I)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$3;->(Lio/getstream/video/android/model/User;)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$5;->(Lkotlin/jvm/functions/Function1;ZZ)V -HPLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$5;->invoke(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/Composer;I)V +PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$5;->invoke(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/Composer;I)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$5;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$6$1$1;->(Z)V HPLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$6$1$1;->invoke(Landroidx/compose/foundation/layout/RowScope;Landroidx/compose/runtime/Composer;I)V -HPLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$6$1$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -HPLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$7;->(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Lio/getstream/video/android/model/User;Landroidx/compose/ui/Alignment;ZZLio/getstream/video/android/core/ParticipantState$Video;Lio/getstream/video/android/compose/permission/VideoPermissionsState;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function2;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;III)V +PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$CallLobby$6$1$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$DefaultPermissionHandler$1$1;->(Lio/getstream/video/android/compose/permission/VideoPermissionsState;Lkotlin/coroutines/Continuation;)V PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$DefaultPermissionHandler$1$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation; PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$DefaultPermissionHandler$1$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/call/lobby/CallLobbyKt$OnRenderedContent$2;->(Lio/getstream/video/android/core/Call;Lio/getstream/video/android/core/ParticipantState$Video;Lkotlin/jvm/functions/Function1;II)V -HPLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt;->buildDefaultLobbyControlActions(Lio/getstream/video/android/core/Call;Lkotlin/jvm/functions/Function1;ZZLandroidx/compose/runtime/Composer;II)Ljava/util/List; +PLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt;->buildDefaultLobbyControlActions(Lio/getstream/video/android/core/Call;Lkotlin/jvm/functions/Function1;ZZLandroidx/compose/runtime/Composer;II)Ljava/util/List; PLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt$buildDefaultLobbyControlActions$1;->(ZLkotlin/jvm/functions/Function1;)V PLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt$buildDefaultLobbyControlActions$1;->invoke(Landroidx/compose/runtime/Composer;I)V PLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt$buildDefaultLobbyControlActions$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; PLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt$buildDefaultLobbyControlActions$2;->(ZLkotlin/jvm/functions/Function1;)V PLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt$buildDefaultLobbyControlActions$2;->invoke(Landroidx/compose/runtime/Composer;I)V PLio/getstream/video/android/compose/ui/components/call/lobby/LobbyControlsActionsKt$buildDefaultLobbyControlActions$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->ParticipantLabel$lambda$10(Landroidx/compose/runtime/MutableState;)F -PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->ParticipantLabel$lambda$11(Landroidx/compose/runtime/MutableState;F)V +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->$r8$lambda$Uj-HVuSTH6ws6kTZBsPm1xwKPGE(Landroidx/compose/ui/unit/Density;Landroidx/compose/runtime/MutableState;Landroidx/compose/ui/layout/LayoutCoordinates;)Lkotlin/Unit; +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->$r8$lambda$voWK4h0-UIZK74SyZiBH-dCtbmY(Landroidx/compose/foundation/layout/BoxScope;Ljava/lang/String;ZLandroidx/compose/ui/Alignment;ZZFLkotlin/jvm/functions/Function3;IILandroidx/compose/runtime/Composer;I)Lkotlin/Unit; +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->ParticipantLabel$lambda$23(Landroidx/compose/runtime/MutableState;)F +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->ParticipantLabel$lambda$24(Landroidx/compose/runtime/MutableState;F)V +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->ParticipantLabel$lambda$27$lambda$26(Landroidx/compose/ui/unit/Density;Landroidx/compose/runtime/MutableState;Landroidx/compose/ui/layout/LayoutCoordinates;)Lkotlin/Unit; +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->ParticipantLabel$lambda$30(Landroidx/compose/foundation/layout/BoxScope;Ljava/lang/String;ZLandroidx/compose/ui/Alignment;ZZFLkotlin/jvm/functions/Function3;IILandroidx/compose/runtime/Composer;I)Lkotlin/Unit; HPLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->ParticipantLabel(Landroidx/compose/foundation/layout/BoxScope;Ljava/lang/String;ZLandroidx/compose/ui/Alignment;ZZFLkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V -PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt;->access$ParticipantLabel$lambda$11(Landroidx/compose/runtime/MutableState;F)V -PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$ParticipantLabel$4$1;->(Landroidx/compose/ui/unit/Density;Landroidx/compose/runtime/MutableState;)V -PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$ParticipantLabel$4$1;->invoke(Landroidx/compose/ui/layout/LayoutCoordinates;)V -PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$ParticipantLabel$4$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -HPLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$ParticipantLabel$6;->(Landroidx/compose/foundation/layout/BoxScope;Ljava/lang/String;ZLandroidx/compose/ui/Alignment;ZZFLkotlin/jvm/functions/Function3;II)V -HPLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$ParticipantLabel$6;->invoke(Landroidx/compose/runtime/Composer;I)V -PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$ParticipantLabel$6;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$$ExternalSyntheticLambda7;->(Landroidx/compose/ui/unit/Density;Landroidx/compose/runtime/MutableState;)V +PLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$$ExternalSyntheticLambda7;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +HPLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$$ExternalSyntheticLambda8;->(Landroidx/compose/foundation/layout/BoxScope;Ljava/lang/String;ZLandroidx/compose/ui/Alignment;ZZFLkotlin/jvm/functions/Function3;II)V +HPLio/getstream/video/android/compose/ui/components/call/renderer/ParticipantVideoKt$$ExternalSyntheticLambda8;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; HPLio/getstream/video/android/compose/ui/components/indicator/MicrophoneIndicatorKt;->MicrophoneIndicator(Landroidx/compose/ui/Modifier;ZLandroidx/compose/runtime/Composer;II)V -PLio/getstream/video/android/compose/ui/components/indicator/MicrophoneIndicatorKt$MicrophoneIndicator$2;->(Landroidx/compose/ui/Modifier;ZII)V +PLio/getstream/video/android/compose/ui/components/indicator/MicrophoneIndicatorKt$$ExternalSyntheticLambda0;->(Landroidx/compose/ui/Modifier;ZII)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->$r8$lambda$MM8W6BsptOPpLz5VYmgQDxhRwTA(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lkotlin/jvm/functions/Function1;Lio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;Landroid/content/Context;)Lio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->$r8$lambda$T1Z4W1oHcTlakURqMBZjt4eEigI(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->$r8$lambda$de5WtAxpcIjAkDQWNH6La5NW7Tc(Lio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;Lio/getstream/video/android/core/model/MediaTrack;Lio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;)Lkotlin/Unit; HPLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->DefaultMediaTrackFallbackContent(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/Composer;I)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer$lambda$1(Landroidx/compose/runtime/MutableState;)Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer; -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer$lambda$2(Landroidx/compose/runtime/MutableState;Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer;)V -HPLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer(Lio/getstream/video/android/core/Call;Lio/getstream/video/android/core/ParticipantState$Media;Landroidx/compose/ui/Modifier;Lio/getstream/video/android/compose/ui/components/video/VideoScalingType;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->access$DefaultMediaTrackFallbackContent(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/Composer;I)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->access$VideoRenderer$lambda$1(Landroidx/compose/runtime/MutableState;)Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer; -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->access$VideoRenderer$lambda$2(Landroidx/compose/runtime/MutableState;Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer;)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer$lambda$15$lambda$14$lambda$11$lambda$10(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lkotlin/jvm/functions/Function1;Lio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;Landroid/content/Context;)Lio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer$lambda$15$lambda$14$lambda$13$lambda$12(Lio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;Lio/getstream/video/android/core/model/MediaTrack;Lio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;)Lkotlin/Unit; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer$lambda$15$lambda$4(Landroidx/compose/runtime/MutableState;)Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer$lambda$15$lambda$5(Landroidx/compose/runtime/MutableState;Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer;)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer$lambda$15$lambda$8$lambda$7(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult; +HPLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->VideoRenderer(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;Lio/getstream/video/android/core/ParticipantState$Media;Lio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->access$VideoRenderer$lambda$15$lambda$4(Landroidx/compose/runtime/MutableState;)Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer; PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->access$cleanTrack(Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer;Lio/getstream/video/android/core/model/MediaTrack;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->access$setupVideo(Lio/getstream/video/android/core/model/MediaTrack;Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer;)V PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->cleanTrack(Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer;Lio/getstream/video/android/core/model/MediaTrack;)V PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt;->setupVideo(Lio/getstream/video/android/core/model/MediaTrack;Lio/getstream/webrtc/android/ui/VideoTextureViewRenderer;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$DefaultMediaTrackFallbackContent$2;->(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;I)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$1;->(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$1;->invoke(Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/Composer;I)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$4$1;->(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$4$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult; -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$4$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$4$1$invoke$$inlined$onDispose$1;->(Lio/getstream/video/android/core/model/MediaTrack;Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Landroidx/compose/runtime/MutableState;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$4$1$invoke$$inlined$onDispose$1;->dispose()V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$5$1$1;->(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lkotlin/jvm/functions/Function1;Lio/getstream/video/android/compose/ui/components/video/VideoScalingType;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$5$1$1;->invoke(Landroid/content/Context;)Lio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer; -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$5$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$5$2$1;->(Lio/getstream/video/android/core/model/MediaTrack;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$5$2$1;->invoke(Lio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;)V -PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$5$2$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$$ExternalSyntheticLambda1;->(Landroidx/compose/ui/Modifier;Lio/getstream/video/android/core/Call;I)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$$ExternalSyntheticLambda6;->(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$$ExternalSyntheticLambda6;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$$ExternalSyntheticLambda7;->(Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Lkotlin/jvm/functions/Function1;Lio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;Lio/getstream/video/android/core/model/MediaTrack;Landroidx/compose/runtime/MutableState;)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$$ExternalSyntheticLambda7;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$$ExternalSyntheticLambda8;->(Lio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;Lio/getstream/video/android/core/model/MediaTrack;)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$$ExternalSyntheticLambda8;->invoke(Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$lambda$15$lambda$8$lambda$7$$inlined$onDispose$1;->(Lio/getstream/video/android/core/model/MediaTrack;Lio/getstream/video/android/core/Call;Ljava/lang/String;Lstream/video/sfu/models/TrackType;Landroidx/compose/runtime/MutableState;)V +PLio/getstream/video/android/compose/ui/components/video/VideoRendererKt$VideoRenderer$lambda$15$lambda$8$lambda$7$$inlined$onDispose$1;->dispose()V PLio/getstream/video/android/compose/ui/components/video/VideoScalingType;->$values()[Lio/getstream/video/android/compose/ui/components/video/VideoScalingType; PLio/getstream/video/android/compose/ui/components/video/VideoScalingType;->()V PLio/getstream/video/android/compose/ui/components/video/VideoScalingType;->(Ljava/lang/String;I)V @@ -502,6 +491,26 @@ PLio/getstream/video/android/compose/ui/components/video/VideoScalingType$Compan PLio/getstream/video/android/compose/ui/components/video/VideoScalingType$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V PLio/getstream/video/android/compose/ui/components/video/VideoScalingType$Companion;->toCommonScalingType$stream_video_android_ui_compose_release(Lio/getstream/video/android/compose/ui/components/video/VideoScalingType;)Lorg/webrtc/RendererCommon$ScalingType; PLio/getstream/video/android/compose/ui/components/video/VideoScalingType$Companion$WhenMappings;->()V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt;->()V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt;->()V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt;->getLambda-2$stream_video_android_ui_compose_release()Lkotlin/jvm/functions/Function3; +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt$lambda-1$1;->()V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt$lambda-1$1;->()V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt$lambda-2$1;->()V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt$lambda-2$1;->()V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt$lambda-2$1;->invoke(Lio/getstream/video/android/core/Call;Landroidx/compose/runtime/Composer;I)V +PLio/getstream/video/android/compose/ui/components/video/config/ComposableSingletons$VideoRendererConfigKt$lambda-2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;->()V +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;->(ZLio/getstream/video/android/compose/ui/components/video/VideoScalingType;Lkotlin/jvm/functions/Function3;)V +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;->getFallbackContent()Lkotlin/jvm/functions/Function3; +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;->getMirrorStream()Z +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfig;->getScalingType()Lio/getstream/video/android/compose/ui/components/video/VideoScalingType; +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfigCreationScope;->()V +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfigCreationScope;->(ZLio/getstream/video/android/compose/ui/components/video/VideoScalingType;Lkotlin/jvm/functions/Function3;)V +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfigCreationScope;->(ZLio/getstream/video/android/compose/ui/components/video/VideoScalingType;Lkotlin/jvm/functions/Function3;ILkotlin/jvm/internal/DefaultConstructorMarker;)V +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfigCreationScope;->getFallbackContent()Lkotlin/jvm/functions/Function3; +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfigCreationScope;->getMirrorStream()Z +PLio/getstream/video/android/compose/ui/components/video/config/VideoRendererConfigCreationScope;->getVideoScalingType()Lio/getstream/video/android/compose/ui/components/video/VideoScalingType; Lio/getstream/video/android/compose/utils/ImageUtilsKt; HPLio/getstream/video/android/compose/utils/ImageUtilsKt;->initialsColors(Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Lkotlin/Pair; Lio/getstream/video/android/compose/utils/ResourcesKt; diff --git a/stream-video-android-ui-core/src/main/baseline-prof.txt b/stream-video-android-ui-core/src/main/baseline-prof.txt index 8e3c1a89cd..479bdd26b1 100644 --- a/stream-video-android-ui-core/src/main/baseline-prof.txt +++ b/stream-video-android-ui-core/src/main/baseline-prof.txt @@ -5,4 +5,6 @@ Lio/getstream/video/android/ui/common/R$drawable; PLio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;->(Landroid/content/Context;)V PLio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;->getLogger()Lio/getstream/log/TaggedLogger; PLio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;->onDetachedFromWindow()V +PLio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;->onLayout(ZIIII)V +PLio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;->onSurfaceTextureAvailable(Landroid/graphics/SurfaceTexture;II)V PLio/getstream/video/android/ui/common/renderer/StreamVideoTextureViewRenderer;->onSurfaceTextureDestroyed(Landroid/graphics/SurfaceTexture;)Z \ No newline at end of file