- Package.swift: 重构为 MiniPlayerCore(共享库) + MiniPlayer(macOS) + MiniPlayeriOS(iOS) 三 target - 所有源文件添加 #if os(macOS) / #if os(iOS) 条件编译 - HLSRecorder.swift: iOS 纯 Swift HLS 录制器(下载TS+合并+AVAssetExportSession转MP4) - scripts/build-macos.sh: macOS 打包脚本 (.app + .dmg) - scripts/build-ios.sh: iOS 打包脚本 (xcodegen + xcodebuild archive → .ipa) - .gitignore: 排除构建产物
13 lines
131 B
Plaintext
13 lines
131 B
Plaintext
.build/
|
|
build/
|
|
*.xcodeproj
|
|
.DS_Store
|
|
MiniPlayer.app/
|
|
|
|
# Build artifacts
|
|
*.dmg
|
|
MiniPlayer.app/
|
|
.build-ios/
|
|
*.xcodeproj/
|
|
project.yml
|