Xcode 13 构建失败命令 COmpileSwiftSources 失败
Xcode 13 Build failed Command COmpileSwiftSources failed
我正在为我的 iOS 应用程序使用 Xcode 12.5.1,它具有 iOS 部署目标 iOS12 它工作正常
在我尝试在 Xcode 13 中打开这个项目后,我在一些库中遇到了多个错误,例如“ImagePicker” , "翠鸟", "FittedSheets"
错误:Command CompileSwiftSources failed with a nonzero exit code
我尝试 运行 pod update
但它并没有帮助我仍然出现同样的错误
我的 Podfile 看起来像这样:
# Uncomment the next line to define a global platform for your project
# platform :ios, '12.0'
target 'MyApp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for MyApp
pod 'Firebase/Messaging'
pod 'Firebase/Storage'
pod 'Firebase/Database'
pod 'Firebase/Firestore'
pod 'Firebase/Auth'
pod 'FittedSheets'
pod 'ImagePicker'
pod 'Lightbox'
pod 'Hue'
pod 'Kingfisher', '~> 5.0'
pod 'Firebase/Functions'
target 'MyAppTests' do
inherit! :search_paths
# Pods for testing
end
target 'MyAppUITests' do
inherit! :search_paths
# Pods for testing
end
end
我使用 iOS 12 作为 MyApp 的 iOS 部署目标,我尝试将其用于失败 Pods。
我尝试了各种解决方案,例如将所有 Pods 设置为 iOS12 作为 iOS 目标,但对我来说没有任何效果有人知道其他解决方案如何解决吗?
所以您似乎有一个名为“配置”的 class?你需要给它一个不同的名字,或者用一个命名空间来限定它,因为现在 UIButton 还有一个 class 叫做 Configuration ,所以有一个命名冲突。
我正在为我的 iOS 应用程序使用 Xcode 12.5.1,它具有 iOS 部署目标 iOS12 它工作正常
在我尝试在 Xcode 13 中打开这个项目后,我在一些库中遇到了多个错误,例如“ImagePicker” , "翠鸟", "FittedSheets"
错误:Command CompileSwiftSources failed with a nonzero exit code
我尝试 运行 pod update
但它并没有帮助我仍然出现同样的错误
我的 Podfile 看起来像这样:
# Uncomment the next line to define a global platform for your project
# platform :ios, '12.0'
target 'MyApp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for MyApp
pod 'Firebase/Messaging'
pod 'Firebase/Storage'
pod 'Firebase/Database'
pod 'Firebase/Firestore'
pod 'Firebase/Auth'
pod 'FittedSheets'
pod 'ImagePicker'
pod 'Lightbox'
pod 'Hue'
pod 'Kingfisher', '~> 5.0'
pod 'Firebase/Functions'
target 'MyAppTests' do
inherit! :search_paths
# Pods for testing
end
target 'MyAppUITests' do
inherit! :search_paths
# Pods for testing
end
end
我使用 iOS 12 作为 MyApp 的 iOS 部署目标,我尝试将其用于失败 Pods。
我尝试了各种解决方案,例如将所有 Pods 设置为 iOS12 作为 iOS 目标,但对我来说没有任何效果有人知道其他解决方案如何解决吗?
所以您似乎有一个名为“配置”的 class?你需要给它一个不同的名字,或者用一个命名空间来限定它,因为现在 UIButton 还有一个 class 叫做 Configuration ,所以有一个命名冲突。