Skip to content

Commit 89b1e38

Browse files
author
David Luco
committed
Initial commit
0 parents  commit 89b1e38

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/
6+
*.swiftpm*

Package.swift

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// swift-tools-version:5.3
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "PDFTron",
7+
products: [
8+
.library(
9+
name: "PDFTron",
10+
targets: ["PDFTron", "PDFTronTools"]),
11+
],
12+
targets: [
13+
.binaryTarget(
14+
name: "PDFTron",
15+
url: "https://www.pdftron.com/downloads/ios/package/8.1.2/PDFTron.xcframework.zip",
16+
checksum: ""),
17+
.binaryTarget(
18+
name: "PDFTronTools",
19+
url: "https://www.pdftron.com/downloads/ios/package/8.1.2/PDFTronTools.xcframework.zip",
20+
checksum: ""),
21+
]
22+
)

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# PDFTron iOS Swift Package
2+
3+
This repository contains the PDFTron iOS package for use with the Swift Package Manager (SPM).
4+
5+
For information on getting started with PDFTron iOS, please see our [integration guides](https://www.pdftron.com/documentation/ios/get-started/).
6+
7+
Please note that a license for PDFTron iOS is required for use in a production environment. You can get in touch with PDFTron Sales
8+
[here](https://www.pdftron.com/form/contact-sales/).

0 commit comments

Comments
 (0)