Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 44772b7

Browse files
authored
[google_sign_in] Bump minimum Flutter version and iOS deployment target (#4334)
1 parent a1829ba commit 44772b7

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

packages/google_sign_in/google_sign_in/CHANGELOG.md

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

37
* Add reAuthenticate option to signInSilently to allow re-authentication to be requested

packages/google_sign_in/google_sign_in/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Otherwise, you may encounter `APIException` errors.
2727

2828
### iOS integration
2929

30+
This plugin requires iOS 9.0 or higher.
31+
3032
1. [First register your application](https://firebase.google.com/docs/ios/setup).
3133
2. Make sure the file you download in step 1 is named
3234
`GoogleService-Info.plist`.

packages/google_sign_in/google_sign_in/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: Example of Google Sign-In plugin.
33
publish_to: none
44

55
environment:
6-
sdk: ">=2.12.0 <3.0.0"
7-
flutter: ">=1.12.13+hotfix.4"
6+
sdk: ">=2.14.0 <3.0.0"
7+
flutter: ">=2.5.0"
88

99
dependencies:
1010
flutter:

packages/google_sign_in/google_sign_in/ios/google_sign_in.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Enables Google Sign-In in Flutter apps.
1919
s.dependency 'GoogleSignIn', '~> 5.0'
2020
s.static_framework = true
2121

22-
s.platform = :ios, '8.0'
22+
s.platform = :ios, '9.0'
2323

2424
# GoogleSignIn ~> 5.0 does not support arm64 simulators.
2525
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }

packages/google_sign_in/google_sign_in/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ description: Flutter plugin for Google Sign-In, a secure authentication system
33
for signing in with a Google account on Android and iOS.
44
repository: https://github.com/flutter/plugins/tree/master/packages/google_sign_in/google_sign_in
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
6-
version: 5.1.0
6+
version: 5.1.1
77

88
environment:
9-
sdk: ">=2.12.0 <3.0.0"
10-
flutter: ">=2.0.0"
9+
sdk: ">=2.14.0 <3.0.0"
10+
flutter: ">=2.5.0"
1111

1212
flutter:
1313
plugin:

0 commit comments

Comments
 (0)