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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
博客园_首页
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
V
V2EX
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队

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): request v2 capability permissions · opencla...
obviyus · 2026-05-20 · via Recent Commits to openclaw:main

@@ -8,6 +8,7 @@ import ai.openclaw.app.LocationMode

88

import ai.openclaw.app.MainViewModel

99

import ai.openclaw.app.NotificationPackageFilterMode

1010

import ai.openclaw.app.chat.ChatPendingToolCall

11+

import ai.openclaw.app.node.DeviceNotificationListenerService

1112

import ai.openclaw.app.ui.design.ClawDetailRow

1213

import ai.openclaw.app.ui.design.ClawIconBadge

1314

import ai.openclaw.app.ui.design.ClawListPanel

@@ -21,8 +22,16 @@ import ai.openclaw.app.ui.design.ClawStatusPill

2122

import ai.openclaw.app.ui.design.ClawTextBadge

2223

import ai.openclaw.app.ui.design.ClawTextField

2324

import ai.openclaw.app.ui.design.ClawTheme

25+

import android.Manifest

26+

import android.content.Context

27+

import android.content.Intent

28+

import android.content.pm.PackageManager

2429

import android.media.AudioManager

2530

import android.media.ToneGenerator

31+

import android.os.Build

32+

import android.provider.Settings

33+

import androidx.activity.compose.rememberLauncherForActivityResult

34+

import androidx.activity.result.contract.ActivityResultContracts

2635

import androidx.compose.foundation.BorderStroke

2736

import androidx.compose.foundation.background

2837

import androidx.compose.foundation.layout.Arrangement

@@ -73,8 +82,10 @@ import androidx.compose.ui.Alignment

7382

import androidx.compose.ui.Modifier

7483

import androidx.compose.ui.graphics.Color

7584

import androidx.compose.ui.graphics.vector.ImageVector

85+

import androidx.compose.ui.platform.LocalContext

7686

import androidx.compose.ui.text.style.TextOverflow

7787

import androidx.compose.ui.unit.dp

88+

import androidx.core.content.ContextCompat

78897990

