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.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)"
source
share