Build Information
Failed to build Aperture, reference main (85e924), with Swift 6.1 for macOS (SPM) on 1 Jan 2026 19:20:23 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:23: error: expected identifier after '.' expression
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: expected identifier after '.' expression
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:23: error: expected ':' after 'case'
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: expected ':' after 'case'
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:23: error: expected expression
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: expected expression
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:23: error: expected identifier after '.' expression
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: expected identifier after '.' expression
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:23: error: expected ':' after 'case'
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: expected ':' after 'case'
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:23: error: expected expression
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: expected expression
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:23: error: expected identifier after '.' expression
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: expected identifier after '.' expression
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:23: error: expected ':' after 'case'
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: expected ':' after 'case'
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:23: error: expected expression
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: expected expression
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:23: error: expected identifier after '.' expression
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: expected identifier after '.' expression
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:23: error: expected ':' after 'case'
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: expected ':' after 'case'
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:23: error: expected expression
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: expected expression
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:23: error: expected identifier after '.' expression
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: expected identifier after '.' expression
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:23: error: expected ':' after 'case'
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: expected ':' after 'case'
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:23: error: expected expression
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: expected expression
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:23: error: expected identifier after '.' expression
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: expected identifier after '.' expression
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:23: error: expected ':' after 'case'
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: expected ':' after 'case'
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:23: error: expected expression
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: expected expression
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:37: error: expected identifier after '.' expression
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: expected identifier after '.' expression
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
[41/55] Compiling Aperture PhotoCaptureDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[42/55] Compiling Aperture PhotoCaptureOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[43/55] Compiling Aperture PhotoCaptureService.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[44/55] Compiling Aperture PhotoFileDataRepresentationCustomizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[45/55] Compiling Aperture AnyEquatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[46/55] Compiling Aperture ValueObservation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[47/55] Compiling Aperture CameraFlipButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[48/55] Compiling Aperture CameraShutterButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[49/55] Compiling Aperture CameraZoomButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[50/55] Compiling Aperture CameraZoomReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected identifier after '.' expression
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: consecutive declarations on a line must be separated by ';'
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
9 |
10 | /// A configuration instance for photo capturing.
11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
| `- note: in declaration of 'PhotoCaptureConfiguration'
12 | /// A boolean value indicating whether to capture a live photo.
13 | public var capturesLivePhoto: Bool = false
:
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: expected declaration
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected identifier after '.' expression
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected ',' separator
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: expected parameter name followed by ':'
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected identifier in enum 'case' declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:13: error: consecutive declarations on a line must be separated by ';'
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: consecutive declarations on a line must be separated by ';'
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: expected declaration
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected identifier in enum 'case' declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:13: error: consecutive declarations on a line must be separated by ';'
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: consecutive declarations on a line must be separated by ';'
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: expected declaration
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected identifier in enum 'case' declaration
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:13: error: consecutive declarations on a line must be separated by ';'
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: consecutive declarations on a line must be separated by ';'
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 | /// satisfy the requested resolution, but the final output may differ depending on device
112 | /// capabilities and capture conditions.
113 | public enum Resolution: Sendable, Hashable, CustomStringConvertible {
| `- note: in declaration of 'Resolution'
114 | /// Prefers `48MP` photo delivery.
115 | ///
:
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: expected declaration
128 |
129 | public var description: String {
[51/55] Compiling Aperture CameraViewFinder.flip.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
[52/55] Compiling Aperture CameraViewFinder.focus.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
[53/55] Compiling Aperture CameraViewFinder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
[54/55] Compiling Aperture CameraViewFinder.zoom.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
[55/55] Compiling Aperture _FocusTargetBoundingBox.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:54: error: 'm' is not a valid digit in integer literal
39 | /// - SeeAlso: ``PhotoCaptureService/options``
40 | /// - SeeAlso: ``PhotoCaptureOptions``
41 | public var preferredResolution: Resolution = .`12mp`
| `- error: 'm' is not a valid digit in integer literal
42 | /// A settings that indicates how to prioritize photo quality against photo delivery speed.
43 | public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:38: error: 'm' is not a valid digit in integer literal
46 | public init(
47 | capturesLivePhoto: Bool = false,
48 | resolution: Resolution = .`12mp`,
| `- error: 'm' is not a valid digit in integer literal
49 | dataFormat: DataFormat = .heif,
50 | qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:17: error: 'm' is not a valid digit in integer literal
115 | ///
116 | /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 | case `48mp`
| `- error: 'm' is not a valid digit in integer literal
118 | /// Prefers `24MP` photo delivery.
119 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:17: error: 'm' is not a valid digit in integer literal
123 | ///
124 | /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 | case `24mp`
| `- error: 'm' is not a valid digit in integer literal
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:17: error: 'm' is not a valid digit in integer literal
125 | case `24mp`
126 | /// Prefers `12MP` photo delivery.
127 | case `12mp`
| `- error: 'm' is not a valid digit in integer literal
128 |
129 | public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:26: error: 'm' is not a valid digit in integer literal
129 | public var description: String {
130 | switch self {
131 | case .`48mp`: "48MP"
| `- error: 'm' is not a valid digit in integer literal
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:26: error: 'm' is not a valid digit in integer literal
130 | switch self {
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
| `- error: 'm' is not a valid digit in integer literal
133 | case .`12mp`: "12MP"
134 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:26: error: 'm' is not a valid digit in integer literal
131 | case .`48mp`: "48MP"
132 | case .`24mp`: "24MP"
133 | case .`12mp`: "12MP"
| `- error: 'm' is not a valid digit in integer literal
134 | }
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:26: error: 'm' is not a valid digit in integer literal
136 | var _minimumPixelCount: Int32 {
137 | switch self {
138 | case .`48mp`: 48_000_000
| `- error: 'm' is not a valid digit in integer literal
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:26: error: 'm' is not a valid digit in integer literal
137 | switch self {
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
| `- error: 'm' is not a valid digit in integer literal
140 | case .`12mp`: 12_000_000
141 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:26: error: 'm' is not a valid digit in integer literal
138 | case .`48mp`: 48_000_000
139 | case .`24mp`: 24_000_000
140 | case .`12mp`: 12_000_000
| `- error: 'm' is not a valid digit in integer literal
141 | }
142 | }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:40: error: 'm' is not a valid digit in integer literal
150 | public func configuredFor24MPPhotoCapture() -> Self {
151 | var copy = self
152 | copy.preferredResolution = .`24mp`
| `- error: 'm' is not a valid digit in integer literal
153 | copy.qualityPrioritization = .quality
154 | return copy
BUILD FAILURE 6.1 macosSpm