Currently, podfile is failing to install Google-Maps-iOS-Utils as it has some references to static files,
I worked around it by disabling the pre-install check as below,
pre_install do |installer|
def installer.verify_no_static_framework_transitive_dependencies; end
end
pod 'Google-Maps-iOS-Utils', '~> 1.0'
Now, whenever I try to reference any headers within the Utils library it throws an error saying,
JS ERROR ReferenceError: Can't find variable: GMUCluster
Does that mean we can't use it until Google releases their Utils-Library without references to static files?
Thanks