Skip to content

Commit

Permalink
Merge pull request #178 from noreasonprojects/fix/install-from-spm
Browse files Browse the repository at this point in the history
Fix fetch library from spm
  • Loading branch information
raphrel authored Oct 13, 2020
2 parents d66ccee + 3c3fc94 commit ce7d954
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.

---
## [X.X.X]
* Fix:
* Spm install

## [1.7.0]
* Fix:
* [#173] Remove no sense remote command factory
Expand Down
16 changes: 16 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"object": {
"pins": [
{
"package": "RxSwift",
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",
"state": {
"branch": null,
"revision": "002d325b0bdee94e7882e1114af5ff4fe1e96afa",
"version": "5.1.1"
}
}
]
},
"version": 1
}
8 changes: 6 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PackageDescription

let package = Package(
name: "ModernAVPlayer",
platforms: [SupportedPlatform.iOS("10.0")],
platforms: [.iOS(.v10)],
products: [
.library(name: "ModernAVPlayer", targets: ["ModernAVPlayer"]),
.library(name: "RxModernAVPlayer", targets: ["RxModernAVPlayer"])
Expand All @@ -18,7 +18,11 @@ let package = Package(
),
.target(
name: "RxModernAVPlayer",
dependencies: ["ModernAVPlayer", "RxSwift", "RxCocoa"],
dependencies: [
.target(name: "ModernAVPlayer"),
.product(name: "RxSwift", package: "RxSwift"),
.product(name: "RxCocoa", package: "RxSwift")
],
path: "Sources/RxModernAVPlayer"
)
]
Expand Down

0 comments on commit ce7d954

Please sign in to comment.