Skip to content

Commit da12665

Browse files
committed
2 parents 1a13070 + 93d002e commit da12665

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Package.swift

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// swift-tools-version:5.1
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "KeyboardLayoutGuide",
6+
platforms: [.iOS(.v9)],
7+
products: [
8+
.library(name: "KeyboardLayoutGuide", targets: ["KeyboardLayoutGuide"]),
9+
],
10+
targets: [
11+
.target(
12+
name: "KeyboardLayoutGuide",
13+
dependencies: [],
14+
path: "KeyboardLayoutGuide/KeyboardLayoutGuide"
15+
)
16+
]
17+
)

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ To install `KeyboardLayoutGuide` via [Carthage](https://github.com/Carthage/Cart
6464
github "freshos/KeyboardLayoutGuide"
6565
```
6666

67+
### Swift Package Manager
68+
69+
To integrate `KeyboardLayoutGuide` via [SPM](https://swift.org/package-manager/) into your Xcode 11 project specify it in Project > Swift Packages:
70+
```
71+
https://github.com/freshOS/KeyboardLayoutGuide
72+
```
73+
6774
### Manually
6875
Just add `Keyboard+LayoutGuide.swift` to your Xcode project.
6976

0 commit comments

Comments
 (0)