forked from quanghits/GoogleUserMessagingPlatform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
36 lines (33 loc) · 1.14 KB
/
Package.swift
File metadata and controls
36 lines (33 loc) · 1.14 KB
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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
// ref. https://github.com/CocoaPods/Specs/blob/6c4ab4f0d57f70816f3e2cfb8476c02b8c1a6e76/Specs/5/9/a/Google-Mobile-Ads-SDK/8.2.0/Google-Mobile-Ads-SDK.podspec.json
import PackageDescription
let package = Package(
name: "GoogleUserMessagingPlatform",
platforms: [
.iOS(.v9)
],
products: [
.library(
name: "UserMessagingPlatform",
targets: ["UserMessagingPlatformTarget"]),
],
dependencies: [
],
targets: [
.target(name: "UserMessagingPlatformTarget",
dependencies: [
.target(name: "UserMessagingPlatform")
],
path: "Sources",
linkerSettings: [
.linkedFramework("WebKit")
]),
.binaryTarget(
name: "UserMessagingPlatform",
path: "Binary/UserMessagingPlatform.xcframework"),
// .binaryTarget(name: "UserMessagingPlatform",
// url: "",
// checksum: ""),
]
)