我正在尝试用我的使用Cocoapods的xcode应用程序构建Frank。
设置(frank setup
)没问题。
设置完毕后我运行了frank build
。我收到错误。经过一些研究后我跑了:
frank build --workspace my_app.xcworkspace/ --scheme my_app
结果是:
** BUILD FAILED **
The following build commands failed:
Check dependencies
Check dependencies
Check dependencies
Check dependencies
经过另一项研究,我试图指定架构。所以我尝试使用以下方法构建应用程序:
frank build --workspace my_app.xcworkspace/ --scheme my_app --arch armv7s
我尝试过架构armv7
,armv7s
和arm64
。结果总是这样(有时Alamofire和其他pod的错误):
** BUILD FAILED **
The following build commands failed:
CompileSwiftSources normal armv7s com.apple.xcode.tools.swift.compiler
CompileSwift normal armv7s /path/Pods/Kingfisher/Kingfisher/ImageCache.swift
CompileSwift normal armv7s /path/Pods/Kingfisher/Kingfisher/ImageDownloader.swift
CompileSwift normal armv7s /path/Pods/Kingfisher/Kingfisher/ImageTransition.swift
CompileSwift normal armv7s /path/Pods/Kingfisher/Kingfisher/KingfisherManager.swift
(5 failures)
经过另一项研究后,我尝试添加包含pod frankify.xcconfig
#include "path/Pods/Target Support Files/Pods/Pods.debug.xcconfig"
什么都解决了。
有人知道我做错了什么吗?我被卡住了。