Skip to content

Commit b312402

Browse files
authored
[google_maps_flutter] Bump minimum Flutter version and iOS deployment target (flutter#4333)
1 parent e1c011f commit b312402

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

packages/google_maps_flutter/google_maps_flutter/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.10
2+
3+
* Update minimum Flutter SDK to 2.5 and iOS deployment target to 9.0.
4+
15
## 2.0.9
26

37
* Fix Android `NullPointerException` caused by the `GoogleMapController` being disposed before `GoogleMap` was ready.

packages/google_maps_flutter/google_maps_flutter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This means that app will only be available for users that run Android SDK 20 or
4848

4949
### iOS
5050

51-
Specify your API key in the application delegate `ios/Runner/AppDelegate.m`:
51+
This plugin requires iOS 9.0 or higher. To set up, specify your API key in the application delegate `ios/Runner/AppDelegate.m`:
5252

5353
```objectivec
5454
#include "AppDelegate.h"

packages/google_maps_flutter/google_maps_flutter/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: Demonstrates how to use the google_maps_flutter plugin.
33
publish_to: none
44

55
environment:
6-
sdk: '>=2.12.0 <3.0.0'
7-
flutter: ">=1.22.0"
6+
sdk: ">=2.14.0 <3.0.0"
7+
flutter: ">=2.5.0"
88

99
dependencies:
1010
flutter:

packages/google_maps_flutter/google_maps_flutter/ios/google_maps_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Downloaded by pub (not CocoaPods).
1919
s.dependency 'Flutter'
2020
s.dependency 'GoogleMaps'
2121
s.static_framework = true
22-
s.platform = :ios, '8.0'
22+
s.platform = :ios, '9.0'
2323
# GoogleMaps does not support arm64 simulators.
2424
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
2525
end

packages/google_maps_flutter/google_maps_flutter/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: google_maps_flutter
22
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
33
repository: https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter/google_maps_flutter
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
5-
version: 2.0.9
5+
version: 2.0.10
66

77
environment:
8-
sdk: '>=2.12.0 <3.0.0'
9-
flutter: ">=2.0.0"
8+
sdk: ">=2.14.0 <3.0.0"
9+
flutter: ">=2.5.0"
1010

1111
flutter:
1212
plugin:

0 commit comments

Comments
 (0)