Build Information
Failed to build Notus, reference 1.0.0 (c3e836), with Swift 6.3 for Android on 11 Apr 2026 07:15:53 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cremo-music/notus.git
Reference: 1.0.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/cremo-music/notus
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at c3e8363 Notus is born! Please give him a warm welcome.
Cloned https://github.com/cremo-music/notus.git
Revision (git rev-parse @):
c3e8363647a8ed5f287a17aaf95e6dadb3edf3c8
SUCCESS checkout https://github.com/cremo-music/notus.git at 1.0.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/cremo-music/notus.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--4F562202D5529B1.txt
[3/33] Emitting module Notus
[4/37] Compiling Notus MusicSequenceBuilder.swift
[5/37] Compiling Notus MusicToMidi.swift
[6/37] Compiling Notus Validaters.swift
[7/37] Compiling Notus MidiPlayer.swift
[8/37] Compiling Notus DrumSolo.swift
[9/37] Compiling Notus FrereJacques.swift
[10/37] Compiling Notus James.swift
[11/37] Compiling Notus LillePeterEdderkop.swift
[12/37] Compiling Notus Pitch.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Players/FancyPlayer.swift:165:39: error: cannot convert value of type 'Float' to expected argument type 'Double'
163 | {
164 | let fromVol = events[0].vol
165 | let toVol_ = round(Float(fromVol) * factor)
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
166 | let toVol = UInt8(max(0, min(toVol_, 127)))
167 |
[13/37] Compiling Notus DefaultPlayer.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Players/FancyPlayer.swift:165:39: error: cannot convert value of type 'Float' to expected argument type 'Double'
163 | {
164 | let fromVol = events[0].vol
165 | let toVol_ = round(Float(fromVol) * factor)
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
166 | let toVol = UInt8(max(0, min(toVol_, 127)))
167 |
[14/37] Compiling Notus FancyPlayer.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Players/FancyPlayer.swift:165:39: error: cannot convert value of type 'Float' to expected argument type 'Double'
163 | {
164 | let fromVol = events[0].vol
165 | let toVol_ = round(Float(fromVol) * factor)
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
166 | let toVol = UInt8(max(0, min(toVol_, 127)))
167 |
[15/37] Compiling Notus UserPatchMap.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Players/FancyPlayer.swift:165:39: error: cannot convert value of type 'Float' to expected argument type 'Double'
163 | {
164 | let fromVol = events[0].vol
165 | let toVol_ = round(Float(fromVol) * factor)
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
166 | let toVol = UInt8(max(0, min(toVol_, 127)))
167 |
[16/37] Compiling Notus Duration.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[17/37] Compiling Notus Event.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[18/37] Compiling Notus MusicToPerformance.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[19/37] Compiling Notus Performance.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[20/37] Compiling Notus Triol.swift
[21/37] Compiling Notus MusicNotation.swift
[22/37] Compiling Notus MidiToMusic.swift
[23/37] Compiling Notus MidiToNotusBuilders.swift
[24/37] Compiling Notus CanineMain.swift
[25/37] Compiling Notus ChordsAndBass.swift
[26/37] Compiling Notus Solo.swift
[27/37] Compiling Notus SoloChordsAndBass.swift
[28/37] Compiling Notus ThemeChordsAndBass.swift
[29/37] Compiling Notus Channel.swift
[30/37] Compiling Notus Instrument.swift
[31/37] Compiling Notus MusicNotationSimpleTypes.swift
[32/37] Compiling Notus MusicUtils.swift
[33/37] Compiling Notus Percussion.swift
[34/37] Compiling Notus ThemeMel.swift
[35/37] Compiling Notus ThemeSoloInterlude.swift
[36/37] Compiling Notus Chameleon.swift
[37/37] Compiling Notus Counterpoint.swift
BUILD FAILURE 6.3 android