Skip to content

Commit 4da3e4f

Browse files
authored
chore(ios): update google maps sdks and raise min deployment to v15
1 parent 43f7625 commit 4da3e4f

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

example-app-spm/ios/App/App.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@
298298
CODE_SIGN_STYLE = Automatic;
299299
CURRENT_PROJECT_VERSION = 1;
300300
INFOPLIST_FILE = App/Info.plist;
301-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
301+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
302302
LD_RUNPATH_SEARCH_PATHS = (
303303
"$(inherited)",
304304
"@executable_path/Frameworks",
@@ -320,7 +320,7 @@
320320
CODE_SIGN_STYLE = Automatic;
321321
CURRENT_PROJECT_VERSION = 1;
322322
INFOPLIST_FILE = App/Info.plist;
323-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
323+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
324324
LD_RUNPATH_SEARCH_PATHS = (
325325
"$(inherited)",
326326
"@executable_path/Frameworks",

example-app-spm/ios/App/CapApp-SPM/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44
// DO NOT MODIFY THIS FILE - managed by Capacitor CLI commands
55
let package = Package(
66
name: "CapApp-SPM",
7-
platforms: [.iOS(.v14)],
7+
platforms: [.iOS(.v15)],
88
products: [
99
.library(
1010
name: "CapApp-SPM",

plugin/CapacitorGoogleMaps.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Pod::Spec.new do |s|
1111
s.author = package['author']
1212
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
1313
s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14-
s.ios.deployment_target = '14.0'
14+
s.ios.deployment_target = '15.0'
1515
s.dependency 'Capacitor'
16-
s.dependency 'GoogleMaps', '~> 8.4'
17-
s.dependency 'Google-Maps-iOS-Utils', '~> 5.0'
16+
s.dependency 'GoogleMaps', '~> 9.4'
17+
s.dependency 'Google-Maps-iOS-Utils', '6.1.0'
1818
s.swift_version = '5.1'
1919
s.static_framework = true
2020
end

plugin/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import PackageDescription
33

44
let package = Package(
55
name: "CapacitorGoogleMaps",
6-
platforms: [.iOS(.v14)],
6+
platforms: [.iOS(.v15)],
77
products: [
88
.library(
99
name: "CapacitorGoogleMaps",
1010
targets: ["CapacitorGoogleMapsPlugin"])
1111
],
1212
dependencies: [
1313
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0"),
14-
.package(url: "https://github.com/googlemaps/ios-maps-sdk.git", .upToNextMajor(from:"8.4.0")),
15-
.package(url: "https://github.com/googlemaps/google-maps-ios-utils.git", .upToNextMajor(from:"5.0.0"))
14+
.package(url: "https://github.com/googlemaps/ios-maps-sdk.git", .upToNextMajor(from:"9.4.0")),
15+
.package(url: "https://github.com/googlemaps/google-maps-ios-utils.git", .exact("6.1.0"))
1616
],
1717
targets: [
1818
.target(

plugin/e2e-tests/ios/App/App.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
298298
GCC_WARN_UNUSED_FUNCTION = YES;
299299
GCC_WARN_UNUSED_VARIABLE = YES;
300-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
300+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
301301
MTL_ENABLE_DEBUG_INFO = YES;
302302
ONLY_ACTIVE_ARCH = YES;
303303
SDKROOT = iphoneos;
@@ -348,7 +348,7 @@
348348
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
349349
GCC_WARN_UNUSED_FUNCTION = YES;
350350
GCC_WARN_UNUSED_VARIABLE = YES;
351-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
351+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
352352
MTL_ENABLE_DEBUG_INFO = NO;
353353
SDKROOT = iphoneos;
354354
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
@@ -364,7 +364,7 @@
364364
CODE_SIGN_STYLE = Automatic;
365365
DEVELOPMENT_TEAM = 9YN2HU59K8;
366366
INFOPLIST_FILE = App/Info.plist;
367-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
367+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
368368
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
369369
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
370370
PRODUCT_BUNDLE_IDENTIFIER = io.ionic.googlemaps;
@@ -383,7 +383,7 @@
383383
CODE_SIGN_STYLE = Automatic;
384384
DEVELOPMENT_TEAM = 9YN2HU59K8;
385385
INFOPLIST_FILE = App/Info.plist;
386-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
386+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
387387
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
388388
PRODUCT_BUNDLE_IDENTIFIER = io.ionic.googlemaps;
389389
PRODUCT_NAME = "$(TARGET_NAME)";

plugin/e2e-tests/ios/App/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '14.0'
1+
platform :ios, '15.0'
22
use_frameworks!
33

44
# workaround to avoid Xcode caching of Pods that requires

0 commit comments

Comments
 (0)