internal enum class V2SettingsRoute {

8091

Home,

@@ -544,6 +555,7 @@ private fun V2NotificationSettingsScreen(

544555

viewModel: MainViewModel,

545556

onBack: () -> Unit,

546557

) {

558+

val context = LocalContext.current

547559

val enabled by viewModel.notificationForwardingEnabled.collectAsState()

548560

val mode by viewModel.notificationForwardingMode.collectAsState()

549561

val packages by viewModel.notificationForwardingPackages.collectAsState()

@@ -552,12 +564,30 @@ private fun V2NotificationSettingsScreen(

552564

val quietEnd by viewModel.notificationForwardingQuietEnd.collectAsState()

553565

val maxEventsPerMinute by viewModel.notificationForwardingMaxEventsPerMinute.collectAsState()

554566

val modeLabel = if (mode == NotificationPackageFilterMode.Blocklist) "Blocklist" else "Allowlist"

567+

var listenerEnabled by remember { mutableStateOf(DeviceNotificationListenerService.isAccessEnabled(context)) }

568+

val notificationPermissionLauncher =

569+

rememberLauncherForActivityResult(ActivityResultContracts.RequestPermission()) { granted ->

570+

viewModel.setNotificationForwardingEnabled(granted)

571+

}

572+573+

fun setForwarding(checked: Boolean) {

574+

if (!checked) {

575+

viewModel.setNotificationForwardingEnabled(false)

576+

return

577+

}

578+

if (Build.VERSION.SDK_INT >= 33 && !hasV2Permission(context, Manifest.permission.POST_NOTIFICATIONS)) {

579+

notificationPermissionLauncher.launch(Manifest.permission.POST_NOTIFICATIONS)

580+

} else {

581+

viewModel.setNotificationForwardingEnabled(true)

582+

}

583+

listenerEnabled = DeviceNotificationListenerService.isAccessEnabled(context)

584+

}

555585556586

V2SettingsDetailFrame(title = "Notifications", subtitle = "Choose what reaches OpenClaw.", icon = Icons.Default.Notifications, onBack = onBack) {

557587

V2SettingsTogglePanel(

558588

rows =

559589

listOf(

560-

V2SettingsToggleRow("Forward Notifications", if (enabled) "OpenClaw can receive selected alerts." else "Alerts stay on this phone.", Icons.Default.Notifications, enabled, viewModel::setNotificationForwardingEnabled),

590+

V2SettingsToggleRow("Forward Notifications", if (enabled) "OpenClaw can receive selected alerts." else "Alerts stay on this phone.", Icons.Default.Notifications, enabled, ::setForwarding),

561591

V2SettingsToggleRow("Quiet Hours", "$quietStart to $quietEnd", Icons.Default.Bolt, quietEnabled) { checked ->

562592

viewModel.setNotificationForwardingQuietHours(enabled = checked, start = quietStart, end = quietEnd)

563593

},

@@ -569,8 +599,19 @@ private fun V2NotificationSettingsScreen(

569599

V2SettingsMetric("Policy", modeLabel),

570600

V2SettingsMetric("Selected Apps", packages.size.toString()),

571601

V2SettingsMetric("Rate Limit", "$maxEventsPerMinute/min"),

602+

V2SettingsMetric("Access", if (listenerEnabled) "Granted" else "Setup"),

572603

),

573604

)

605+

Row(modifier = Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.spacedBy(8.dp)) {

606+

ClawSecondaryButton(

607+

text = if (listenerEnabled) "Check Access" else "Open System Access",

608+

onClick = {

609+

openV2NotificationListenerSettings(context)

610+

listenerEnabled = DeviceNotificationListenerService.isAccessEnabled(context)

611+

},

612+

modifier = Modifier.weight(1f),

613+

)

614+

}

574615

ClawPanel {

575616

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

576617

Text(text = "Forwarding Mode", style = ClawTheme.type.section, color = ClawTheme.colors.text)

@@ -591,18 +632,66 @@ private fun V2PhoneCapabilitiesScreen(

591632

viewModel: MainViewModel,

592633

onBack: () -> Unit,

593634

) {

635+

val context = LocalContext.current

594636

val cameraEnabled by viewModel.cameraEnabled.collectAsState()

595637

val locationMode by viewModel.locationMode.collectAsState()

596638

val locationPreciseEnabled by viewModel.locationPreciseEnabled.collectAsState()

597639

val preventSleep by viewModel.preventSleep.collectAsState()

598640

val canvasDebugStatusEnabled by viewModel.canvasDebugStatusEnabled.collectAsState()

641+

val cameraPermissionLauncher =

642+

rememberLauncherForActivityResult(ActivityResultContracts.RequestPermission()) { granted ->

643+

viewModel.setCameraEnabled(granted)

644+

}

645+

val locationPermissionLauncher =

646+

rememberLauncherForActivityResult(ActivityResultContracts.RequestMultiplePermissions()) { grants ->

647+

val granted = grants[Manifest.permission.ACCESS_FINE_LOCATION] == true || grants[Manifest.permission.ACCESS_COARSE_LOCATION] == true

648+

viewModel.setLocationMode(if (granted) LocationMode.WhileUsing else LocationMode.Off)

649+

viewModel.setLocationPreciseEnabled(grants[Manifest.permission.ACCESS_FINE_LOCATION] == true)

650+

}

651+652+

fun setCameraAccess(checked: Boolean) {

653+

if (!checked) {

654+

viewModel.setCameraEnabled(false)

655+

return

656+

}

657+

if (hasV2Permission(context, Manifest.permission.CAMERA)) {

658+

viewModel.setCameraEnabled(true)

659+

} else {

660+

cameraPermissionLauncher.launch(Manifest.permission.CAMERA)

661+

}

662+

}

663+664+

fun setLocationAccess(mode: LocationMode) {

665+

if (mode == LocationMode.Off) {

666+

viewModel.setLocationMode(LocationMode.Off)

667+

return

668+

}

669+

if (hasV2LocationPermission(context)) {

670+

viewModel.setLocationMode(LocationMode.WhileUsing)

671+

} else {

672+

locationPermissionLauncher.launch(arrayOf(Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION))

673+

}

674+

}

675+676+

fun setPreciseLocation(checked: Boolean) {

677+

if (!checked) {

678+

viewModel.setLocationPreciseEnabled(false)

679+

return

680+

}

681+

if (hasV2Permission(context, Manifest.permission.ACCESS_FINE_LOCATION)) {

682+

viewModel.setLocationPreciseEnabled(true)

683+

viewModel.setLocationMode(LocationMode.WhileUsing)

684+

} else {

685+

locationPermissionLauncher.launch(arrayOf(Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION))

686+

}

687+

}

599688600689

V2SettingsDetailFrame(title = "Phone Capabilities", subtitle = "Choose what this phone can share.", icon = Icons.AutoMirrored.Filled.ScreenShare, onBack = onBack) {

601690

V2SettingsTogglePanel(

602691

rows =

603692

listOf(

604-

V2SettingsToggleRow("Camera", "Allow camera tools when requested.", Icons.Default.CameraAlt, cameraEnabled, viewModel::setCameraEnabled),

605-

V2SettingsToggleRow("Precise Location", "Share precise location while location is enabled.", Icons.Default.LocationOn, locationPreciseEnabled, viewModel::setLocationPreciseEnabled),

693+

V2SettingsToggleRow("Camera", "Allow camera tools when requested.", Icons.Default.CameraAlt, cameraEnabled, ::setCameraAccess),

694+

V2SettingsToggleRow("Precise Location", "Share precise location while location is enabled.", Icons.Default.LocationOn, locationPreciseEnabled, ::setPreciseLocation),

606695

V2SettingsToggleRow("Keep Awake", "Keep the node available during active work.", Icons.Default.Bolt, preventSleep, viewModel::setPreventSleep),

607696

V2SettingsToggleRow("Canvas Status", "Show screen-sharing debug state.", Icons.AutoMirrored.Filled.ScreenShare, canvasDebugStatusEnabled, viewModel::setCanvasDebugStatusEnabled),

608697

),

@@ -613,7 +702,7 @@ private fun V2PhoneCapabilitiesScreen(

613702

ClawSegmentedControl(

614703

options = listOf("Off", "While Using"),

615704

selected = if (locationMode == LocationMode.WhileUsing) "While Using" else "Off",

616-

onSelect = { selected -> viewModel.setLocationMode(if (selected == "While Using") LocationMode.WhileUsing else LocationMode.Off) },

705+

onSelect = { selected -> setLocationAccess(if (selected == "While Using") LocationMode.WhileUsing else LocationMode.Off) },

617706

)

618707

}

619708

}

@@ -1026,3 +1115,17 @@ private fun V2SettingsIconMark(icon: ImageVector) {

10261115

}

10271116

}

10281117

}

1118+1119+

private fun hasV2Permission(

1120+

context: Context,

1121+

permission: String,

1122+

): Boolean = ContextCompat.checkSelfPermission(context, permission) == PackageManager.PERMISSION_GRANTED

1123+1124+

private fun hasV2LocationPermission(context: Context): Boolean =

1125+

hasV2Permission(context, Manifest.permission.ACCESS_FINE_LOCATION) ||

1126+

hasV2Permission(context, Manifest.permission.ACCESS_COARSE_LOCATION)

1127+1128+

private fun openV2NotificationListenerSettings(context: Context) {

1129+

val intent = Intent(Settings.ACTION_NOTIFICATION_LISTENER_SETTINGS).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)

1130+

context.startActivity(intent)

1131+

}