Skip to content

Commit fc07c5f

Browse files
chore: Update Google Maps version, minimum iOS deployment version, & attributionID addition (#542)
* chore: Update Google Maps version, minimum iOS deployment version, & attribution ID addition * chore: Update G-maps version to 9.4.0 * chore: Update attribution ID text.
1 parent bfb8c49 commit fc07c5f

File tree

9 files changed

+12
-10
lines changed

9 files changed

+12
-10
lines changed

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let package = Package(
2929
dependencies: [
3030
.package(
3131
url: "https://github.com/googlemaps/ios-maps-sdk",
32-
from: "9.0.0"),
32+
from: "9.4.0"),
3333
.package(
3434
url: "https://github.com/erikdoe/ocmock.git",
3535
revision: "fe1661a3efed11831a6452f4b1a0c5e6ddc08c3d"),

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.0.0'
72+
pod 'GoogleMaps', '9.4.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 = 14.0;
335+
IPHONEOS_DEPLOYMENT_TARGET = 15.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 = 14.0;
349+
IPHONEOS_DEPLOYMENT_TARGET = 15.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/ObjCDemoApp/AppDelegate.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ @implementation AppDelegate
2525
- (BOOL)application:(UIApplication *)application
2626
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
2727
[GMSServices provideAPIKey:kMapsAPIKey];
28+
[GMSServices addInternalUsageAttributionID:@"gmp_git_iosmapsutils_v6.2.0"];
2829
return YES;
2930
}
3031

samples/ObjCDemoApp/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ platform :ios, '15.0'
33

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

samples/SwiftDemoApp/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ platform :ios, '15.0'
22

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

samples/SwiftDemoApp/SwiftDemoApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
CODE_SIGN_STYLE = Manual;
361361
DEVELOPMENT_TEAM = "";
362362
INFOPLIST_FILE = SwiftDemoApp/Info.plist;
363-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
363+
IPHONEOS_DEPLOYMENT_TARGET = 15.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 = 14.0;
382+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
383383
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
384384
PRODUCT_BUNDLE_IDENTIFIER = com.google.gmsutils.DemoApp;
385385
PRODUCT_NAME = "$(TARGET_NAME)";

samples/SwiftDemoApp/SwiftDemoApp/AppDelegate.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
2929
fatalError("Please provide an API Key using mapsAPIKey")
3030
}
3131
GMSServices.provideAPIKey(mapsAPIKey)
32+
GMSServices.addInternalUsageAttributionID("gmp_git_iosmapsutils_v6.2.0")
3233
let masterViewController = MasterViewController()
3334
let navigationController = UINavigationController(rootViewController: masterViewController)
3435
window?.rootViewController = navigationController

0 commit comments

Comments
 (0)