7f6e35908c
- 移除自定义 UI 字体,界面统一系统原生:删 BrandFonts.swift(Orbit/Maple woff2 运行期 CTFontManager 注册 + UIKit 外观代理)+ AppDelegate 的 register 调用 + CDropApp 全局 .environment(\.font, .oBody);9 视图 .font(.o语义) → .font(.语义) 系统语义(日志 LogView 消息行本就 .caption.monospaced() 原生等宽);删 Sources/Fonts/(Orbit/Maple woff2 ~20MB)。仅留品牌字标 Fredoka(logo Wordmark),Justfile ios-fonts 改 Fredoka-only、.gitignore 收窄、新增 Shared/Fonts/README.md - iPad 适配:RootView TabView 加 .tabViewStyle(.sidebarAdaptable)(iPad 常规宽度侧边栏 / iPhone 底部标签栏)+ ConversationView 消息线程 maxWidth 680 居中;project.yml 补方向键 UISupportedInterfaceOrientations(iPhone 竖 + 横)/ ~ipad(全 4 向),消除 iPad 多任务方向构建告警 - 登录页内容约束 maxWidth 420 居中,避免 iPad 宽屏主登录按钮 / 二维码区横向拉满(iPhone 不受影响) - 文档:ios/PLAN.md §11.2 改系统原生字体 + 新增 §13 iPad;ios/PARITY.md 字体分叉条目回退 + 导航条目加 iPad + 2026-07-07 漂移行 - 已装 iPhone 15 Pro C + iPad Pro 13" M4 双端、用户确认
180 lines
8.1 KiB
YAML
180 lines
8.1 KiB
YAML
name: CDrop
|
||
options:
|
||
bundleIdPrefix: net.commilitia
|
||
deploymentTarget:
|
||
iOS: "26.0"
|
||
createIntermediateGroups: true
|
||
# 原生数据面:iOS 走 libwebrtc(Safari 同款,与 iOS 网络栈原生集成)。预编译 xcframework 经
|
||
# stasel/WebRTC 以 SPM 分发,仅二进制 target,pin 精确版本避免上游 M 版跳变改 API。替换早先
|
||
# gomobile/pion 路径——pion 的 Go raw socket 不与 iOS Network framework 集成,真机确证不可靠
|
||
# (见 desktop/NATIVE-TRANSFER.md §7 / cdrop-native-data-plane 记忆)。
|
||
packages:
|
||
WebRTC:
|
||
url: https://github.com/stasel/WebRTC
|
||
exactVersion: 149.0.0
|
||
settings:
|
||
base:
|
||
SWIFT_VERSION: "5.0"
|
||
# 模拟器用 ad-hoc 签名(身份 "-",无需 Apple 账号),使 App Group / Push 等 entitlement 在
|
||
# 模拟器实际生效(否则共享容器不创建、远程通知注册失败)。真机签名须付费 ADP 配
|
||
# team / provisioning profile(账号门控,见 REALDEVICE.md)。
|
||
CODE_SIGN_IDENTITY: "-"
|
||
CODE_SIGNING_REQUIRED: "NO"
|
||
CODE_SIGNING_ALLOWED: "YES"
|
||
targets:
|
||
CDrop:
|
||
type: application
|
||
platform: iOS
|
||
deploymentTarget: "26.0"
|
||
sources:
|
||
- path: Sources
|
||
- path: Shared
|
||
dependencies:
|
||
- target: CDropShare
|
||
embed: true
|
||
- target: CDropWidgets
|
||
embed: true
|
||
# 原生数据面引擎(libwebrtc):SPM 预编 xcframework,Xcode 自动嵌入 + 签名。仅主 app 链接——
|
||
# Share / 控件扩展不碰数据面,避免超扩展 120MB 内存限。见 LibWebRtcEngine.swift。
|
||
- package: WebRTC
|
||
info:
|
||
path: Sources/Info.plist
|
||
properties:
|
||
CFBundleDisplayName: Commilitia Drop
|
||
# 品牌字标字体 Fredoka SemiBold(Shared/Fonts/,随 bundle 打包),用于 Wordmark(与 web 一致)。
|
||
UIAppFonts:
|
||
- Fredoka-SemiBold.ttf
|
||
# cdrop:// URL scheme:Share Extension 交接后经 cdrop://share 深链唤起主 app 选设备发送。
|
||
CFBundleURLTypes:
|
||
- CFBundleURLName: net.commilitia.Commilitia-Drop
|
||
CFBundleURLSchemes:
|
||
- cdrop
|
||
# 声明支持的语言,使系统控件(EditButton 的「编辑」、滑动删除的「删除」等系统字符
|
||
# 串)跟随设备语言本地化,而非永远英文。开发区域设简体。
|
||
CFBundleDevelopmentRegion: zh-Hans
|
||
CFBundleLocalizations:
|
||
- zh-Hans
|
||
- zh-Hant
|
||
- en
|
||
UILaunchScreen: {}
|
||
# 界面方向:iPhone 竖屏 + 横屏(不含上下颠倒,遵 iPhone 惯例);iPad 支持全部 4 向——通用 App
|
||
# 若不锁全屏(UIRequiresFullScreen 未设),iPad 多任务(Split View / Slide Over)要求支持全部方向,
|
||
# 否则构建告警「All interface orientations must be supported...」。
|
||
UISupportedInterfaceOrientations:
|
||
- UIInterfaceOrientationPortrait
|
||
- UIInterfaceOrientationLandscapeLeft
|
||
- UIInterfaceOrientationLandscapeRight
|
||
"UISupportedInterfaceOrientations~ipad":
|
||
- UIInterfaceOrientationPortrait
|
||
- UIInterfaceOrientationPortraitUpsideDown
|
||
- UIInterfaceOrientationLandscapeLeft
|
||
- UIInterfaceOrientationLandscapeRight
|
||
# 后台续传:BGContinuedProcessingTask 的通配标识符须在此声明,系统才允许注册 / 提交
|
||
# (见 BackgroundTaskManager)。默认资源(CPU + 网络)无需额外 entitlement。
|
||
BGTaskSchedulerPermittedIdentifiers:
|
||
- "net.commilitia.Commilitia-Drop.transfer.*"
|
||
# 远程通知后台模式:APNs 推送送达 / 后台处理(如「收到文件」通知)。
|
||
UIBackgroundModes:
|
||
- remote-notification
|
||
# 让接收文件落地的 Documents 目录在 Files app「我的 iPhone / Commilitia Drop」下
|
||
# 可见、可就地打开(收到的文件有处可开、可被其他 app 取用)。
|
||
UIFileSharingEnabled: true
|
||
LSSupportsOpeningDocumentsInPlace: true
|
||
NSAppTransportSecurity:
|
||
NSAllowsLocalNetworking: true
|
||
NSLocalNetworkUsageDescription: "Commilitia Drop 需要访问本地网络以发现同内网设备并建立直连传输。"
|
||
NSBonjourServices:
|
||
- "_cdrop._tcp"
|
||
NSCameraUsageDescription: "Commilitia Drop 使用相机扫描二维码登录新设备。"
|
||
# 图库选择:从相册选取图片 / 视频发送(PhotosPicker,见 RootView #14)。
|
||
NSPhotoLibraryUsageDescription: "Commilitia Drop 需要访问照片库,以便从相册选取图片或视频发送给其他设备。"
|
||
settings:
|
||
base:
|
||
PRODUCT_BUNDLE_IDENTIFIER: net.commilitia.Commilitia-Drop
|
||
TARGETED_DEVICE_FAMILY: "1,2"
|
||
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
|
||
# APNs 推送的 aps-environment entitlement(见 CDrop.entitlements)。模拟器取令牌可用;
|
||
# 真机签名须付费 ADP 开 Push 能力(账号门控)。
|
||
CODE_SIGN_ENTITLEMENTS: CDrop.entitlements
|
||
# Share Extension:抓分享文件 → App Group 收件箱 → 深链主 app 选设备发送(只交接、不跑引擎,
|
||
# 见 PLAN §I5)。只编 ShareViewController + 共享的 AppGroup,绝不拉主 app Sources(避超 120MB)。
|
||
CDropShare:
|
||
type: app-extension
|
||
platform: iOS
|
||
deploymentTarget: "26.0"
|
||
sources:
|
||
- path: Share
|
||
- path: Shared
|
||
# i18n JSON 随扩展 bundle 一并打包,使分享引导界面的 t() 文案随设备语言(同控件扩展)。
|
||
- path: Sources/Resources/i18n
|
||
info:
|
||
path: Share/Info.plist
|
||
properties:
|
||
CFBundleDisplayName: Commilitia Drop
|
||
# 品牌字标字体(分享引导界面的 Wordmark 用),随扩展 bundle 打包 + 注册。
|
||
UIAppFonts:
|
||
- Fredoka-SemiBold.ttf
|
||
NSExtension:
|
||
NSExtensionPointIdentifier: com.apple.share-services
|
||
NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).ShareViewController
|
||
NSExtensionAttributes:
|
||
NSExtensionActivationRule:
|
||
NSExtensionActivationSupportsFileWithMaxCount: 20
|
||
NSExtensionActivationSupportsImageWithMaxCount: 20
|
||
NSExtensionActivationSupportsMovieWithMaxCount: 20
|
||
settings:
|
||
base:
|
||
PRODUCT_BUNDLE_IDENTIFIER: net.commilitia.Commilitia-Drop.share
|
||
TARGETED_DEVICE_FAMILY: "1,2"
|
||
CODE_SIGN_ENTITLEMENTS: Share/CDropShare.entitlements
|
||
# 控制中心剪贴板两控件(WidgetKit ControlWidget,iOS 18+,PLAN §I4)。纯原生 REST + 控件专用
|
||
# 设备会话(不跑引擎)。i18n JSON 一并打包使控件标签随设备语言(t() 经 no-subdir 回退读 bundle)。
|
||
CDropWidgets:
|
||
type: app-extension
|
||
platform: iOS
|
||
deploymentTarget: "26.0"
|
||
sources:
|
||
- path: Widgets
|
||
- path: Shared
|
||
- path: Sources/Resources/i18n
|
||
info:
|
||
path: Widgets/Info.plist
|
||
properties:
|
||
CFBundleDisplayName: Commilitia Drop
|
||
NSExtension:
|
||
NSExtensionPointIdentifier: com.apple.widgetkit-extension
|
||
settings:
|
||
base:
|
||
PRODUCT_BUNDLE_IDENTIFIER: net.commilitia.Commilitia-Drop.widgets
|
||
TARGETED_DEVICE_FAMILY: "1,2"
|
||
CODE_SIGN_ENTITLEMENTS: Widgets/CDropWidgets.entitlements
|
||
# 单元 / 集成测试(模拟器,无需签名):原生数据面 libwebrtc 引擎的环回端到端测试——两个
|
||
# LibWebRtcEngine 在同进程内交叉连,跑完整线协议(offer/answer/ICE + meta/分片/done + ack +
|
||
# 收尾)验证文件字节完整性。宿主即 CDrop app(@testable import 取内部类型 + 经 app 链接 WebRTC)。
|
||
CDropTests:
|
||
type: bundle.unit-test
|
||
platform: iOS
|
||
deploymentTarget: "26.0"
|
||
sources:
|
||
- path: Tests
|
||
dependencies:
|
||
- target: CDrop
|
||
- package: WebRTC
|
||
settings:
|
||
base:
|
||
PRODUCT_BUNDLE_IDENTIFIER: net.commilitia.Commilitia-Drop.tests
|
||
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/CDrop.app/CDrop"
|
||
BUNDLE_LOADER: "$(TEST_HOST)"
|
||
GENERATE_INFOPLIST_FILE: "YES"
|
||
schemes:
|
||
CDrop:
|
||
build:
|
||
targets:
|
||
CDrop: all
|
||
test:
|
||
targets:
|
||
- CDropTests
|
||
gatherCoverageData: false
|
||
run:
|
||
config: Debug
|