ポッド付きのスピーディなxcodeプロジェクトにGoogle Maps IOSユーティリティ(マーカークラスタリング用)を追加する際に問題があります。 私はpod install
を実行すると、それは次のエラーで失敗します。GoogleマップユーティリティIOSポッドエラー
The 'Pods-App' target has transitive dependencies that include static binaries: (/Users/warrick/Projects/orix/App/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework, /Users/warrick/Projects/orix/App/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMapsCore.framework, and /Users/warrick/Projects/orix/App/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework)
のGoogleマップは、すぐに私はそれが壊れるのユーティリティを追加すると正常に動作しますが、。
このエラーメッセージは何を意味し、どのように解決することができますか?ここで
は私Podfileです:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
workspace '../app'
target 'App' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'GoogleMaps'
pod 'Google-Maps-iOS-Utils'
# Firebase - used for notifications
pod 'Firebase/Core'
pod 'Firebase/Messaging'
target 'AppTests' do
inherit! :search_paths
# Pods for testing
end
end