You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue when trying to upgrade to SDK version 8.4 from 7.4 in hope there would be performance improvements to marker rendering.
In my Capacitor app I have this Podfile:
// ...
target 'App' do
capacitor_pods
# Add your Pods here
# Add your Pods here
pod 'GoogleMaps', '~> 8.4' # Or use the latest version available
pod 'CapacitorFirebaseAnalytics/Analytics', :path => '../../node_modules/@capacitor-firebase/analytics'
end
I have modified the Capacitor plugin @capacitor/google-maps that depends on this SDK to also use GoogleMaps version 8.4:
// ...
target 'Plugin' do
capacitor_pods
pod 'GoogleMaps', '~> 8.4' # Or use the latest version available
# pod 'Google-Maps-iOS-Utils', '~> 4.2' # For clustering support
end
In the plugin Pods/GoogleMaps/Example/Podfile I see this, so my project is updated to version 8.4.0:
source 'https://github.com/CocoaPods/Specs.git'
target 'GoogleMapsSwiftXCFrameworkDemos' do
platform :ios, '14.0'
pod 'GoogleMaps', '= 8.4.0'
end
However, calling print("GMS SDK version: (GMSServices.sdkLongVersion())") on iOS installed app still returns: GMS SDK version: 7.4.0 (74.5) which raises some doubts that it's actually updated to 8.4 after all
Is this normal, or am I missing something?
The text was updated successfully, but these errors were encountered:
alexp25
added
triage me
I really want to be triaged.
type: bug
Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
labels
Jun 16, 2024
I encountered an issue when trying to upgrade to SDK version 8.4 from 7.4 in hope there would be performance improvements to marker rendering.
In my Capacitor app I have this
Podfile
:I have modified the Capacitor plugin
@capacitor/google-maps
that depends on this SDK to also use GoogleMaps version 8.4:.podspec:
In the plugin Pods/GoogleMaps/Example/Podfile I see this, so my project is updated to version 8.4.0:
However, calling print("GMS SDK version: (GMSServices.sdkLongVersion())") on iOS installed app still returns: GMS SDK version: 7.4.0 (74.5) which raises some doubts that it's actually updated to 8.4 after all
Is this normal, or am I missing something?
The text was updated successfully, but these errors were encountered: