我正在尝试使用Google Analytics(分析)建立一个快速的框架。我遵循了提供的说明this article。它可以在本地成功构建。但是,在运行pod spec lint
之后,我不断出错:没有这样的模块“ GoogleAnalytics”
我已经尝试过的内容
我认为也许我需要为远程创建module.modulemap,所以我添加了一些脚本来执行此操作,但是仍然遇到相同的错误:(
Pod::Spec.new do |s|
// neglect other info
s.source_files = "GAHelper", "GAHelper/**/*", "module.modulemap.dist"
s.preserve_paths = 'GAHelper/**/*'
s.xcconfig = { 'SWIFT_INCLUDE_PATHS' => '$(PODS_ROOT)/GAHelper' }
s.framework = "UIKit"
s.static_framework = true
s.dependency "GoogleAnalytics", "3.17.0"
s.prepare_command = <<-EOF
cp module.modulemap.dist Pods/Headers/Public/GoogleAnalytics/module.modulemap
cat <<-EOF > Pods/Headers/Public/GoogleAnalytics/module.modulemap
\EOF
EOF
end
如何使pod spec lint
成功识别GoogleAnalytics?