Skip to content

Commit b564e7a

Browse files
fix: Update iOS deployment target to 16.0 and GoogleMaps dependency to 10.0 (#546)
1 parent fc07c5f commit b564e7a

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

Google-Maps-iOS-Utils.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
s.changelog = "https://github.com/googlemaps/google-maps-ios-utils/blob/main/CHANGELOG.md"
1717
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1818
s.authors = "Google Inc."
19-
s.platform = :ios, '15.0'
19+
s.platform = :ios, '16.0'
2020
s.source = { :git => "https://github.com/googlemaps/google-maps-ios-utils.git",
2121
:tag => "v#{s.version.to_s}" }
2222
s.source_files = "Sources/GoogleMapsUtilsObjC/include/*.{h,m}", "Sources/GoogleMapsUtils/**/*.{swift}"
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
2525
s.module_name = "GoogleMapsUtils"
2626
s.swift_version = '5.9'
2727

28-
s.dependency 'GoogleMaps', '~> 9.0'
28+
s.dependency 'GoogleMaps', '~> 10.0'
2929
s.static_framework = true
3030

3131
s.test_spec 'Tests' do |unit_tests|

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import PackageDescription
1919
let package = Package(
2020
name: "GoogleMapsUtils",
2121
platforms: [
22-
.iOS(.v15),
22+
.iOS(.v16),
2323
],
2424
products: [
2525
.library(
@@ -29,7 +29,7 @@ let package = Package(
2929
dependencies: [
3030
.package(
3131
url: "https://github.com/googlemaps/ios-maps-sdk",
32-
from: "9.4.0"),
32+
from: "10.0.0"),
3333
.package(
3434
url: "https://github.com/erikdoe/ocmock.git",
3535
revision: "fe1661a3efed11831a6452f4b1a0c5e6ddc08c3d"),

Podfile.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# [START maps_ios_utils_podfile_template]
22
source 'https://github.com/CocoaPods/Specs.git'
3-
platform :ios, '15.0'
3+
platform :ios, '16.0'
44

55
target 'YOUR_APPLICATION_TARGET_NAME_HERE' do
66
use_frameworks!
7-
pod 'GoogleMaps', '9.0.0'
7+
pod 'GoogleMaps', '10.0.0'
88
pod 'Google-Maps-iOS-Utils', '6.1.0' # x-release-please-version
99
end
1010
# [END maps_ios_utils_podfile_template]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ range of applications using the [Google Maps SDK for iOS][sdk].
6969
use_frameworks!
7070

7171
target 'TARGET_NAME' do
72-
pod 'GoogleMaps', '9.4.0'
72+
pod 'GoogleMaps', '10.0.0'
7373
pod 'Google-Maps-iOS-Utils', '6.1.0' # x-release-please-version
7474
end
7575
```

samples/ObjCDemoApp/ObjCDemoApp.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
280280
GCC_WARN_UNUSED_FUNCTION = YES;
281281
GCC_WARN_UNUSED_VARIABLE = YES;
282-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
282+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
283283
MTL_ENABLE_DEBUG_INFO = YES;
284284
ONLY_ACTIVE_ARCH = YES;
285285
SDKROOT = iphoneos;
@@ -317,7 +317,7 @@
317317
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
318318
GCC_WARN_UNUSED_FUNCTION = YES;
319319
GCC_WARN_UNUSED_VARIABLE = YES;
320-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
320+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
321321
MTL_ENABLE_DEBUG_INFO = NO;
322322
SDKROOT = iphoneos;
323323
TARGETED_DEVICE_FAMILY = "1,2";
@@ -332,7 +332,7 @@
332332
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
333333
CODE_SIGN_IDENTITY = "iPhone Developer";
334334
INFOPLIST_FILE = ObjCDemoApp/Info.plist;
335-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
335+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
336336
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
337337
PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils.DemoApp;
338338
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -346,7 +346,7 @@
346346
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
347347
CODE_SIGN_IDENTITY = "iPhone Developer";
348348
INFOPLIST_FILE = ObjCDemoApp/Info.plist;
349-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
349+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
350350
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
351351
PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils.DemoApp;
352352
PRODUCT_NAME = "$(TARGET_NAME)";

samples/ObjCDemoApp/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
source 'https://cdn.cocoapods.org/'
2-
platform :ios, '15.0'
2+
platform :ios, '16.0'
33

44
target 'ObjCDemoApp' do
55
use_frameworks!
6-
pod 'GoogleMaps', '9.4.0'
6+
pod 'GoogleMaps', '10.0.0'
77
pod 'Google-Maps-iOS-Utils', :path => '../..'
88
end

samples/SwiftDemoApp/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
platform :ios, '15.0'
1+
platform :ios, '16.0'
22

33
target 'SwiftDemoApp' do
44
use_frameworks!
5-
pod 'GoogleMaps', '9.4.0'
5+
pod 'GoogleMaps', '10.0.0'
66
pod 'Google-Maps-iOS-Utils', :path => '../..', :testspecs => ['Tests']
77
end

samples/SwiftDemoApp/SwiftDemoApp.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
304304
GCC_WARN_UNUSED_FUNCTION = YES;
305305
GCC_WARN_UNUSED_VARIABLE = YES;
306-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
306+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
307307
MTL_ENABLE_DEBUG_INFO = YES;
308308
ONLY_ACTIVE_ARCH = YES;
309309
SDKROOT = iphoneos;
@@ -342,7 +342,7 @@
342342
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
343343
GCC_WARN_UNUSED_FUNCTION = YES;
344344
GCC_WARN_UNUSED_VARIABLE = YES;
345-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
345+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
346346
MTL_ENABLE_DEBUG_INFO = NO;
347347
SDKROOT = iphoneos;
348348
SWIFT_COMPILATION_MODE = wholemodule;
@@ -360,7 +360,7 @@
360360
CODE_SIGN_STYLE = Manual;
361361
DEVELOPMENT_TEAM = "";
362362
INFOPLIST_FILE = SwiftDemoApp/Info.plist;
363-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
363+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
364364
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
365365
PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils.DemoApp;
366366
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -379,7 +379,7 @@
379379
CODE_SIGN_STYLE = Manual;
380380
DEVELOPMENT_TEAM = "";
381381
INFOPLIST_FILE = SwiftDemoApp/Info.plist;
382-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
382+
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
383383
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
384384
PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils.DemoApp;
385385
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)