pod 'RxGoogleMaps'
I am trying to install the above library without one of it's subspecs s.dependency 'GoogleMaps', '~> 3'
This is because due to the nature of our architecture (iOS modular architecture) I had to link GoogleMaps manually (because which is a static library)
Now when I try to install RxGoogleMaps , CocoaPods is trying to install GoogleMaps as a sub dependency and getting an error since it's already there and linked.
Is there a way to stop this sub dependency from installing?