mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
27 lines
1.2 KiB
Text
27 lines
1.2 KiB
Text
// Shared iOS signing defaults for local development + CI.
|
|
#include "../build/Version.xcconfig"
|
|
|
|
OPENCLAW_IOS_DEFAULT_TEAM = FWJYW4S8P8
|
|
OPENCLAW_IOS_SELECTED_TEAM = $(OPENCLAW_IOS_DEFAULT_TEAM)
|
|
OPENCLAW_DEVELOPMENT_TEAM = $(OPENCLAW_IOS_SELECTED_TEAM)
|
|
OPENCLAW_CODE_SIGN_STYLE = Automatic
|
|
OPENCLAW_CODE_SIGN_IDENTITY = Apple Development
|
|
OPENCLAW_CODE_SIGN_ENTITLEMENTS = Sources/OpenClaw.entitlements
|
|
OPENCLAW_APP_BUNDLE_ID = ai.openclawfoundation.app
|
|
OPENCLAW_APP_GROUP_ID = group.ai.openclawfoundation.app.shared
|
|
OPENCLAW_WATCH_APP_BUNDLE_ID = ai.openclawfoundation.app.watchkitapp
|
|
OPENCLAW_ACTIVITY_WIDGET_BUNDLE_ID = ai.openclawfoundation.app.activitywidget
|
|
OPENCLAW_ACTIVITY_WIDGET_PROFILE =
|
|
OPENCLAW_WATCH_APP_PROFILE =
|
|
|
|
// Local contributors can override this by running scripts/ios-configure-signing.sh.
|
|
// Keep include after defaults: xcconfig is evaluated top-to-bottom.
|
|
#include? "../.local-signing.xcconfig"
|
|
#include? "../LocalSigning.xcconfig"
|
|
|
|
CODE_SIGN_STYLE = $(OPENCLAW_CODE_SIGN_STYLE)
|
|
CODE_SIGN_IDENTITY = $(OPENCLAW_CODE_SIGN_IDENTITY)
|
|
DEVELOPMENT_TEAM = $(OPENCLAW_DEVELOPMENT_TEAM)
|
|
|
|
// Let Xcode manage provisioning for the selected local team unless a local override pins one.
|
|
PROVISIONING_PROFILE_SPECIFIER =
|