From 8c2e3c861db5396da7a9c2ebddde154c025e3331 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 06:32:08 +0000 Subject: [PATCH 1/2] Update showkase to v1.0.3 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 43f369288d..b8e680c23f 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -41,7 +41,7 @@ coil = "2.6.0" datetime = "0.6.0" dependencyAnalysis = "1.32.0" serialization_json = "1.6.3" -showkase = "1.0.2" +showkase = "1.0.3" appyx = "1.4.0" sqldelight = "2.0.2" wysiwyg = "2.37.3" From 7e4f5830d958220adf81db157238ec037fba37ac Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 4 Jun 2024 09:05:23 +0200 Subject: [PATCH 2/2] Fix compilation issue, Showkase 1.0.3 uses activity 1.9.0. --- .../element/android/features/call/ui/ElementCallActivity.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/features/call/src/main/kotlin/io/element/android/features/call/ui/ElementCallActivity.kt b/features/call/src/main/kotlin/io/element/android/features/call/ui/ElementCallActivity.kt index 8eea4c814f..ded5b11c8f 100644 --- a/features/call/src/main/kotlin/io/element/android/features/call/ui/ElementCallActivity.kt +++ b/features/call/src/main/kotlin/io/element/android/features/call/ui/ElementCallActivity.kt @@ -121,13 +121,11 @@ class ElementCallActivity : NodeComponentActivity(), CallScreenNavigator { override fun onConfigurationChanged(newConfig: Configuration) { super.onConfigurationChanged(newConfig) - updateUiMode(newConfig) } - override fun onNewIntent(intent: Intent?) { + override fun onNewIntent(intent: Intent) { super.onNewIntent(intent) - setCallType(intent) }