Skip to content

Commit 3929fde

Browse files
Lower dart & flutter constraints
1 parent d3c2248 commit 3929fde

13 files changed

Lines changed: 54 additions & 78 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.1.1
2+
3+
* Lower dart constraint to 3.0.0
4+
* Lower flutter constraint to 3.16.0
5+
16
## 1.1.0
27

38
* *BREAKING*: Changed handling of scrolling for further customization.
@@ -30,4 +35,4 @@
3035

3136
## 0.1.0
3237

33-
* Initial release.
38+
* Initial release.

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,5 @@
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
23-
<key>MinimumOSVersion</key>
24-
<string>13.0</string>
2523
</dict>
2624
</plist>

example/ios/Podfile.lock

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- path_provider_foundation (0.0.1):
4-
- Flutter
5-
- FlutterMacOS
63

74
DEPENDENCIES:
85
- Flutter (from `Flutter`)
9-
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
106

117
EXTERNAL SOURCES:
128
Flutter:
139
:path: Flutter
14-
path_provider_foundation:
15-
:path: ".symlinks/plugins/path_provider_foundation/darwin"
1610

1711
SPEC CHECKSUMS:
1812
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
19-
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
2013

2114
PODFILE CHECKSUM: 0dbd5a87e0ace00c9610d2037ac22083a01f861d
2215

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@
139139
97C146EC1CF9000F007C117D /* Resources */,
140140
9705A1C41CF9048500538489 /* Embed Frameworks */,
141141
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
142-
A91E8B459A2E08DB92A0AABF /* [CP] Embed Pods Frameworks */,
143142
);
144143
buildRules = (
145144
);
@@ -229,23 +228,6 @@
229228
shellPath = /bin/sh;
230229
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
231230
};
232-
A91E8B459A2E08DB92A0AABF /* [CP] Embed Pods Frameworks */ = {
233-
isa = PBXShellScriptBuildPhase;
234-
buildActionMask = 2147483647;
235-
files = (
236-
);
237-
inputFileListPaths = (
238-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
239-
);
240-
name = "[CP] Embed Pods Frameworks";
241-
outputFileListPaths = (
242-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
243-
);
244-
runOnlyForDeploymentPostprocessing = 0;
245-
shellPath = /bin/sh;
246-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
247-
showEnvVarsInLog = 0;
248-
};
249231
BF217A2F67F70C6017711480 /* [CP] Check Pods Manifest.lock */ = {
250232
isa = PBXShellScriptBuildPhase;
251233
buildActionMask = 2147483647;
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
import UIKit
21
import Flutter
2+
import UIKit
33

44
@main
5-
@objc class AppDelegate: FlutterAppDelegate {
5+
@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate {
66
override func application(
77
_ application: UIApplication,
88
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
99
) -> Bool {
10-
GeneratedPluginRegistrant.register(with: self)
1110
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
1211
}
12+
13+
func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) {
14+
GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry)
15+
}
1316
}

example/ios/Runner/Info.plist

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>CADisableMinimumFrameDurationOnPhone</key>
6+
<true/>
57
<key>CFBundleDevelopmentRegion</key>
68
<string>$(DEVELOPMENT_LANGUAGE)</string>
79
<key>CFBundleDisplayName</key>
@@ -24,6 +26,29 @@
2426
<string>$(FLUTTER_BUILD_NUMBER)</string>
2527
<key>LSRequiresIPhoneOS</key>
2628
<true/>
29+
<key>UIApplicationSceneManifest</key>
30+
<dict>
31+
<key>UIApplicationSupportsMultipleScenes</key>
32+
<false/>
33+
<key>UISceneConfigurations</key>
34+
<dict>
35+
<key>UIWindowSceneSessionRoleApplication</key>
36+
<array>
37+
<dict>
38+
<key>UISceneClassName</key>
39+
<string>UIWindowScene</string>
40+
<key>UISceneConfigurationName</key>
41+
<string>flutter</string>
42+
<key>UISceneDelegateClassName</key>
43+
<string>FlutterSceneDelegate</string>
44+
<key>UISceneStoryboardFile</key>
45+
<string>Main</string>
46+
</dict>
47+
</array>
48+
</dict>
49+
</dict>
50+
<key>UIApplicationSupportsIndirectInputEvents</key>
51+
<true/>
2752
<key>UILaunchStoryboardName</key>
2853
<string>LaunchScreen</string>
2954
<key>UIMainStoryboardFile</key>
@@ -43,9 +68,5 @@
4368
</array>
4469
<key>UIViewControllerBasedStatusBarAppearance</key>
4570
<false/>
46-
<key>CADisableMinimumFrameDurationOnPhone</key>
47-
<true/>
48-
<key>UIApplicationSupportsIndirectInputEvents</key>
49-
<true/>
5071
</dict>
5172
</plist>

