-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (23 loc) · 922 Bytes
/
Package.swift
File metadata and controls
25 lines (23 loc) · 922 Bytes
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
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "ADG-iOS-SDK",
platforms: [
.iOS(.v12)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "ADG",
targets: ["ADG"]),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.binaryTarget(
name: "ADG",
url: "https://github.com/AdGeneration/ADG-iOS-SDK/releases/download/2.36.0/ADG.xcframework.zip",
checksum: "28842d13ce9c657854d1788b7d801744fdee1b3bb8836ac4a9d6bca6d191f132"),
]
)