Skip to content

Commit 21610ab

Browse files
Swift Package Manager support added.
1 parent 8d8848b commit 21610ab

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version:5.1
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "FAPanels",
6+
platforms: [
7+
.iOS(.v10),
8+
],
9+
products: [
10+
.library(
11+
name: "FAPanels",
12+
targets: ["FAPanels"]),
13+
],
14+
dependencies: [
15+
// no dependencies
16+
],
17+
targets: [
18+
.target(name: "FAPanels", path: "FAPanels/Classes")
19+
]
20+
)
21+

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@
3232
- ScanShake Exhibitor (https://itunes.apple.com/us/app/scanshake-exhibitor/id1349889664?mt=8)
3333

3434

35+
## New Features Added
36+
---
37+
38+
- [x] Swift Package Manager Support Added
39+
40+
41+
42+
3543
## Change Color Of Center Panel While Panning
3644
---
3745

0 commit comments

Comments
 (0)