Skip to content

Commit

Permalink
Adds app store connect Swift sdk dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
polpielladev committed Mar 17, 2024
1 parent fc75642 commit 937e441
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"pins" : [
{
"identity" : "appstoreconnect-swift-sdk",
"kind" : "remoteSourceControl",
"location" : "https://github.com/AvdLee/appstoreconnect-swift-sdk.git",
"state" : {
"revision" : "2fb0578789a559a72782149d175ea5cf4184751c",
"version" : "3.2.0"
}
},
{
"identity" : "swift-crypto",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-crypto.git",
"state" : {
"revision" : "60f13f60c4d093691934dc6cfdf5f508ada1f894",
"version" : "2.6.0"
}
},
{
"identity" : "urlqueryencoder",
"kind" : "remoteSourceControl",
"location" : "https://github.com/CreateAPI/URLQueryEncoder.git",
"state" : {
"revision" : "4ce950479707ea109f229d7230ec074a133b15d7",
"version" : "0.2.1"
}
}
],
"version" : 2
}
11 changes: 11 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,23 @@ let settings: [SwiftSetting] = [

let package = Package(
name: "XcodeCloudKit",
platforms: [
.iOS(.v14),
.macOS(.v11),
.tvOS(.v14)
],
products: [
.library(name: "XcodeCloudKit", targets: ["XcodeCloudKit"]),
],
dependencies: [
.package(url: "https://github.com/AvdLee/appstoreconnect-swift-sdk.git", exact: "3.2.0")
],
targets: [
.target(
name: "XcodeCloudKit",
dependencies: [
.product(name: "AppStoreConnect-Swift-SDK", package: "appstoreconnect-swift-sdk")
],
swiftSettings: settings
),
.testTarget(
Expand Down

0 comments on commit 937e441

Please sign in to comment.