Skip to content

Commit

Permalink
Code correction in Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
Loupehope committed Jan 11, 2021
1 parent 0a8dfc1 commit fd41857
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@
import PackageDescription

let package = Package(
name: "RxKeyboard",
platforms: [
.iOS(.v9)
],
products: [
.library(name: "RxKeyboard", targets: ["RxKeyboard"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0")),
],
targets: [
.target(name: "RxKeyboard", dependencies: ["RxSwift", "RxCocoa"]),
]
name: "RxKeyboard",
products: [
.library(name: "RxKeyboard", targets: ["RxKeyboard"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0")),
],
targets: [
.target(name: "RxKeyboard", dependencies: ["RxSwift", "RxCocoa"]),
]
)

0 comments on commit fd41857

Please sign in to comment.