新增功能: - AI 超分辨率模块 (Real-ESRGAN Core ML) - Soft UI 设计系统 (DesignSystem.swift) - 设置页、隐私政策页、引导页 - 最近作品管理器 App Store 准备: - 完善截图 (iPhone 6.7"/6.5", iPad 12.9") - App Store 元数据文档 - 修复应用图标 alpha 通道 - 更新显示名称为 Live Photo Studio 工程配置: - 配置 Git LFS 跟踪 mlmodel 文件 - 添加 Claude skill 开发指南 - 更新 .gitignore 规则 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
720 B
Swift
32 lines
720 B
Swift
// swift-tools-version: 6.0
|
||
|
||
import PackageDescription
|
||
|
||
let package = Package(
|
||
name: "ToLivePhoto",
|
||
platforms: [
|
||
.iOS(.v18)
|
||
],
|
||
products: [
|
||
.library(
|
||
name: "LivePhotoCore",
|
||
targets: ["LivePhotoCore"]
|
||
)
|
||
],
|
||
targets: [
|
||
.target(
|
||
name: "LivePhotoCore",
|
||
dependencies: [],
|
||
resources: [
|
||
.copy("Resources/metadata.mov"),
|
||
// AI 超分辨率模型(Real-ESRGAN x4plus)
|
||
.process("Resources/RealESRGAN_x4plus.mlmodel")
|
||
]
|
||
),
|
||
.testTarget(
|
||
name: "LivePhotoCoreTests",
|
||
dependencies: ["LivePhotoCore"]
|
||
)
|
||
]
|
||
)
|