Transitive dependencies including static binaries using google map and clustering

My Pod file looks like this

# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'

target 'MyApp' do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for MyApp

    pod 'GoogleMaps'
    pod 'Alamofire', '~> 4.0’
    pod 'SDWebImage', '~>3.8'
    pod 'Applozic', '~>3.8'
    pod 'Google-Maps-iOS-Utils'
end

      

When I install pod with all this Stated frame it gives me this error

[!] Target "Pods-MyApp" has transitive dependencies that include static binaries: (/Users/Mad/Downloads/MyApp/Pods/GoogleMaps/Frameworks/GoogleMaps.framework)

Please help me.

+3


source to share


1 answer


You need to download the Utils repository locally and then import it into your xcode project. A step-by-step tutorial can be found here: Integrating with Swift Projects That Use 'use_frameworks!' in subfile



0


source







All Articles