Failed to add "GooglePlacePicker" to cocoapod fast frames

I wrote a custom structure in swift, and I want to use "GooglePlacePicker" as a dependency on the cocoapods specification of this structure.

The following is a development subsystem.

Pod::Spec.new do |s|
   s.name             = 'Framework'
   s.version          = '0.1.0'
   s.summary          = 'A short description of Framework.'
   # s.public_header_files = 'Pod/Classes/**/*.h'
   s.frameworks = 'UIKit'
   s.dependency 'Firebase/Messaging'
   s.dependency 'GooglePlacePicker'
end

whenever I try to install cocoapods in a sample application, I get an error

"The Pods-NFClient target has transitive dependencies that include static binaries: (* Pods / GooglePlacePicker / Frameworks / GooglePlacePicker.framework)"

+4
source share

Source: https://habr.com/ru/post/1688143/


All Articles