32 lines
875 B
Swift
32 lines
875 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let kitVersion = "1.1.1"
|
|
let checksum = "400025cb6ff1d127d410ff48db765ed08a9bd433b3ebb124e08549a81b70b39e"
|
|
|
|
let package = Package(
|
|
name: "PlatiniumPushKit",
|
|
platforms: [
|
|
.iOS(.v11)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "PlatiniumPushKit",
|
|
targets: ["PlatiniumPushKitWrapper"]),
|
|
],
|
|
dependencies: [
|
|
// Dependencies declare other packages that this package depends on.
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "PlatiniumPushKitWrapper",
|
|
dependencies: ["PlatiniumPushKit"]
|
|
),
|
|
.binaryTarget(
|
|
name: "PlatiniumPushKit",
|
|
url: "https://gitea.openium.fr/platinium/ios-kit-binaries/releases/download/\(kitVersion)/PlatiniumPushKit.xcframework.zip",
|
|
checksum: checksum
|
|
),
|
|
]
|
|
)
|