From f014a4344e91f3a930172c3c19f11e7c0a75faa4 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Thu, 9 Nov 2023 19:18:36 +0100 Subject: [PATCH] feat(google-maps)!: Update iOS dependencies --- google-maps/CapacitorGoogleMaps.podspec | 4 ++-- google-maps/ios/Podfile | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/google-maps/CapacitorGoogleMaps.podspec b/google-maps/CapacitorGoogleMaps.podspec index f2d721a61..8e8880740 100644 --- a/google-maps/CapacitorGoogleMaps.podspec +++ b/google-maps/CapacitorGoogleMaps.podspec @@ -13,8 +13,8 @@ Pod::Spec.new do |s| s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}', 'google-maps/ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}' s.ios.deployment_target = '13.0' s.dependency 'Capacitor' - s.dependency 'GoogleMaps', '~> 7.3' - s.dependency 'Google-Maps-iOS-Utils', '~> 4.1' + s.dependency 'GoogleMaps', '~> 7.4' + s.dependency 'Google-Maps-iOS-Utils', '~> 4.2' s.swift_version = '5.1' s.static_framework = true end diff --git a/google-maps/ios/Podfile b/google-maps/ios/Podfile index e42042377..8ae77e95d 100644 --- a/google-maps/ios/Podfile +++ b/google-maps/ios/Podfile @@ -3,18 +3,18 @@ platform :ios, '13.0' def capacitor_pods # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! - pod 'Capacitor', :path => '../node_modules/@capacitor/ios' - pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios' + pod 'Capacitor', :path => '../../node_modules/@capacitor/ios' + pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios' end target 'Plugin' do capacitor_pods - pod 'GoogleMaps' - pod 'Google-Maps-iOS-Utils' + pod 'GoogleMaps', '~> 7.4' + pod 'Google-Maps-iOS-Utils', '~> 4.2' end target 'PluginTests' do capacitor_pods - pod 'GoogleMaps' - pod 'Google-Maps-iOS-Utils' + pod 'GoogleMaps', '~> 7.4' + pod 'Google-Maps-iOS-Utils', '~> 4.2' end