Files
to-live-photo/Package.swift
empty 5aba93e967 feat: M2-M4 完成,添加 AI 增强、设计系统、App Store 准备
新增功能:
- 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>
2025-12-16 10:24:31 +08:00

32 lines
720 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 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"]
)
]
)