惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
有赞技术团队
有赞技术团队
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
Vercel News
Vercel News
F
Fortinet All Blogs
Last Week in AI
Last Week in AI
M
MIT News - Artificial intelligence
小众软件
小众软件
月光博客
月光博客
A
About on SuperTechFans

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(android): smooth gateway pairing recovery · openclaw/...
obviyus · 2026-05-24 · via Recent Commits to openclaw:main

@@ -23,6 +23,7 @@ import android.content.pm.PackageManager

2323

import android.hardware.Sensor

2424

import android.hardware.SensorManager

2525

import android.os.Build

26+

import android.os.SystemClock

2627

import android.provider.Settings

2728

import android.widget.Toast

2829

import androidx.activity.compose.rememberLauncherForActivityResult

@@ -79,6 +80,7 @@ import androidx.compose.runtime.DisposableEffect

7980

import androidx.compose.runtime.LaunchedEffect

8081

import androidx.compose.runtime.collectAsState

8182

import androidx.compose.runtime.getValue

83+

import androidx.compose.runtime.mutableLongStateOf

8284

import androidx.compose.runtime.mutableStateOf

8385

import androidx.compose.runtime.remember

8486

import androidx.compose.runtime.saveable.rememberSaveable

@@ -100,6 +102,7 @@ import androidx.lifecycle.compose.LocalLifecycleOwner

100102

import com.google.mlkit.vision.barcode.common.Barcode

101103

import com.google.mlkit.vision.codescanner.GmsBarcodeScannerOptions

102104

import com.google.mlkit.vision.codescanner.GmsBarcodeScanning

105+

import kotlinx.coroutines.delay

103106104107

