Skip to content

Commit

Permalink
Upgrade ResearchKit to resolve issues with C++ interoperability (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Supereg authored Jan 25, 2024
1 parent 7dc09f7 commit ea4d969
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Example/ExampleApp/JSON Views/JSONView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ struct JSONView: View {
Image(systemName: "x.circle")
.font(.system(size: 80))
.foregroundColor(.red)
.accessibilityHidden(true)
Text("JSON_ERROR_MESSAGE")
}
}
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.7
// swift-tools-version:5.9

//
// This source file is part of the ResearchKitOnFHIR open source project
Expand All @@ -14,14 +14,14 @@ import PackageDescription
let package = Package(
name: "ResearchKitOnFHIR",
platforms: [
.iOS(.v11)
.iOS(.v12)
],
products: [
.library(name: "ResearchKitOnFHIR", targets: ["ResearchKitOnFHIR"]),
.library(name: "FHIRQuestionnaires", targets: ["FHIRQuestionnaires"])
],
dependencies: [
.package(url: "https://github.com/StanfordBDHG/ResearchKit.git", .upToNextMinor(from: "2.2.9")),
.package(url: "https://github.com/StanfordBDHG/ResearchKit.git", .upToNextMinor(from: "2.2.21")),
.package(url: "https://github.com/apple/FHIRModels.git", .upToNextMinor(from: "0.5.0"))
],
targets: [
Expand Down

0 comments on commit ea4d969

Please sign in to comment.