fix: Update iOS deployment target to 16.0 and GoogleMaps dependency to 10.0 #546
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Update iOS deployment target to 16.0 and GoogleMaps SDK to 10.0
What
~> 9.0
to~> 10.0
in podspecWhy
This PR addresses the GoogleMaps SDK version compatibility raised in #545 where the community requested updating the GoogleMaps SDK dependency to v10.0.0.
Issues Resolved:
Version Conflict: GoogleMaps 10.0.0 requires iOS 16.0 minimum, but the project was configured for iOS 15.0, causing CocoaPods installation failures with the error:
Dependency Mismatch: The Package.swift was already using GoogleMaps 10.0.0, but the podspec was still referencing
~> 9.0
, creating inconsistency between Swift Package Manager and CocoaPods configurationsSample App Compatibility: Demo applications had mixed deployment targets (14.0, 15.0) that were incompatible with the new GoogleMaps SDK requirements
Files Changed
Google-Maps-iOS-Utils.podspec
- Updated iOS platform and GoogleMaps dependencyPodfile.template
- Updated iOS platform and GoogleMaps versionsamples/ObjCDemoApp/ObjCDemoApp.xcodeproj/project.pbxproj
- Updated deployment targetssamples/SwiftDemoApp/SwiftDemoApp.xcodeproj/project.pbxproj
- Updated deployment targetsTesting
pod install
runs successfully in sample appsFixes #545