From cdb5c8d2de843bb1fb10d7bae4395b76c5eee7c1 Mon Sep 17 00:00:00 2001 From: Tangem Date: Thu, 18 Jun 2026 14:03:14 +0300 Subject: [PATCH 1/3] Updated on 2026-08-14 --- .../src/main/assets/configs/feature_toggles_config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config-toggles/src/main/assets/configs/feature_toggles_config.json b/core/config-toggles/src/main/assets/configs/feature_toggles_config.json index 45a73be769..f2b79c6a84 100644 --- a/core/config-toggles/src/main/assets/configs/feature_toggles_config.json +++ b/core/config-toggles/src/main/assets/configs/feature_toggles_config.json @@ -101,7 +101,7 @@ }, { "name": "AND_15154_YIELD_PROMO_ENABLED", - "version": "undefined" + "version": "5.39.2" }, { "name": "TWI_1512_HIDE_STORIES_FOR_REFERRAL_ENABLED", From 8aa61944ba49108b3b0967e44c8c1399dcf9fe79 Mon Sep 17 00:00:00 2001 From: Tangem Date: Thu, 18 Jun 2026 13:05:42 +0200 Subject: [PATCH 2/3] Updated on 2026-08-14 --- .../rating/ui/RatingFeedbackBottomSheet.kt | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/features/rating/impl/src/main/java/com/tangem/feature/rating/ui/RatingFeedbackBottomSheet.kt b/features/rating/impl/src/main/java/com/tangem/feature/rating/ui/RatingFeedbackBottomSheet.kt index 99b5f40fd0..c9ecad7bb7 100644 --- a/features/rating/impl/src/main/java/com/tangem/feature/rating/ui/RatingFeedbackBottomSheet.kt +++ b/features/rating/impl/src/main/java/com/tangem/feature/rating/ui/RatingFeedbackBottomSheet.kt @@ -9,16 +9,21 @@ import androidx.compose.foundation.text.BasicTextField import androidx.compose.foundation.text.KeyboardOptions import androidx.compose.material3.* import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.remember import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip +import androidx.compose.ui.focus.FocusRequester +import androidx.compose.ui.focus.focusRequester import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.platform.LocalSoftwareKeyboardController import androidx.compose.ui.res.painterResource import androidx.compose.ui.text.input.ImeAction import androidx.compose.ui.text.input.VisualTransformation import androidx.compose.ui.text.style.TextAlign +import kotlinx.coroutines.delay import com.tangem.core.ui.R import com.tangem.core.ui.components.PrimaryButton import com.tangem.core.ui.components.SpacerH12 @@ -107,6 +112,15 @@ internal fun RatingFeedbackBottomSheet(config: TangemBottomSheetConfig) { @Composable private fun FeedbackTextField(value: String, onValueChange: (String) -> Unit) { val interactionSource = remember { MutableInteractionSource() } + val focusRequester = remember { FocusRequester() } + val keyboardController = LocalSoftwareKeyboardController.current + + LaunchedEffect(Unit) { + delay(FOCUS_REQUEST_DELAY_MS) + focusRequester.requestFocus() + keyboardController?.show() + } + val fieldShape = RoundedCornerShape(TangemTheme.dimens.radius14) val colors = TextFieldDefaults.colors().copy( focusedContainerColor = TangemTheme.colors.field.focused, @@ -124,7 +138,8 @@ private fun FeedbackTextField(value: String, onValueChange: (String) -> Unit) { onValueChange = onValueChange, modifier = Modifier .fillMaxWidth() - .heightIn(min = TangemTheme.dimens.size48), + .heightIn(min = TangemTheme.dimens.size48) + .focusRequester(focusRequester), textStyle = TangemTheme.typography.body1.copy(color = TangemTheme.colors.text.primary1), cursorBrush = SolidColor(TangemTheme.colors.icon.primary1), keyboardOptions = KeyboardOptions(imeAction = ImeAction.Done), @@ -156,4 +171,6 @@ private fun FeedbackTextField(value: String, onValueChange: (String) -> Unit) { ) }, ) -} \ No newline at end of file +} + +private const val FOCUS_REQUEST_DELAY_MS = 300L \ No newline at end of file From 88be31fef36a32b0e837d7d2e5f587d6393dd382 Mon Sep 17 00:00:00 2001 From: Tangem Date: Thu, 18 Jun 2026 11:06:05 +0000 Subject: [PATCH 3/3] Updated on 2026-08-14 --- gradle/tangem_dependencies.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/tangem_dependencies.toml b/gradle/tangem_dependencies.toml index ef9bcda031..074e02bb80 100644 --- a/gradle/tangem_dependencies.toml +++ b/gradle/tangem_dependencies.toml @@ -5,9 +5,9 @@ # https://github.com/tangem/tangem-sdk-android/ # https://github.com/tangem/vico -tangemBlockchainSdk = "releases-5.39-1575" +tangemBlockchainSdk = "develop-1567" #tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds -tangemCardSdk = "releases-5.39-623" +tangemCardSdk = "develop-624" #tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^ tangemVico = "tangem-master-21" #tangemVico = "0.0.1" # Keep it! - used for local builds ^