Skip to content

Commit 587380c

Browse files
committed
dependency fixes
1 parent 0dad21f commit 587380c

File tree

7 files changed

+220
-159
lines changed

7 files changed

+220
-159
lines changed

Diff for: macos/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ EXTERNAL SOURCES:
3535

3636
SPEC CHECKSUMS:
3737
desktop_drop: 69eeff437544aa619c8db7f4481b3a65f7696898
38-
file_selector_macos: ff6dc948d4ddd34e8602a1f60b7d0b4cc6051a47
38+
file_selector_macos: cc3858c981fe6889f364731200d6232dac1d812d
3939
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
4040
path_provider_macos: a0a3fd666cb7cd0448e936fb4abad4052961002b
4141
url_launcher_macos: 45af3d61de06997666568a7149c1be98b41c95d4
4242
window_size: 339dafa0b27a95a62a843042038fa6c3c48de195
4343

4444
PODFILE CHECKSUM: 353c8bcc5d5b0994e508d035b5431cfe18c1dea7
4545

46-
COCOAPODS: 1.11.3
46+
COCOAPODS: 1.16.2

Diff for: macos/Runner.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203
isa = PBXProject;
204204
attributes = {
205205
LastSwiftUpdateCheck = 0920;
206-
LastUpgradeCheck = 1300;
206+
LastUpgradeCheck = 1510;
207207
ORGANIZATIONNAME = "";
208208
TargetAttributes = {
209209
33CC10EC2044A3C60003C045 = {

Diff for: macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1300"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -48,6 +48,7 @@
4848
ignoresPersistentStateOnLaunch = "NO"
4949
debugDocumentVersioning = "YES"
5050
debugServiceExtension = "internal"
51+
enableGPUValidationMode = "1"
5152
allowLocationSimulation = "YES">
5253
<BuildableProductRunnable
5354
runnableDebuggingMode = "0">

Diff for: macos/Runner/AppDelegate.swift

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import Cocoa
22
import FlutterMacOS
33

4-
@NSApplicationMain
4+
@main
55
class AppDelegate: FlutterAppDelegate {
66
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
77
return true
88
}
9+
10+
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
11+
return true
12+
}
913
}

0 commit comments

Comments
 (0)