Skip to content

Commit

Permalink
move back to old SwiftUI target in package.siwft
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaiMadlener committed Nov 18, 2024
1 parent 4a50b01 commit 771a074
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
name: "ResearchKit",
defaultLocalization: "en",
platforms: [
.iOS(.v18),
.iOS(.v17),
.visionOS(.v1)
],
products: [
Expand All @@ -41,22 +41,15 @@ let package = Package(
.target(
name: "ResearchKitSwiftUI",
dependencies: [
.target(name: "ResearchKit")
.target(name: "ResearchKit"),
.target(name: "ResearchKitUI"),
.target(name: "ResearchKitActiveTask", condition: .when(platforms: [.iOS]))
],
path: "ResearchKitSwiftUI"
swiftSettings: [
swiftConcurrency
],
plugins: [] + swiftLintPlugin()
)
// .target(
// name: "ResearchKitSwiftUI",
// dependencies: [
// .target(name: "ResearchKit"),
// .target(name: "ResearchKitUI"),
// .target(name: "ResearchKitActiveTask", condition: .when(platforms: [.iOS]))
// ],
// swiftSettings: [
// swiftConcurrency
// ],
// plugins: [] + swiftLintPlugin()
// )
]
)

Expand Down

0 comments on commit 771a074

Please sign in to comment.