Skip to content

Commit

Permalink
Update to flutter 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbengtsson committed Feb 17, 2024
1 parent a8d4621 commit 9b91f3a
Show file tree
Hide file tree
Showing 12 changed files with 92 additions and 66 deletions.
2 changes: 1 addition & 1 deletion ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>11.0</string>
<string>12.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '11.0'
platform :ios, '12.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down
14 changes: 7 additions & 7 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ PODS:
- Flutter
- receive_sharing_intent (0.0.1):
- Flutter
- SDWebImage (5.16.0):
- SDWebImage/Core (= 5.16.0)
- SDWebImage/Core (5.16.0)
- SDWebImage (5.18.11):
- SDWebImage/Core (= 5.18.11)
- SDWebImage/Core (5.18.11)
- Sentry/HybridSDK (8.7.3):
- SentryPrivate (= 8.7.3)
- sentry_flutter (0.0.1):
Expand Down Expand Up @@ -138,15 +138,15 @@ SPEC CHECKSUMS:
DKImagePickerController: b512c28220a2b8ac7419f21c491fc8534b7601ac
DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179
file_picker: ce3938a0df3cc1ef404671531facef740d03f920
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
flutter_webrtc: 02c023207f972145a3bc8c7aada86754f264d563
integration_test: 13825b8a9334a850581300559b8839134b124670
package_info_plus: fd030dabf36271f146f1f3beacd48f564b0f17f7
pasteboard: 982969ebaa7c78af3e6cc7761e8f5e77565d9ce0
path_provider_foundation: eaf5b3e458fc0e5fbb9940fb09980e853fe058b8
quick_look: 59394001d6b484c13fd5f73b555398d523726c8c
receive_sharing_intent: c0d87310754e74c0f9542947e7cbdf3a0335a3b1
SDWebImage: 2aea163b50bfcb569a2726b6a754c54a4506fcf6
SDWebImage: a3ba0b8faac7228c3c8eadd1a55c9c9fe5e16457
Sentry: c7a86f43510a7d5678d4de28d78c28ab351d295b
sentry_flutter: f2710a4f537e9a7143b02562b8754ccdc8224751
SentryPrivate: 2eaabf598a46d4b9b8822aef766df2a84caf2e6f
Expand All @@ -157,6 +157,6 @@ SPEC CHECKSUMS:
wakelock: d0fc7c864128eac40eba1617cb5264d9c940b46f
WebRTC-SDK: 082ae4893212534a779ca233f19a9df8efd5f3bd

PODFILE CHECKSUM: 13d9041d0d29fd7ece7ffd5792a1b05a1aa17133
PODFILE CHECKSUM: 7b8cdbdc22ae435eeac5b91941fe5d96f9f24b54

COCOAPODS: 1.12.1
COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1310;
LastUpgradeCheck = 1300;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1300"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion lib/interface/file_location_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class _FileLocationDialogState extends State<FileLocationDialog> {
if (directoryPath != null) {
await widget.valueStore.setFileLocation(directoryPath);
print('Selected $directoryPath');
if (mounted) {
if (context.mounted) {
Navigator.pop(context);
}
}
Expand Down
6 changes: 4 additions & 2 deletions lib/interface/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,10 @@ class HomeScreenState extends ConsumerState<HomeScreen>
} catch (error, stack) {
ErrorLogger.logStackError(
'noInstalledAppCouldOpenFile', error, stack);
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(
content: Text("No installed app could open this file")));
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(
content: Text("No installed app could open this file")));
}
}
} else {
// Seems there is no way to preview multiple files on android
Expand Down
2 changes: 1 addition & 1 deletion macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 963639d5148db2f75442340858b9034c09ed58df

COCOAPODS: 1.12.1
COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion macos/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0920;
LastUpgradeCheck = 1300;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
33CC10EC2044A3C60003C045 = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1300"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Loading

0 comments on commit 9b91f3a

Please sign in to comment.