Build Information
Failed to build DeclarationAccessibility, reference master (480bf4
), with Swift 6.0 for macOS (SPM) on 1 Jun 2025 07:57:03 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Orange-OpenSource/accessibility-statement-lib-ios.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Orange-OpenSource/accessibility-statement-lib-ios
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 480bf46 feat: include WebView support in details page (#21)(#22)
Cloned https://github.com/Orange-OpenSource/accessibility-statement-lib-ios.git
Revision (git rev-parse @):
480bf4629b951e459308379030f1ca0ce28a0987
SUCCESS checkout https://github.com/Orange-OpenSource/accessibility-statement-lib-ios.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/Orange-OpenSource/accessibility-statement-lib-ios.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Copying Localizable.strings
[0/5] Copying Info.plist
[3/5] Write sources
[4/5] Write swift-version-5BDAB9E9C0126B9D.txt
[6/15] Compiling DeclarationAccessibility Declaration.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/15] Compiling DeclarationAccessibility InformationView.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:20:27: error: 'View' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct InformationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
18 | // MARK: Body
19 |
20 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
21 | ScrollView {
22 | VStack(spacing: -20) {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:64:16: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
| `- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
65 | let subTitle: String
66 | let text: String?
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:68:24: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
66 | let text: String?
67 |
68 | public init(title: LocalizedStringKey, subTitle: String, text: String? = nil) {
| | `- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing initializer
69 | self.title = title
70 | self.subTitle = subTitle
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:74:27: error: 'View' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:95:20: error: 'View' is only available in macOS 10.15 or newer
90 | }
91 |
92 | struct WebViewPage: View {
| `- note: add @available attribute to enclosing struct
93 | var url: String
94 |
95 | var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
96 | EASEWebView(from: URL(string: url)!)
97 | .navigationTitle("Details")
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:104:31: error: 'View' is only available in macOS 10.15 or newer
101 | // MARK: Preview
102 |
103 | struct InformationView_Previews: PreviewProvider {
| `- note: add @available attribute to enclosing struct
104 | static var previews: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing static property
105 | InformationView(declarations: Declaration(
106 | auditDate: "Test Audit Date",
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:48:29: error: cannot find 'UIApplication' in scope
46 | Button(action: {
47 | if let url = URL(string: declarations.detailUrl) {
48 | UIApplication.shared.open(url)
| `- error: cannot find 'UIApplication' in scope
49 | }
50 | }) {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:75:9: error: 'VStack' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
| |- error: 'VStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
76 | Text(title, bundle: .module)
77 | .font(.title3)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:75:28: error: 'leading' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
| |- error: 'leading' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
76 | Text(title, bundle: .module)
77 | .font(.title3)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:76:13: error: 'Text' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
| |- error: 'Text' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
77 | .font(.title3)
78 | .bold()
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:76:13: error: 'init(_:tableName:bundle:comment:)' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
| |- error: 'init(_:tableName:bundle:comment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
77 | .font(.title3)
78 | .bold()
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:77:18: error: 'font' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
77 | .font(.title3)
| |- error: 'font' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
78 | .bold()
79 | .multilineTextAlignment(.leading)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:77:24: error: 'title3' is only available in macOS 11.0 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
77 | .font(.title3)
| |- error: 'title3' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
78 | .bold()
79 | .multilineTextAlignment(.leading)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:78:18: error: 'bold()' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
77 | .font(.title3)
78 | .bold()
| |- error: 'bold()' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | .multilineTextAlignment(.leading)
80 | .frame(maxWidth: .infinity, alignment: .leading)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:79:18: error: 'multilineTextAlignment' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
77 | .font(.title3)
78 | .bold()
79 | .multilineTextAlignment(.leading)
| |- error: 'multilineTextAlignment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
80 | .frame(maxWidth: .infinity, alignment: .leading)
81 | Text(subTitle)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:80:18: error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
78 | .bold()
79 | .multilineTextAlignment(.leading)
80 | .frame(maxWidth: .infinity, alignment: .leading)
| |- error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
81 | Text(subTitle)
82 | .font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:80:57: error: 'leading' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
78 | .bold()
79 | .multilineTextAlignment(.leading)
80 | .frame(maxWidth: .infinity, alignment: .leading)
| |- error: 'leading' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
81 | Text(subTitle)
82 | .font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:81:13: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
79 | .multilineTextAlignment(.leading)
80 | .frame(maxWidth: .infinity, alignment: .leading)
81 | Text(subTitle)
| |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
| `- note: add 'if #available' version check
82 | .font(.body)
83 | if let text = text {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:81:13: error: 'Text' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
79 | .multilineTextAlignment(.leading)
80 | .frame(maxWidth: .infinity, alignment: .leading)
81 | Text(subTitle)
| |- error: 'Text' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
82 | .font(.body)
83 | if let text = text {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:82:18: error: 'font' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
80 | .frame(maxWidth: .infinity, alignment: .leading)
81 | Text(subTitle)
82 | .font(.body)
| |- error: 'font' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
83 | if let text = text {
84 | Text(text)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:82:24: error: 'body' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
80 | .frame(maxWidth: .infinity, alignment: .leading)
81 | Text(subTitle)
82 | .font(.body)
| |- error: 'body' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
83 | if let text = text {
84 | Text(text)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:84:17: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
82 | .font(.body)
83 | if let text = text {
84 | Text(text)
| |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
| `- note: add 'if #available' version check
85 | .font(.body)
86 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:84:17: error: 'Text' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
82 | .font(.body)
83 | if let text = text {
84 | Text(text)
| |- error: 'Text' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
85 | .font(.body)
86 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:85:22: error: 'font' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
83 | if let text = text {
84 | Text(text)
85 | .font(.body)
| |- error: 'font' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
86 | }
87 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:85:28: error: 'body' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
83 | if let text = text {
84 | Text(text)
85 | .font(.body)
| |- error: 'body' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
86 | }
87 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:83:32: error: 'buildIf' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
81 | Text(subTitle)
82 | .font(.body)
83 | if let text = text {
| |- error: 'buildIf' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
84 | Text(text)
85 | .font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:83:32: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
81 | Text(subTitle)
82 | .font(.body)
83 | if let text = text {
| |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
| `- note: add 'if #available' version check
84 | Text(text)
85 | .font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:86:13: error: 'buildIf' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
84 | Text(text)
85 | .font(.body)
86 | }
| |- error: 'buildIf' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
87 | }
88 | .padding()
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:75:49: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
| |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
| `- note: add 'if #available' version check
76 | Text(title, bundle: .module)
77 | .font(.title3)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:75:49: warning: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
| |- warning: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
| `- note: add 'if #available' version check
76 | Text(title, bundle: .module)
77 | .font(.title3)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:88:10: error: 'padding' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
:
86 | }
87 | }
88 | .padding()
| |- error: 'padding' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
89 | }
90 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:97:14: error: value of type 'EASEWebView' has no member 'navigationTitle'
95 | var body: some View {
96 | EASEWebView(from: URL(string: url)!)
97 | .navigationTitle("Details")
| `- error: value of type 'EASEWebView' has no member 'navigationTitle'
98 | }
99 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:115:22: error: cannot convert value of type 'KeyPath<EnvironmentValues, Locale>' to expected argument type 'WritableKeyPath<EnvironmentValues, V>'
113 | identityName: "Test Identity Name"
114 | ), selectedTheme: .orange)
115 | .environment(\.locale,.init(identifier: "fr"))
| `- error: cannot convert value of type 'KeyPath<EnvironmentValues, Locale>' to expected argument type 'WritableKeyPath<EnvironmentValues, V>'
116 | }
117 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:115:32: error: cannot infer contextual base in reference to member 'init'
113 | identityName: "Test Identity Name"
114 | ), selectedTheme: .orange)
115 | .environment(\.locale,.init(identifier: "fr"))
| `- error: cannot infer contextual base in reference to member 'init'
116 | }
117 | }
[8/15] Emitting module DeclarationAccessibility
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/EASEWebView.swift:36:30: error: cannot find type 'Context' in scope
34 |
35 | @MainActor
36 | func makeUIView(context: Context) -> WKWebView {
| `- error: cannot find type 'Context' in scope
37 | WKWebView()
38 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/EASEWebView.swift:41:54: error: cannot find type 'Context' in scope
39 |
40 | @MainActor
41 | func updateUIView(_ webView: WKWebView, context: Context) {
| `- error: cannot find type 'Context' in scope
42 | switch source {
43 | case let .url(url):
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/EASEWebView.swift:12:21: error: cannot find type 'UIViewRepresentable' in scope
10 | import WebKit
11 |
12 | struct EASEWebView: UIViewRepresentable {
| `- error: cannot find type 'UIViewRepresentable' in scope
13 |
14 | enum ContentSource {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:16:33: error: 'Logger' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
15 |
16 | private static let logger = Logger()
| | `- error: 'Logger' is only available in macOS 11.0 or newer
| `- note: add @available attribute to enclosing static property
17 | private static let prefix: String = "[Accessibility Statement Library]"
18 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:22:23: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:33:29: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:44:33: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/CircularProgressView.swift:21:27: error: 'View' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | struct CircularProgressView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // =======================
:
19 | public var selectedTheme: Theme
20 |
21 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
22 | VStack {
23 | ZStack {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/CircularProgressView.swift:79:31: error: 'View' is only available in macOS 10.15 or newer
76 | }
77 |
78 | struct CircularProgressView_Previews: PreviewProvider {
| `- note: add @available attribute to enclosing struct
79 | static var previews: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing static property
80 | CircularProgressView(
81 | declarations: Declaration(
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:29:27: error: 'View' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
30 | ScrollView {
31 | VStack {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:20:27: error: 'View' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct InformationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
18 | // MARK: Body
19 |
20 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
21 | ScrollView {
22 | VStack(spacing: -20) {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:64:16: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
| `- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
65 | let subTitle: String
66 | let text: String?
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:68:24: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
66 | let text: String?
67 |
68 | public init(title: LocalizedStringKey, subTitle: String, text: String? = nil) {
| | `- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing initializer
69 | self.title = title
70 | self.subTitle = subTitle
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:74:27: error: 'View' is only available in macOS 10.15 or newer
61 | }
62 |
63 | public struct GroupView: View {
| `- note: add @available attribute to enclosing struct
64 | let title: LocalizedStringKey
65 | let subTitle: String
:
72 | }
73 |
74 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
75 | VStack(alignment: .leading, spacing: 5) {
76 | Text(title, bundle: .module)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:95:20: error: 'View' is only available in macOS 10.15 or newer
90 | }
91 |
92 | struct WebViewPage: View {
| `- note: add @available attribute to enclosing struct
93 | var url: String
94 |
95 | var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
96 | EASEWebView(from: URL(string: url)!)
97 | .navigationTitle("Details")
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/InformationView.swift:104:31: error: 'View' is only available in macOS 10.15 or newer
101 | // MARK: Preview
102 |
103 | struct InformationView_Previews: PreviewProvider {
| `- note: add @available attribute to enclosing struct
104 | static var previews: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing static property
105 | InformationView(declarations: Declaration(
106 | auditDate: "Test Audit Date",
[9/15] Compiling DeclarationAccessibility EASEBundle+extension.swift
[10/15] Compiling DeclarationAccessibility Theme.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:22:23: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:33:29: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:44:33: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:25:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
25 | return Color("Innovation", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
26 | case .orange:
27 | return Color("Orange", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:25:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
25 | return Color("Innovation", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
26 | case .orange:
27 | return Color("Orange", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:27:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
25 | return Color("Innovation", bundle: Bundle.ease)
26 | case .orange:
27 | return Color("Orange", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
28 | case .sosh:
29 | return Color("Sosh", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:27:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
25 | return Color("Innovation", bundle: Bundle.ease)
26 | case .orange:
27 | return Color("Orange", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
28 | case .sosh:
29 | return Color("Sosh", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:29:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
:
27 | return Color("Orange", bundle: Bundle.ease)
28 | case .sosh:
29 | return Color("Sosh", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:29:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
20 | case sosh
21 |
22 | public var color: Color {
| `- note: add @available attribute to enclosing property
23 | switch self {
24 | case .innovation:
:
27 | return Color("Orange", bundle: Bundle.ease)
28 | case .sosh:
29 | return Color("Sosh", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:36:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
36 | return Color("btn_innovation", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
37 | case .orange:
38 | return Color("btn_orange", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:36:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
36 | return Color("btn_innovation", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
37 | case .orange:
38 | return Color("btn_orange", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:38:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
36 | return Color("btn_innovation", bundle: Bundle.ease)
37 | case .orange:
38 | return Color("btn_orange", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
39 | case .sosh:
40 | return Color("btn_sosh", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:38:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
36 | return Color("btn_innovation", bundle: Bundle.ease)
37 | case .orange:
38 | return Color("btn_orange", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
39 | case .sosh:
40 | return Color("btn_sosh", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:40:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
:
38 | return Color("btn_orange", bundle: Bundle.ease)
39 | case .sosh:
40 | return Color("btn_sosh", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:40:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
31 | }
32 |
33 | public var buttonColor: Color {
| `- note: add @available attribute to enclosing property
34 | switch self {
35 | case .innovation:
:
38 | return Color("btn_orange", bundle: Bundle.ease)
39 | case .sosh:
40 | return Color("btn_sosh", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:47:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
47 | return Color("fdg_innovation", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
48 | case .orange:
49 | return Color("fdg_orange", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:47:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
47 | return Color("fdg_innovation", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
48 | case .orange:
49 | return Color("fdg_orange", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:49:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
47 | return Color("fdg_innovation", bundle: Bundle.ease)
48 | case .orange:
49 | return Color("fdg_orange", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
50 | case .sosh:
51 | return Color("fdg_sosh", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:49:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
47 | return Color("fdg_innovation", bundle: Bundle.ease)
48 | case .orange:
49 | return Color("fdg_orange", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
50 | case .sosh:
51 | return Color("fdg_sosh", bundle: Bundle.ease)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:51:20: error: 'Color' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
:
49 | return Color("fdg_orange", bundle: Bundle.ease)
50 | case .sosh:
51 | return Color("fdg_sosh", bundle: Bundle.ease)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
52 | }
53 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Theme.swift:51:20: error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
10 | import SwiftUI
11 |
12 | public enum Theme: String {
| `- note: add @available attribute to enclosing enum
13 |
14 | // ==================
:
42 | }
43 |
44 | public var foregroundColor: Color {
| `- note: add @available attribute to enclosing property
45 | switch self {
46 | case .innovation:
:
49 | return Color("fdg_orange", bundle: Bundle.ease)
50 | case .sosh:
51 | return Color("fdg_sosh", bundle: Bundle.ease)
| |- error: 'init(_:bundle:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
52 | }
53 | }
[11/15] Compiling DeclarationAccessibility CircularProgressView.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/CircularProgressView.swift:21:27: error: 'View' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | struct CircularProgressView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // =======================
:
19 | public var selectedTheme: Theme
20 |
21 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
22 | VStack {
23 | ZStack {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/CircularProgressView.swift:79:31: error: 'View' is only available in macOS 10.15 or newer
76 | }
77 |
78 | struct CircularProgressView_Previews: PreviewProvider {
| `- note: add @available attribute to enclosing struct
79 | static var previews: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing static property
80 | CircularProgressView(
81 | declarations: Declaration(
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/CircularProgressView.swift:28:44: error: cannot find 'UIColor' in scope
26 | .stroke(lineWidth: 15)
27 | .opacity(0.3)
28 | .foregroundColor(Color(UIColor.systemGray))
| `- error: cannot find 'UIColor' in scope
29 | .frame(width: circleSize, height: circleSize)
30 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/CircularProgressView.swift:87:22: error: cannot convert value of type 'KeyPath<EnvironmentValues, Locale>' to expected argument type 'WritableKeyPath<EnvironmentValues, V>'
85 | selectedTheme: .sosh
86 | )
87 | .environment(\.locale, .init(identifier: "fr"))
| `- error: cannot convert value of type 'KeyPath<EnvironmentValues, Locale>' to expected argument type 'WritableKeyPath<EnvironmentValues, V>'
88 | }
89 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/CircularProgressView.swift:87:33: error: cannot infer contextual base in reference to member 'init'
85 | selectedTheme: .sosh
86 | )
87 | .environment(\.locale, .init(identifier: "fr"))
| `- error: cannot infer contextual base in reference to member 'init'
88 | }
89 | }
[12/15] Compiling DeclarationAccessibility DeclarationDataParser.swift
[13/15] Compiling DeclarationAccessibility DeclarationView.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:29:27: error: 'View' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
30 | ScrollView {
31 | VStack {
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:30:9: error: 'ScrollView' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| `- note: add @available attribute to enclosing property
30 | ScrollView {
| |- error: 'ScrollView' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
31 | VStack {
32 | CircularProgressView(declarations: declarations, selectedTheme: selectedTheme)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:30:9: error: 'init(_:content:)' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| `- note: add @available attribute to enclosing property
30 | ScrollView {
| |- error: 'init(_:content:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
31 | VStack {
32 | CircularProgressView(declarations: declarations, selectedTheme: selectedTheme)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:31:13: error: 'VStack' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| `- note: add @available attribute to enclosing property
30 | ScrollView {
31 | VStack {
| |- error: 'VStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
32 | CircularProgressView(declarations: declarations, selectedTheme: selectedTheme)
33 | .frame(maxWidth: .infinity)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:33:22: error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| `- note: add @available attribute to enclosing property
30 | ScrollView {
31 | VStack {
32 | CircularProgressView(declarations: declarations, selectedTheme: selectedTheme)
33 | .frame(maxWidth: .infinity)
| |- error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
34 |
35 | InformationView(declarations: declarations, selectedTheme: selectedTheme)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:36:22: error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| `- note: add @available attribute to enclosing property
30 | ScrollView {
31 | VStack {
:
34 |
35 | InformationView(declarations: declarations, selectedTheme: selectedTheme)
36 | .frame(maxWidth: .infinity)
| |- error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
37 | }
38 | .padding(.top, 15)
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/View/DeclarationView.swift:38:14: error: 'padding' is only available in macOS 10.15 or newer
9 | import SwiftUI
10 |
11 | public struct DeclarationView: View {
| `- note: add @available attribute to enclosing struct
12 |
13 | // MARK: Properties
:
27 | }
28 |
29 | public var body: some View {
| `- note: add @available attribute to enclosing property
30 | ScrollView {
31 | VStack {
:
36 | .frame(maxWidth: .infinity)
37 | }
38 | .padding(.top, 15)
| |- error: 'padding' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
39 | }
40 | }
[14/15] Compiling DeclarationAccessibility EASEWebView.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/EASEWebView.swift:36:30: error: cannot find type 'Context' in scope
34 |
35 | @MainActor
36 | func makeUIView(context: Context) -> WKWebView {
| `- error: cannot find type 'Context' in scope
37 | WKWebView()
38 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/EASEWebView.swift:41:54: error: cannot find type 'Context' in scope
39 |
40 | @MainActor
41 | func updateUIView(_ webView: WKWebView, context: Context) {
| `- error: cannot find type 'Context' in scope
42 | switch source {
43 | case let .url(url):
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/EASEWebView.swift:12:21: error: cannot find type 'UIViewRepresentable' in scope
10 | import WebKit
11 |
12 | struct EASEWebView: UIViewRepresentable {
| `- error: cannot find type 'UIViewRepresentable' in scope
13 |
14 | enum ContentSource {
[15/15] Compiling DeclarationAccessibility Log.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:16:33: error: 'Logger' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
15 |
16 | private static let logger = Logger()
| | `- error: 'Logger' is only available in macOS 11.0 or newer
| `- note: add @available attribute to enclosing static property
17 | private static let prefix: String = "[Accessibility Statement Library]"
18 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:21:22: error: 'OSLogMessage' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
17 | private static let prefix: String = "[Accessibility Statement Library]"
18 |
19 | static func debug(_ message: String) {
| `- note: add @available attribute to enclosing static method
20 | #if DEBUG
21 | logger.debug("\(prefix) Debug: \(message)")
| |- error: 'OSLogMessage' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
22 | #endif
23 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:21:24: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
17 | private static let prefix: String = "[Accessibility Statement Library]"
18 |
19 | static func debug(_ message: String) {
| `- note: add @available attribute to enclosing static method
20 | #if DEBUG
21 | logger.debug("\(prefix) Debug: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
22 | #endif
23 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:21:41: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
17 | private static let prefix: String = "[Accessibility Statement Library]"
18 |
19 | static func debug(_ message: String) {
| `- note: add @available attribute to enclosing static method
20 | #if DEBUG
21 | logger.debug("\(prefix) Debug: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
22 | #endif
23 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:27:20: error: 'OSLogMessage' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
23 | }
24 |
25 | static func log(_ message: String) {
| `- note: add @available attribute to enclosing static method
26 | #if DEBUG
27 | logger.log("\(prefix) \(message)")
| |- error: 'OSLogMessage' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
28 | #endif
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:27:22: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
23 | }
24 |
25 | static func log(_ message: String) {
| `- note: add @available attribute to enclosing static method
26 | #if DEBUG
27 | logger.log("\(prefix) \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
28 | #endif
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:27:32: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
23 | }
24 |
25 | static func log(_ message: String) {
| `- note: add @available attribute to enclosing static method
26 | #if DEBUG
27 | logger.log("\(prefix) \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
28 | #endif
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:32:21: error: 'OSLogMessage' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
29 | }
30 |
31 | static func info(_ message: String) {
| `- note: add @available attribute to enclosing static method
32 | logger.info("\(prefix) Info: \(message)")
| |- error: 'OSLogMessage' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
33 | }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:32:23: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
29 | }
30 |
31 | static func info(_ message: String) {
| `- note: add @available attribute to enclosing static method
32 | logger.info("\(prefix) Info: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
33 | }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:32:39: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
29 | }
30 |
31 | static func info(_ message: String) {
| `- note: add @available attribute to enclosing static method
32 | logger.info("\(prefix) Info: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
33 | }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:36:24: error: 'OSLogMessage' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
33 | }
34 |
35 | static func warning(_ message: String) {
| `- note: add @available attribute to enclosing static method
36 | logger.warning("\(prefix) Warning: \(message)")
| |- error: 'OSLogMessage' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:36:26: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
33 | }
34 |
35 | static func warning(_ message: String) {
| `- note: add @available attribute to enclosing static method
36 | logger.warning("\(prefix) Warning: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:36:45: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
33 | }
34 |
35 | static func warning(_ message: String) {
| `- note: add @available attribute to enclosing static method
36 | logger.warning("\(prefix) Warning: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:40:22: error: 'OSLogMessage' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
37 | }
38 |
39 | static func error(_ message: String) {
| `- note: add @available attribute to enclosing static method
40 | logger.error("\(prefix) Error: \(message)")
| |- error: 'OSLogMessage' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:40:24: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
37 | }
38 |
39 | static func error(_ message: String) {
| `- note: add @available attribute to enclosing static method
40 | logger.error("\(prefix) Error: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
41 | }
42 | }
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Utils/Log.swift:40:41: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
10 | import os
11 |
12 | struct Log {
| `- note: add @available attribute to enclosing struct
13 |
14 | private init() {}
:
37 | }
38 |
39 | static func error(_ message: String) {
| `- note: add @available attribute to enclosing static method
40 | logger.error("\(prefix) Error: \(message)")
| |- error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
| `- note: add 'if #available' version check
41 | }
42 | }
[16/16] Compiling DeclarationAccessibility resource_bundle_accessor.swift
warning: 'spi-builder-workspace': Invalid Resource 'Resources/Assets.xcassets': File not found.
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/DeclarationAccessibility/Ressources/Assets.xcassets
BUILD FAILURE 6.0 macosSpm