deps: Flutter, packages, and fix macos/Podfile.lock #319
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.
deps: Run
pod update sqlite3
in macos/This is necessary for
flutter run
to work on a macOS target,presumably since 5dbf1e6.
Similar to c5c0949 and 105727e for a previous upgrade.
The symptoms were just like those described in the latter commit.
deps: Upgrade Flutter to latest main, 3.16.0-11.0.pre.88
And update Flutter's supporting libraries to match.
deps: Upgrade packages within constraints (flutter pub upgrade)
Plus
flutter build ios --config-only
and
flutter build macos --config-only
.deps: Upgrade packages to latest, namely file_picker
This is the result of
flutter pub upgrade --major-versions
,followed by
flutter build ios --config-only
.(Plus
flutter build macos --config-only
, but it has noeffect, as file_picker doesn't appear in macos/Podfile.lock .)
Changelog:
https://pub.dev/packages/file_picker/changelog
The API changes don't affect our usage.