forked from YAtechnologies/GoogleMaps-SP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
68 lines (67 loc) · 2.25 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "GoogleMaps",
products: [
.library(
name: "GoogleMapsBase",
targets: [
"GoogleMapsBase"
]
),
.library(
name: "GoogleMapsCore",
targets: [
"GoogleMapsCore"
]
),
.library(
name: "GoogleMaps",
targets: [
"GoogleMaps",
"GoogleMapsBase",
"GoogleMapsCore"
]
),
.library(
name: "GoogleMapsM4B",
targets: [
"GoogleMapsM4B"
]
),
.library(
name: "GooglePlaces",
targets: [
"GooglePlaces",
"GoogleMapsBase"
]
)
],
targets: [
.binaryTarget(
name: "GoogleMaps",
url: "https://github.com/YAtechnologies/GoogleMaps-SP/releases/download/5.1.0/GoogleMaps.xcframework.zip",
checksum: "4c3cd74860f036211e5648fbebff8e278abe2dbab033e8be527f30100187e5fe"
),
.binaryTarget(
name: "GoogleMapsBase",
url: "https://github.com/YAtechnologies/GoogleMaps-SP/releases/download/5.1.0/GoogleMapsBase.xcframework.zip",
checksum: "c28b1fff1b9b6e44b06f116e67b924fba529305111ae964bdead01475a668c66"
),
.binaryTarget(
name: "GoogleMapsCore",
url: "https://github.com/YAtechnologies/GoogleMaps-SP/releases/download/5.1.0/GoogleMapsCore.xcframework.zip",
checksum: "e1388910af2d3897d027da02a4f6d1ad26cac3b68e275ef39e94460f5c016c13"
),
.binaryTarget(
name: "GoogleMapsM4B",
url: "https://github.com/YAtechnologies/GoogleMaps-SP/releases/download/5.1.0/GoogleMapsM4B.xcframework.zip",
checksum: "83c2402ae8a78eb412d934cd0f4906e567291f4727c4ad4ec2a730db0d04d8f2"
),
.binaryTarget(
name: "GooglePlaces",
url: "https://github.com/YAtechnologies/GoogleMaps-SP/releases/download/5.1.0/GooglePlaces.xcframework.zip",
checksum: "28319e68972c7a1910f95663b62562560d45371dd86304f675f283bb21fc7f45"
)
]
)