Skip to content

Commit c59b32c

Browse files
authored
[google_sign_in] Mark iOS arm64 simulators as unsupported (flutter#4208)
1 parent 9bca9e7 commit c59b32c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
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.0.7
2+
3+
* Mark iOS arm64 simulators as unsupported.
4+
15
## 5.0.6
26

37
* Remove references to the Android V1 embedding.

packages/google_sign_in/google_sign_in/ios/google_sign_in.podspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,7 @@ Enables Google Sign-In in Flutter apps.
2020
s.static_framework = true
2121

2222
s.platform = :ios, '8.0'
23-
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
23+
24+
# GoogleSignIn ~> 5.0 does not support arm64 simulators.
25+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
2426
end

packages/google_sign_in/google_sign_in/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.0.6
6+
version: 5.0.7
77

88
environment:
99
sdk: ">=2.12.0 <3.0.0"

0 commit comments

Comments
 (0)