summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLSDKUpdateChecker.mm
diff options
context:
space:
mode:
authorJordan Kiley <jmkiley@users.noreply.github.com>2017-12-04 16:40:14 -0800
committerGitHub <noreply@github.com>2017-12-04 16:40:14 -0800
commit8f3cc3dbc4fb0f46f0e2eb00d0b644063c43a582 (patch)
treece40e3163668e2ac8835e43177c0cafe6afa1eb3 /platform/ios/src/MGLSDKUpdateChecker.mm
parentcb5dc2eed8e773e6064419f2d40c969b6ec22fdb (diff)
downloadqtlocation-mapboxgl-8f3cc3dbc4fb0f46f0e2eb00d0b644063c43a582.tar.gz
[ios, macos] Rename the iOS and macOS SDKs (#10610)
Diffstat (limited to 'platform/ios/src/MGLSDKUpdateChecker.mm')
-rw-r--r--platform/ios/src/MGLSDKUpdateChecker.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/src/MGLSDKUpdateChecker.mm b/platform/ios/src/MGLSDKUpdateChecker.mm
index ab4ef7be86..bb61e2b595 100644
--- a/platform/ios/src/MGLSDKUpdateChecker.mm
+++ b/platform/ios/src/MGLSDKUpdateChecker.mm
@@ -29,7 +29,7 @@
NSString *latestVersion = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
latestVersion = [latestVersion stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
if (![currentVersion isEqualToString:latestVersion]) {
- NSString *updateAvailable = [NSString stringWithFormat:NSLocalizedStringWithDefaultValue(@"SDK_UPDATE_AVAILABLE", nil, nil, @"Mapbox iOS SDK version %@ is now available:", @"Developer-only SDK update notification; {latest version, in format x.x.x}"), latestVersion];
+ NSString *updateAvailable = [NSString stringWithFormat:NSLocalizedStringWithDefaultValue(@"SDK_UPDATE_AVAILABLE", nil, nil, @"Mapbox Maps SDK for iOS version %@ is now available:", @"Developer-only SDK update notification; {latest version, in format x.x.x}"), latestVersion];
NSLog(@"%@ https://github.com/mapbox/mapbox-gl-native/releases/tag/ios-v%@", updateAvailable, latestVersion);
}
}] resume];