-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
46 lines (44 loc) · 1.59 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "ScanditShelf",
platforms: [.iOS(.v15)],
products: [
.library(name: "ScanditShelf", targets: [
"ScanditShelf",
"ScanditBarcodeCapture",
"ScanditCaptureCore",
"ScanditLabelCapture",
"ScanditPriceLabel"
])
],
dependencies: [],
targets: [
.binaryTarget(
name: "ScanditShelf",
url: "https://shelf.scandit.com/packages/pple-sdk-ios-1.6.0.zip",
checksum: "06696c864e7bd64dc2bbbe7267bd39ffc22f6346a4e4f88882badb98ed992d74"
),
.binaryTarget(
name: "ScanditBarcodeCapture",
url: "https://ssl.scandit.com/sdk/download/scandit-datacapture-ios-barcode-6.28.1-xcframework.zip",
checksum: "979434fbb67b6f96fed6b116921bc97958dead7c1c63db554053eb4e2aaf5ad1"
),
.binaryTarget(
name: "ScanditCaptureCore",
url: "https://ssl.scandit.com/sdk/download/scandit-datacapture-ios-core-6.28.1-xcframework.zip",
checksum: "2d4ba0576d3c7a4e66d02aa9b8dfa956bbd99681a170b3adab76c150c29997bd"
),
.binaryTarget(
name: "ScanditLabelCapture",
url: "https://ssl.scandit.com/sdk/download/scandit-datacapture-ios-label-6.28.1-xcframework.zip",
checksum: "cf348c25ac58a2990877214ad02e8bdab9be1ef5e950cded1be670f76dac4816"
),
.binaryTarget(
name: "ScanditPriceLabel",
url: "https://ssl.scandit.com/sdk/download/scandit-datacapture-ios-label-plv-models-6.28.1-xcframework.zip",
checksum: "8031fcf5a99401145234363bbed89915b3f3e96d4e4ba990f37b86928e8722d7"
)
]
)