* feat(ios): add live activity connection status and cleanup Add lock-screen/Dynamic Island connection health states and prune duplicate/stale activities before reuse. This intentionally excludes AI/title generation and heavier UX rewrites from #27488. Co-authored-by: leepokai <1663017+leepokai@users.noreply.github.com> * fix(ios): treat ended live activities as inactive * chore(changelog): add PR reference and author thanks --------- Co-authored-by: leepokai <1663017+leepokai@users.noreply.github.com>
20 lines
843 B
Plaintext
20 lines
843 B
Plaintext
// Shared iOS signing defaults for local development + CI.
|
|
OPENCLAW_IOS_DEFAULT_TEAM = Y5PE65HELJ
|
|
OPENCLAW_IOS_SELECTED_TEAM = $(OPENCLAW_IOS_DEFAULT_TEAM)
|
|
OPENCLAW_APP_BUNDLE_ID = ai.openclaw.ios
|
|
OPENCLAW_WATCH_APP_BUNDLE_ID = ai.openclaw.ios.watchkitapp
|
|
OPENCLAW_WATCH_EXTENSION_BUNDLE_ID = ai.openclaw.ios.watchkitapp.extension
|
|
OPENCLAW_ACTIVITY_WIDGET_BUNDLE_ID = ai.openclaw.ios.activitywidget
|
|
|
|
// 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 = Automatic
|
|
CODE_SIGN_IDENTITY = Apple Development
|
|
DEVELOPMENT_TEAM = $(OPENCLAW_IOS_SELECTED_TEAM)
|
|
|
|
// Let Xcode manage provisioning for the selected local team.
|
|
PROVISIONING_PROFILE_SPECIFIER =
|