example/macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import FlutterMacOS
66
import Foundation
77

8-
import path_provider_foundation
98

109
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
11-
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
1210
}

example/macos/Podfile.lock

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11
PODS:
22
- FlutterMacOS (1.0.0)
3-
- path_provider_foundation (0.0.1):
4-
- Flutter
5-
- FlutterMacOS
63

74
DEPENDENCIES:
85
- FlutterMacOS (from `Flutter/ephemeral`)
9-
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
106

117
EXTERNAL SOURCES:
128
FlutterMacOS:
139
:path: Flutter/ephemeral
14-
path_provider_foundation:
15-
:path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin
1610

1711
SPEC CHECKSUMS:
1812
FlutterMacOS: d0db08ddef1a9af05a5ec4b724367152bb0500b1
19-
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
2013

2114
PODFILE CHECKSUM: 0d3963a09fc94f580682bd88480486da345dc3f0
2215

example/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@
184184
33CC10EB2044A3C60003C045 /* Resources */,
185185
33CC110E2044A8840003C045 /* Bundle Framework */,
186186
3399D490228B24CF009A79C7 /* ShellScript */,
187-
E5C5328C6C4C7E425C80827B /* [CP] Embed Pods Frameworks */,
188187
);
189188
buildRules = (
190189
);
@@ -314,23 +313,6 @@
314313
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
315314
showEnvVarsInLog = 0;
316315
};
317-
E5C5328C6C4C7E425C80827B /* [CP] Embed Pods Frameworks */ = {
318-
isa = PBXShellScriptBuildPhase;
319-
buildActionMask = 2147483647;
320-
files = (
321-
);
322-
inputFileListPaths = (
323-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
324-
);
325-
name = "[CP] Embed Pods Frameworks";
326-
outputFileListPaths = (
327-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
328-
);
329-
runOnlyForDeploymentPostprocessing = 0;
330-
shellPath = /bin/sh;
331-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
332-
showEnvVarsInLog = 0;
333-
};
334316
/* End PBXShellScriptBuildPhase section */
335317

336318
/* Begin PBXSourcesBuildPhase section */

example/pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ packages:
101101
dependency: "direct dev"
102102
description:
103103
name: cosee_lints
104-
sha256: c3f8217508009efc935ea91803ec4219fc65a772997dd25278502b774d329674
104+
sha256: "4369ad0964e217729530356f4323ca936ed08b89180d29fd59391cd91bbafe7d"
105105
url: "https://pub.dev"
106106
source: hosted
107-
version: "0.12.0"
107+
version: "0.13.0"
108108
crypto:
109109
dependency: transitive
110110
description:
@@ -257,7 +257,7 @@ packages:
257257
path: ".."
258258
relative: true
259259
source: path
260-
version: "1.1.0"
260+
version: "1.1.1"
261261
intl:
262262
dependency: transitive
263263
description:
@@ -640,5 +640,5 @@ packages:
640640
source: hosted
641641
version: "3.1.3"
642642
sdks:
643-
dart: ">=3.10.3 <4.0.0"
643+
dart: ">=3.11.0 <4.0.0"
644644
flutter: ">=3.38.4"

0 commit comments

Comments
 (0)