private enum class OnboardingStep {

105108

Welcome,

@@ -108,6 +111,8 @@ private enum class OnboardingStep {

108111

Permissions,

109112

}

110113114+

private const val GATEWAY_CONNECT_SETTLING_MS = 2_500L

115+111116

@Composable

112117

fun OnboardingFlow(

113118

viewModel: MainViewModel,

@@ -134,6 +139,8 @@ fun OnboardingFlow(

134139

var password by rememberSaveable { mutableStateOf("") }

135140

var setupError by rememberSaveable { mutableStateOf<String?>(null) }

136141

var attemptedConnect by rememberSaveable { mutableStateOf(false) }

142+

var connectAttemptStartedAtMs by rememberSaveable { mutableLongStateOf(0L) }

143+

var recoveryNowMs by remember { mutableLongStateOf(SystemClock.elapsedRealtime()) }

137144138145

val qrScannerOptions =

139146

remember {

@@ -152,6 +159,13 @@ fun OnboardingFlow(

152159

}

153160

}

154161162+

LaunchedEffect(step, connectAttemptStartedAtMs) {

163+

if (step != OnboardingStep.Recovery || connectAttemptStartedAtMs <= 0L) return@LaunchedEffect

164+

recoveryNowMs = SystemClock.elapsedRealtime()

165+

delay(GATEWAY_CONNECT_SETTLING_MS)

166+

recoveryNowMs = SystemClock.elapsedRealtime()

167+

}

168+155169

pendingTrust?.let { prompt ->

156170

AlertDialog(

157171

onDismissRequest = viewModel::declineGatewayTrustPrompt,

@@ -250,6 +264,7 @@ fun OnboardingFlow(

250264251265

setupError = null

252266

attemptedConnect = true

267+

connectAttemptStartedAtMs = SystemClock.elapsedRealtime()

253268

viewModel.resetGatewaySetupAuth()

254269

viewModel.setManualEnabled(true)

255270

viewModel.setManualHost(config.host)

@@ -275,10 +290,12 @@ fun OnboardingFlow(

275290

remoteAddress = remoteAddress,

276291

ready = ready,

277292

attemptedConnect = attemptedConnect,

293+

connectSettling = recoveryNowMs - connectAttemptStartedAtMs < GATEWAY_CONNECT_SETTLING_MS,

278294

onAutoRetry = viewModel::refreshGatewayConnection,

279295

onBack = { step = OnboardingStep.Gateway },

280296

onRetry = {

281297

attemptedConnect = true

298+

connectAttemptStartedAtMs = SystemClock.elapsedRealtime()

282299

val config =

283300

resolveGatewayConfig(

284301

setupCode = setupCode,

@@ -496,31 +513,44 @@ private fun GatewayRecoveryScreen(

496513

remoteAddress: String?,

497514

ready: Boolean,

498515

attemptedConnect: Boolean,

516+

connectSettling: Boolean,

499517

onAutoRetry: () -> Unit,

500518

onBack: () -> Unit,

501519

onRetry: () -> Unit,

502520

onEdit: () -> Unit,

503521

onContinue: () -> Unit,

504522

modifier: Modifier = Modifier,

505523

) {

506-

val pairingRequired = gatewayStatusLooksLikePairing(statusText)

524+

val recoveryState = gatewayRecoveryUiState(ready = ready, statusText = statusText, connectSettling = connectSettling)

507525

val context = LocalContext.current

508-

PairingAutoRetryEffect(enabled = pairingRequired && attemptedConnect && !ready, onRetry = onAutoRetry)

526+

PairingAutoRetryEffect(enabled = recoveryState.canAutoRetry && attemptedConnect, onRetry = onAutoRetry)

509527510528

ClawScaffold(modifier = modifier, contentPadding = PaddingValues(horizontal = 18.dp, vertical = 16.dp)) {

511529

Column(modifier = Modifier.fillMaxSize(), verticalArrangement = Arrangement.spacedBy(18.dp)) {

512530

OnboardingHeader(title = "Gateway Recovery", onBack = onBack)

513531

Spacer(modifier = Modifier.height(12.dp))

514532

Column(modifier = Modifier.fillMaxWidth(), horizontalAlignment = Alignment.CenterHorizontally, verticalArrangement = Arrangement.spacedBy(12.dp)) {

515533

Icon(

516-

imageVector = if (ready) Icons.Default.CheckCircle else Icons.Default.ErrorOutline,

534+

imageVector =

535+

when (recoveryState) {

536+

GatewayRecoveryUiState.Connected -> Icons.Default.CheckCircle

537+

GatewayRecoveryUiState.Pairing -> Icons.Default.WifiTethering

538+

GatewayRecoveryUiState.Finishing -> Icons.Default.WifiTethering

539+

GatewayRecoveryUiState.Failed -> Icons.Default.ErrorOutline

540+

},

517541

contentDescription = null,

518542

modifier = Modifier.size(64.dp),

519-

tint = if (ready) ClawTheme.colors.success else ClawTheme.colors.warning,

543+

tint =

544+

when (recoveryState) {

545+

GatewayRecoveryUiState.Connected -> ClawTheme.colors.success

546+

GatewayRecoveryUiState.Pairing -> ClawTheme.colors.text

547+

GatewayRecoveryUiState.Finishing -> ClawTheme.colors.text

548+

GatewayRecoveryUiState.Failed -> ClawTheme.colors.warning

549+

},

520550

)

521-

Text(text = if (ready) "Connected" else "Connection failed", style = ClawTheme.type.display, color = ClawTheme.colors.text)

551+

Text(text = recoveryState.title, style = ClawTheme.type.display, color = ClawTheme.colors.text)

522552

Text(

523-

text = if (ready) "Your Gateway is ready." else "We could not reach your Gateway.\nLet's fix this.",

553+

text = recoveryState.message,

524554

style = ClawTheme.type.body,

525555

color = ClawTheme.colors.textMuted,

526556

textAlign = TextAlign.Center,

@@ -534,18 +564,30 @@ private fun GatewayRecoveryScreen(

534564

Text(text = recoveryGatewayDetail(ready = ready, remoteAddress = remoteAddress, statusText = statusText), style = ClawTheme.type.body, color = ClawTheme.colors.textMuted)

535565

ClawStatusPill(

536566

text =

537-

when {

538-

ready -> "Healthy"

539-

pairingRequired -> "Pairing"

540-

else -> "Needs attention"

567+

when (recoveryState) {

568+

GatewayRecoveryUiState.Connected -> "Healthy"

569+

GatewayRecoveryUiState.Pairing -> "Pairing"

570+

GatewayRecoveryUiState.Finishing -> "Connecting"

571+

GatewayRecoveryUiState.Failed -> "Needs attention"

572+

},

573+

status =

574+

when (recoveryState) {

575+

GatewayRecoveryUiState.Connected -> ClawStatus.Success

576+

GatewayRecoveryUiState.Pairing -> ClawStatus.Neutral

577+

GatewayRecoveryUiState.Finishing -> ClawStatus.Neutral

578+

GatewayRecoveryUiState.Failed -> ClawStatus.Warning

541579

},

542-

status = if (ready) ClawStatus.Success else ClawStatus.Warning,

543580

)

544581

}

545582

}

546583547584

Column(verticalArrangement = Arrangement.spacedBy(10.dp)) {

548-

ClawPrimaryButton(text = if (ready) "Continue" else "Retry connection", icon = if (ready) Icons.Default.CheckCircle else Icons.Default.Refresh, onClick = if (ready) onContinue else onRetry, modifier = Modifier.fillMaxWidth())

585+

ClawPrimaryButton(

586+

text = if (ready) "Continue" else "Retry connection",

587+

icon = if (ready) Icons.Default.CheckCircle else Icons.Default.Refresh,

588+

onClick = if (ready) onContinue else onRetry,

589+

modifier = Modifier.fillMaxWidth(),

590+

)

549591

OutlinedAction(title = "Edit connection", icon = Icons.Default.Edit, onClick = onEdit)

550592

OutlinedAction(title = "Copy diagnostic", icon = Icons.Default.ContentCopy, onClick = { copyGatewayDiagnostic(context, statusText, serverName, remoteAddress, ready) })

551593

}

@@ -824,6 +866,51 @@ private fun PermissionContinueButton(onClick: () -> Unit) {

824866

}

825867

}

826868869+

internal enum class GatewayRecoveryUiState(

870+

val title: String,

871+

val message: String,

872+

val canAutoRetry: Boolean,

873+

) {

874+

Connected(

875+

title = "Connected",

876+

message = "Your Gateway is ready.",

877+

canAutoRetry = false,

878+

),

879+

Pairing(

880+

title = "Pairing Gateway",

881+

message = "Approval is in progress.\nOpenClaw will reconnect automatically.",

882+

canAutoRetry = true,

883+

),

884+

Finishing(

885+

title = "Finishing Setup",

886+

message = "Gateway approved this phone.\nOpenClaw is bringing the node online.",

887+

canAutoRetry = true,

888+

),

889+

Failed(

890+

title = "Connection issue",

891+

message = "We could not reach your Gateway.\nLet's fix this.",

892+

canAutoRetry = false,

893+

),

894+

}

895+896+

internal fun gatewayRecoveryUiState(

897+

ready: Boolean,

898+

statusText: String,

899+

connectSettling: Boolean,

900+

): GatewayRecoveryUiState =

901+

when {

902+

ready -> GatewayRecoveryUiState.Connected

903+

connectSettling -> GatewayRecoveryUiState.Finishing

904+

gatewayStatusLooksLikePairing(statusText) -> GatewayRecoveryUiState.Pairing

905+

gatewayStatusLooksLikePartialConnect(statusText) -> GatewayRecoveryUiState.Finishing

906+

else -> GatewayRecoveryUiState.Failed

907+

}

908+909+

internal fun gatewayStatusLooksLikePartialConnect(statusText: String): Boolean {

910+

val lower = gatewayStatusForDisplay(statusText).lowercase()

911+

return lower.contains("operator offline") || lower.contains("node offline")

912+

}

913+827914

private data class GatewayConfig(

828915

val host: String,

829916

val port: Int,