From 140729abc92b29dadcbda0f9305e30ac0b929e4b Mon Sep 17 00:00:00 2001 From: "openclaw-docs-sync[bot]" Date: Mon, 6 Apr 2026 14:43:18 +0000 Subject: [PATCH] chore(sync): mirror docs from openclaw/openclaw@6f566585d84fa3f6c0c630f101653f864821054e --- .openclaw-sync/source.json | 4 ++-- docs/platforms/ios.md | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index aed59f909..bc7e09cfa 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "9b0ea7c5793794b7378ad5d6ec3b5f0344cef161", - "syncedAt": "2026-04-06T14:38:12.019Z" + "sha": "6f566585d84fa3f6c0c630f101653f864821054e", + "syncedAt": "2026-04-06T14:43:17.482Z" } diff --git a/docs/platforms/ios.md b/docs/platforms/ios.md index 9ff340e16..2e7b2e234 100644 --- a/docs/platforms/ios.md +++ b/docs/platforms/ios.md @@ -161,6 +161,22 @@ export OPENCLAW_APNS_KEY_ID="KEYID" export OPENCLAW_APNS_PRIVATE_KEY_P8="$(cat /path/to/AuthKey_KEYID.p8)" ``` +These are gateway-host runtime env vars, not Fastlane settings. `apps/ios/fastlane/.env` only stores +App Store Connect / TestFlight auth such as `ASC_KEY_ID` and `ASC_ISSUER_ID`; it does not configure +direct APNs delivery for local iOS builds. + +Recommended gateway-host storage: + +```bash +mkdir -p ~/.openclaw/credentials/apns +chmod 700 ~/.openclaw/credentials/apns +mv /path/to/AuthKey_KEYID.p8 ~/.openclaw/credentials/apns/AuthKey_KEYID.p8 +chmod 600 ~/.openclaw/credentials/apns/AuthKey_KEYID.p8 +export OPENCLAW_APNS_PRIVATE_KEY_PATH="$HOME/.openclaw/credentials/apns/AuthKey_KEYID.p8" +``` + +Do not commit the `.p8` file or place it under the repo checkout. + ## Discovery paths ### Bonjour (LAN)