-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
32 lines (30 loc) · 1.23 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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "storyteller-gam-integration",
platforms: [.iOS(.v13)],
products: [
.library(
name: "StorytellerGAMIntegration",
targets: ["StorytellerGAMTarget"]
),
],
dependencies: [
.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", .upToNextMajor(from: "11.0.0")),
.package(url: "https://github.com/getstoryteller/storyteller-sdk-swift-package", exact: "10.6.5")
],
targets: [
.binaryTarget(name: "StorytellerGAMIntegration",
url: "https://storyteller.azureedge.net/sdk-ios/xcframeworks/10.6.5/StorytellerGAMIntegration.zip",
checksum: "59a794b6ca1940cf0424c161865b6788bbe9f904a4cc774b33b6ac25f9f6d8d1"),
.target(
name: "StorytellerGAMTarget",
dependencies: [
.target(name: "StorytellerGAMIntegration"),
.product(name: "GoogleMobileAds", package: "swift-package-manager-google-mobile-ads"),
.product(name: "StorytellerSDK", package: "storyteller-sdk-swift-package"),
],
path: "Sources"
)
]
)