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.22 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.7
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/dzungpv/GoogleMaps-SP/releases/download/7.4.1/GoogleMaps.xcframework.zip",
checksum: "b9be6db3f72a92d730b5dd7e04be75b3c87692fbc409e9064548a80beabe2b12"
),
.binaryTarget(
name: "GoogleMapsBase",
url: "https://github.com/dzungpv/GoogleMaps-SP/releases/download/7.4.1/GoogleMapsBase.xcframework.zip",
checksum: "cb9fbfb9d8d197899b9bb4ea0d40918718cd1ba36d810dfa8cde37f8ab69ce77"
),
.binaryTarget(
name: "GoogleMapsCore",
url: "https://github.com/dzungpv/GoogleMaps-SP/releases/download/7.4.1/GoogleMapsCore.xcframework.zip",
checksum: "498dbb3602976185286e7eaf4d4af3015655a67116df63c81d4512eb8b04cc39"
),
.binaryTarget(
name: "GoogleMapsM4B",
url: "https://github.com/dzungpv/GoogleMaps-SP/releases/download/7.4.1/GoogleMapsM4B.xcframework.zip",
checksum: "00a6b1bb84c03e3969dfad19904e6c2c9a508dbba0252533e036681c1279fc9d"
),
.binaryTarget(
name: "GooglePlaces",
url: "https://github.com/dzungpv/GoogleMaps-SP/releases/download/7.4.1/GooglePlaces.xcframework.zip",
checksum: "63fd4951999036f4d4fa978339ea8db778095da07765e6cfb7e0153cca921915"
)
]
)