-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
46 lines (45 loc) · 1.47 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.6
import PackageDescription
let package = Package(
name: "GoogleMaps",
platforms: [.iOS(.v13)],
products: [
.library(
name: "GoogleMapsBase",
targets: [
"GoogleMapsBase"
]
),
.library(
name: "GoogleMapsCore",
targets: [
"GoogleMapsCore"
]
),
.library(
name: "GoogleMaps",
targets: [
"GoogleMaps",
"GoogleMapsBase",
"GoogleMapsCore"
]
),
],
targets: [
.binaryTarget(
name: "GoogleMaps",
url: "https://github.com/dodobrands/google-maps-swift-package/releases/download/8.1.0/GoogleMaps.xcframework.zip",
checksum: "fcaad90e6ba638f2ba64fa50a932baff7fb9298f4ffc3e0116cc912fd9c2682f"
),
.binaryTarget(
name: "GoogleMapsBase",
url: "https://github.com/dodobrands/google-maps-swift-package/releases/download/8.1.0/GoogleMapsBase.xcframework.zip",
checksum: "6f4239296d94f50d5bdd3467c00122664626ef2b362c7f3681d8acf82d2eb382"
),
.binaryTarget(
name: "GoogleMapsCore",
url: "https://github.com/dodobrands/google-maps-swift-package/releases/download/8.1.0/GoogleMapsCore.xcframework.zip",
checksum: "230b988abe0d149f4c85a7959de4591421efa5a9c4880c832e7ff07257d82134"
),
]
)