Compare commits

..

20 Commits
1.0.0 ... main

Author SHA1 Message Date
SEAN
c7bc009bef 1.0.18 2025-11-27 11:00:13 +09:00
SEAN
fd9fd3127a 1.0.17 2025-11-27 10:50:17 +09:00
SEAN
39e3755bd4 1.0.16 2025-11-27 10:30:22 +09:00
SEAN
6268b559ae 1.0.15 2025-11-27 10:17:41 +09:00
SEAN
80702c0c3f 1.0.14 2025-11-27 10:02:15 +09:00
SEAN
a0b21401ad 1.0.13 2025-11-27 09:52:12 +09:00
SEAN
c7430c3f58 1.0.11 2025-11-27 09:28:39 +09:00
SEAN
aa6f120dfd 1.0.10 2025-11-27 09:11:29 +09:00
SEAN
e52fa0aa20 1.0.9 2025-11-27 08:23:31 +09:00
SEAN
56582f19d6 1.0.8 2025-11-27 08:14:57 +09:00
SEAN
d2a9d9e463 1.0.7 2025-11-26 18:52:29 +09:00
SEAN
83bbb3b9e9 1.0.6 2025-11-26 18:48:05 +09:00
SEAN
12ba9f3faa 1.0.5 2025-11-26 18:44:41 +09:00
SEAN
5c8bb517cb 1.0.3 2025-11-26 18:42:25 +09:00
SEAN
1badbcc371 1 2025-11-26 18:12:31 +09:00
SEAN
dc00ac7c4b Merge branch 'main' of https://git.ipstein.myds.me/seonkyu.kim/tcmpush 2025-11-26 18:03:33 +09:00
SEAN
836b547ccb Dir 2025-11-26 17:58:54 +09:00
ebdbc02ede Update Package.swift 2025-11-26 08:56:20 +00:00
bafe45b10e Update Package.swift 2025-11-26 08:55:17 +00:00
0374457b42 Update Package.swift 2025-11-26 08:45:43 +00:00
3 changed files with 14 additions and 15 deletions

View File

@ -2,36 +2,32 @@
import PackageDescription
let package = Package(
// 1. (Git -> )
name: "tcm_push_solution",
name: "tcmpush",
platforms: [
.iOS(.v14)
.iOS(.v16)
],
products: [
.library(
// 2. import ( )
name: "tcm_push_solution",
// 3. target
targets: ["tcm_push_solution"]
name: "tcmpush",
targets: ["tcmpushWrapper"]
)
],
dependencies: [
.package(url: "https://github.com/firebase/firebase-ios-sdk", from: "11.0.0")
.package(url: "https://github.com/firebase/firebase-ios-sdk", from: "12.0.0")
],
targets: [
// 4. ( , )
// 4. ( )
.binaryTarget(
name: "tcm_push_solution_core",
// URL Gitea
url: "https://git.ipstein.myds.me/api/packages/seonkyu.kim/generic/tcm_push_solution/1.0.6/tcm_push_solution.xcframework.zip",
checksum: "473e3adb39dbc6a2a4f0b99629a54c996471d88d7e858b43b4ed62612cad4392"
name: "tcmpush_core",
url: "https://git.ipstein.myds.me/api/packages/seonkyu.kim/generic/tcmpush/1.0.8/tcmpush.xcframework.zip",
checksum: "1b7d3cc1381d213f13f888015fce49f05ca6547846e8b8ab4e74d2cf9d2e426e"
),
// 5. ( )
.target(
name: "tcm_push_solution", // product targets
name: "tcmpushWrapper",
dependencies: [
"tcm_push_solution_core", // binaryTarget
"tcmpush_core",
.product(name: "FirebaseMessaging", package: "firebase-ios-sdk")
]
)

BIN
Sources/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -0,0 +1,3 @@
import Foundation
@_exported import tcmpush