This repository has been archived by the owner on Jun 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
[google_sign_in_dart] Null safety migration #29
Open
GroovinChip
wants to merge
18
commits into
long1eu:develop
Choose a base branch
from
GroovinChip:null_safety
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
93c4ca1
Fixed wrong assignment of _tokenExpiry to "token"
Jonas-Sander 9ef187d
Merge pull request #9 from JSANL/patch-1
long1eu 43791cf
Merge pull request #12 from fluttercommunity/develop
long1eu 8a0ef6f
Merge branch 'release/refactor-plugins'
long1eu 005e0cf
Merge remote-tracking branch 'origin/master'
long1eu ba63df9
Upgrade locked packages
GroovinChip b01882b
Add SDK lower bound constraint to example pubspec.yaml
GroovinChip 5c5e736
Update packages: html_unescape, meta
GroovinChip 0a4e26a
Update packages: crypto
GroovinChip c4fec06
Update packages: shared_preferences/macos/linux
GroovinChip f7803a4
Update http and google sign in packages
GroovinChip 9bff537
Migrate deprecated buttons
GroovinChip 831349a
Update pedantic
GroovinChip 7384000
Optimize imports
GroovinChip 86b9a60
Regen Podfile, test run on macOS
GroovinChip 7f9d8b9
Upgrade packages to latest resolvable null-safe versions
GroovinChip f17333a
Migrate to null safety
GroovinChip 14c1068
Update README.md
GroovinChip File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,28 @@ | ||
PODS: | ||
- FlutterMacOS (1.0.0) | ||
- shared_preferences (0.0.1) | ||
- shared_preferences_macos (0.0.1): | ||
- FlutterMacOS | ||
- url_launcher (0.0.1) | ||
- url_launcher_macos (0.0.1): | ||
- FlutterMacOS | ||
|
||
DEPENDENCIES: | ||
- FlutterMacOS (from `Flutter/ephemeral/.symlinks/flutter/darwin-x64`) | ||
- shared_preferences (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences/macos`) | ||
- FlutterMacOS (from `Flutter/ephemeral`) | ||
- shared_preferences_macos (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_macos/macos`) | ||
- url_launcher (from `Flutter/ephemeral/.symlinks/plugins/url_launcher/macos`) | ||
- url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) | ||
|
||
EXTERNAL SOURCES: | ||
FlutterMacOS: | ||
:path: Flutter/ephemeral/.symlinks/flutter/darwin-x64 | ||
shared_preferences: | ||
:path: Flutter/ephemeral/.symlinks/plugins/shared_preferences/macos | ||
:path: Flutter/ephemeral | ||
shared_preferences_macos: | ||
:path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_macos/macos | ||
url_launcher: | ||
:path: Flutter/ephemeral/.symlinks/plugins/url_launcher/macos | ||
url_launcher_macos: | ||
:path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos | ||
|
||
SPEC CHECKSUMS: | ||
FlutterMacOS: 15bea8a44d2fa024068daa0140371c020b4b6ff9 | ||
shared_preferences: 9fec34d1bd906196a4da48fcf6c3ad521cc00b8d | ||
shared_preferences_macos: 5e5c2839894accb56b7d23328905b757f2bafaf6 | ||
url_launcher: af78307ef9bafff91273b34f1c6c0c86a0004fd7 | ||
url_launcher_macos: 76867a28e24e0b6b98bfd65f157b64108e6d477a | ||
FlutterMacOS: 57701585bf7de1b3fc2bb61f6378d73bbdea8424 | ||
shared_preferences_macos: 480ce071d0666e37cef23fe6c702293a3d21799e | ||
url_launcher_macos: 45af3d61de06997666568a7149c1be98b41c95d4 | ||
|
||
PODFILE CHECKSUM: d8ba9b3e9e93c62c74a660b46c6fcb09f03991a7 | ||
PODFILE CHECKSUM: 6eac6b3292e5142cfc23bdeb71848a40ec51c14c | ||
|
||
COCOAPODS: 1.9.3 | ||
COCOAPODS: 1.10.1 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good