Files
to-live-photo/Package.swift
empty 64e962b6a4 feat: AI 模型支持 On-Demand Resources 按需下载
- 新增 ODRManager 管理模型资源下载
- EditorView 添加下载进度 UI
- Package.swift 移除内嵌模型资源
- 减小应用包体积约 64MB

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-03 22:23:59 +08:00

31 lines
663 B
Swift
Raw Permalink 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 On-Demand Resources
]
),
.testTarget(
name: "LivePhotoCoreTests",
dependencies: ["LivePhotoCore"]
)
]
)