Skip to content

Commit

Permalink
Revert to an old way of connecting the exact player version dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Yelizarov committed May 17, 2024
1 parent 4dc9666 commit 2511c8a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"repositoryURL": "https://github.com/bitmovin/bitmovin-analytics-collector-ios.git",
"state": {
"branch": null,
"revision": "3431fdbfb3098c0826b332ec52c869a30f20b947",
"version": "3.6.2"
"revision": "3feebb1db5f6bc2d3ad0b7241f3baea523e9ab9e",
"version": "3.6.0"
}
},
{
"package": "BitmovinPlayer",
"repositoryURL": "https://github.com/bitmovin/player-ios.git",
"state": {
"branch": "3.56.1",
"branch": null,
"revision": "31ed8a5fb931bd600c5e1ca6d19c17d77762b56b",
"version": null
"version": "3.56.1"
}
},
{
Expand Down
9 changes: 6 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ let package = Package(
// Declare dependencies

// BitmovinPlayer
.package(url: "https://github.com/bitmovin/player-ios.git",
revision: "3.56.1"),
.package(
name: "BitmovinPlayer",
url: "https://github.com/bitmovin/player-ios.git",
.exact("3.56.1")
),

// other dependencies
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
Expand All @@ -33,7 +36,7 @@ let package = Package(
.target(
name: "PlaybackSDK",
dependencies: [
.product(name: "BitmovinPlayer", package: "player-ios"),
.product(name: "BitmovinPlayer", package: "BitmovinPlayer"),
]
),
.testTarget(
Expand Down

0 comments on commit 2511c8a

Please sign in to comment.