docs: explain BLE wake-on-proximity accessory prompt

Clarify the iOS “accessory would like to open bitchat” modal in
Bluetooth usage strings and App Info privacy copy (#1427).
This commit is contained in:
Taksh 2026-07-31 14:02:29 +03:00
parent 1f59e814f9
commit 8bf2bc629b
2 changed files with 19 additions and 2 deletions

View File

@ -36,9 +36,9 @@
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSBluetoothAlwaysUsageDescription</key>
<string>bitchat uses Bluetooth to create a secure mesh network for chatting with nearby users.</string>
<string>bitchat uses Bluetooth to create a secure mesh with nearby users. While backgrounded, a nearby peer may ask iOS to reopen bitchat so the mesh can reach you — that system prompt is expected.</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>bitchat uses Bluetooth to discover and connect with other bitchat users nearby.</string>
<string>bitchat uses Bluetooth to discover and connect with nearby users. Background reconnects can show an iOS “accessory would like to open bitchat” prompt; allow it to stay reachable, or dismiss if you prefer not to wake.</string>
<key>NSCameraUsageDescription</key>
<string>bitchat uses the camera to scan QR codes to verify peers.</string>
<key>NSLocationWhenInUseUsageDescription</key>

View File

@ -221,6 +221,21 @@ struct AppInfoView: View {
title: "app_info.privacy.ephemeral.title",
description: "app_info.privacy.ephemeral.description"
)
/// Explains the iOS 26 accessory would like to open bitchat
/// modal from wake-on-proximity (#1427 / #1396).
static let wakeProximity = AppInfoFeatureInfo(
icon: "antenna.radiowaves.left.and.right",
resolvedTitle: String(
localized: "app_info.privacy.wake_proximity.title",
defaultValue: "Background mesh wake",
comment: "App Info privacy feature title explaining BLE wake-on-proximity"
),
resolvedDescription: String(
localized: "app_info.privacy.wake_proximity.description",
defaultValue: "while closed, nearby peers may reopen bitchat over bluetooth so the mesh can reach you — the ios “accessory would like to open bitchat” prompt is that wake, and is safe to allow",
comment: "App Info privacy feature description for the iOS accessory wake modal"
)
)
static let panic = AppInfoFeatureInfo(
icon: "hand.raised.fill",
title: "app_info.privacy.panic.title",
@ -814,6 +829,8 @@ struct AppInfoView: View {
FeatureRow(info: Strings.Privacy.ephemeral)
FeatureRow(info: Strings.Privacy.wakeProximity)
FeatureRow(info: Strings.Privacy.panic)
}