无法构建活动方案
Failed to build active scheme
我的 SwiftUI
项目将不再构建。它告诉我 Failed to build active scheme
没有任何更多信息。
这是完整的存储库:
https://github.com/nathfreder/HackerNews/tree/master/HackerNews
更改后我注意到了这个问题
ForEach(0..<10) { _ in
NavigationButton(destination: Text("")) {
StoryRow()
}
}
到
ForEach(store.stories) { story in
NavigationButton(destination: Text("")) {
StoryRow(story: story)
}
}
如果您注意到,此项目出于某种原因包含 Firebase swift 包,这会导致预览构建失败。 Xcode 的报告导航器中的实际错误是“'GoogleUtilities/GULLoggerLevel.h' 找不到文件”。
从项目的 Swift Packages 部分删除 firebase 包后,错误消失了:
我的 SwiftUI
项目将不再构建。它告诉我 Failed to build active scheme
没有任何更多信息。
这是完整的存储库: https://github.com/nathfreder/HackerNews/tree/master/HackerNews
更改后我注意到了这个问题
ForEach(0..<10) { _ in
NavigationButton(destination: Text("")) {
StoryRow()
}
}
到
ForEach(store.stories) { story in
NavigationButton(destination: Text("")) {
StoryRow(story: story)
}
}
如果您注意到,此项目出于某种原因包含 Firebase swift 包,这会导致预览构建失败。 Xcode 的报告导航器中的实际错误是“'GoogleUtilities/GULLoggerLevel.h' 找不到文件”。
从项目的 Swift Packages 部分删除 firebase 包后,错误消失了: