tcmpush/Package.swift
2025-11-26 08:55:17 +00:00

36 lines
1.1 KiB
Swift
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "tcmpush",
platforms: [
.iOS(.v14)
],
products: [
.library(
name: "tcmpush",
targets: ["tcmpush"]
)
],
dependencies: [
.package(url: "https://github.com/firebase/firebase-ios-sdk", from: "12.0.0")
],
targets: [
// 4. ( )
.binaryTarget(
name: "tcmpush_core",
url: "https://git.ipstein.myds.me/api/packages/seonkyu.kim/generic/tcmpush/1.0.0/tcmpush.xcframework.zip",
checksum: "097aa3e33ce234fa7146757a8236361f17090bb669a2463b13d311229de2d43d"
),
// 5. ( )
.target(
name: "tcmpush",
dependencies: [
"tcmpush_core", // .
.product(name: "FirebaseMessaging", package: "firebase-ios-sdk")
]
// path: "Sources/tcmpush" ( )
)
]
)