Skip to content

Commit a415b22

Browse files
committed
feat(package_info_plus): Lower requirements to Dart 3.10 and Flutter
1 parent 6982a68 commit a415b22

7 files changed

Lines changed: 15 additions & 12 deletions

File tree

packages/package_info_plus/package_info_plus/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ This Flutter plugin provides an API for querying information about an applicatio
1616

1717
## Requirements
1818

19-
- Flutter >=3.41.0
20-
- Dart >=3.11.0 <4.0.0
19+
- Flutter >=3.38.1
20+
- Dart >=3.10.0 <4.0.0
2121
- iOS >=13.0
2222
- macOS >=10.15
2323
- Java 17

packages/package_info_plus/package_info_plus/example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>12.0</string>
24+
<string>13.0</string>
2525
</dict>
2626
</plist>

packages/package_info_plus/package_info_plus/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@
452452
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
453453
GCC_WARN_UNUSED_FUNCTION = YES;
454454
GCC_WARN_UNUSED_VARIABLE = YES;
455-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
455+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
456456
MTL_ENABLE_DEBUG_INFO = NO;
457457
SDKROOT = iphoneos;
458458
SUPPORTED_PLATFORMS = iphoneos;
@@ -579,7 +579,7 @@
579579
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
580580
GCC_WARN_UNUSED_FUNCTION = YES;
581581
GCC_WARN_UNUSED_VARIABLE = YES;
582-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
582+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
583583
MTL_ENABLE_DEBUG_INFO = YES;
584584
ONLY_ACTIVE_ARCH = YES;
585585
SDKROOT = iphoneos;
@@ -628,7 +628,7 @@
628628
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
629629
GCC_WARN_UNUSED_FUNCTION = YES;
630630
GCC_WARN_UNUSED_VARIABLE = YES;
631-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
631+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
632632
MTL_ENABLE_DEBUG_INFO = NO;
633633
SDKROOT = iphoneos;
634634
SUPPORTED_PLATFORMS = iphoneos;

packages/package_info_plus/package_info_plus/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
2930
shouldUseLaunchSchemeArgsEnv = "YES">
3031
<MacroExpansion>
3132
<BuildableReference
@@ -54,11 +55,13 @@
5455
buildConfiguration = "Debug"
5556
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
5657
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
58+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
5759
launchStyle = "0"
5860
useCustomWorkingDirectory = "NO"
5961
ignoresPersistentStateOnLaunch = "NO"
6062
debugDocumentVersioning = "YES"
6163
debugServiceExtension = "internal"
64+
enableGPUValidationMode = "1"
6265
allowLocationSimulation = "YES">
6366
<BuildableProductRunnable
6467
runnableDebuggingMode = "0">

packages/package_info_plus/package_info_plus/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 1.2.3+4
44
publish_to: "none"
55

66
environment:
7-
sdk: ">=3.3.0 <4.0.0"
7+
sdk: ">=3.10.0 <4.0.0"
88

99
dependencies:
1010
clock: ^1.1.1

packages/package_info_plus/package_info_plus/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ dependencies:
3939
package_info_plus_platform_interface: ^4.0.0
4040
path: ^1.9.1
4141
web: ^1.1.1
42-
win32: ^6.0.0
42+
win32: ^6.0.1
4343

4444
dev_dependencies:
4545
flutter_lints: ^6.0.0
4646
flutter_test:
4747
sdk: flutter
4848

4949
environment:
50-
sdk: ">=3.11.0 <4.0.0"
51-
flutter: ">=3.41.0"
50+
sdk: ">=3.10.0 <4.0.0"
51+
flutter: ">=3.38.1"

packages/package_info_plus/package_info_plus_platform_interface/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ dev_dependencies:
1717
flutter_lints: ^6.0.0
1818

1919
environment:
20-
sdk: ">=3.11.0 <4.0.0"
21-
flutter: ">=3.41.0"
20+
sdk: ">=3.10.0 <4.0.0"
21+
flutter: ">=3.38.1"

0 commit comments

Comments
 (0)