mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
fix(ios): restore local signing override wiring
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -41,6 +41,7 @@ Core/
|
||||
apps/ios/*.xcodeproj/
|
||||
apps/ios/*.xcworkspace/
|
||||
apps/ios/.swiftpm/
|
||||
apps/ios/.derivedData/
|
||||
apps/ios/.local-signing.xcconfig
|
||||
vendor/
|
||||
apps/ios/Clawdbot.xcodeproj/
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
// Default signing values for shared/repo builds.
|
||||
// For local development overrides, create LocalSigning.xcconfig (git-ignored).
|
||||
// Auto-selected local team overrides live in .local-signing.xcconfig (git-ignored).
|
||||
// Manual local overrides can go in LocalSigning.xcconfig (git-ignored).
|
||||
|
||||
OPENCLAW_CODE_SIGN_STYLE = Manual
|
||||
OPENCLAW_DEVELOPMENT_TEAM = Y5PE65HELJ
|
||||
@@ -10,4 +11,5 @@ OPENCLAW_SHARE_BUNDLE_ID = ai.openclaw.ios.share
|
||||
OPENCLAW_APP_PROFILE = ai.openclaw.ios Development
|
||||
OPENCLAW_SHARE_PROFILE = ai.openclaw.ios.share Development
|
||||
|
||||
#include? ".local-signing.xcconfig"
|
||||
#include? "LocalSigning.xcconfig"
|
||||
|
||||
@@ -18,6 +18,19 @@
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2026.2.18</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>CFBundleURLName</key>
|
||||
<string>ai.openclaw.ios</string>
|
||||
<key>CFBundleURLSchemes</key>
|
||||
<array>
|
||||
<string>openclaw</string>
|
||||
</array>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>20260218</string>
|
||||
<key>NSAppTransportSecurity</key>
|
||||
|
||||
@@ -28,6 +28,8 @@ tmp_file="$(mktemp "${TMPDIR:-/tmp}/openclaw-ios-signing.XXXXXX")"
|
||||
cat >"${tmp_file}" <<EOF
|
||||
// Auto-generated by scripts/ios-configure-signing.sh.
|
||||
// This file is local-only and should not be committed.
|
||||
OPENCLAW_DEVELOPMENT_TEAM = ${team_id}
|
||||
// Keep legacy key for compatibility with older signing config paths.
|
||||
OPENCLAW_IOS_SELECTED_TEAM = ${team_id}
|
||||
EOF
|
||||
|
||||
|
||||
Reference in New Issue
Block a user