Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 76ea8c8

Browse files
authored
[url_launcher_ios] Update minimum Flutter version to 3.3 and iOS 11 (#7110)
* [url_launcher_ios] Update minimum Flutter version to 3.3 and iOS 11 * super
1 parent 55f2573 commit 76ea8c8

File tree

19 files changed

+55
-51
lines changed

19 files changed

+55
-51
lines changed

packages/url_launcher/url_launcher/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## NEXT
1+
## 6.1.9
22

33
* Updates minimum Flutter version to 3.0.
4+
* Updates iOS minimum version in README.
45

56
## 6.1.8
67

packages/url_launcher/url_launcher/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
A Flutter plugin for launching a URL.
88

9-
| | Android | iOS | Linux | macOS | Web | Windows |
10-
|-------------|---------|------|-------|--------|-----|-------------|
11-
| **Support** | SDK 16+ | 9.0+ | Any | 10.11+ | Any | Windows 10+ |
9+
| | Android | iOS | Linux | macOS | Web | Windows |
10+
|-------------|---------|-------|-------|--------|-----|-------------|
11+
| **Support** | SDK 16+ | 11.0+ | Any | 10.11+ | Any | Windows 10+ |
1212

1313
## Usage
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
<string>arm64</string>
2626
</array>
2727
<key>MinimumOSVersion</key>
28-
<string>9.0</string>
28+
<string>11.0</string>
2929
</dict>
3030
</plist>

packages/url_launcher/url_launcher/example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '9.0'
2+
# platform :ios, '11.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 46;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -169,7 +169,7 @@
169169
97C146E61CF9000F007C117D /* Project object */ = {
170170
isa = PBXProject;
171171
attributes = {
172-
LastUpgradeCheck = 1100;
172+
LastUpgradeCheck = 1300;
173173
ORGANIZATIONNAME = "The Flutter Authors";
174174
TargetAttributes = {
175175
97C146ED1CF9000F007C117D = {
@@ -213,10 +213,12 @@
213213
/* Begin PBXShellScriptBuildPhase section */
214214
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
215215
isa = PBXShellScriptBuildPhase;
216+
alwaysOutOfDate = 1;
216217
buildActionMask = 2147483647;
217218
files = (
218219
);
219220
inputPaths = (
221+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
220222
);
221223
name = "Thin Binary";
222224
outputPaths = (
@@ -227,6 +229,7 @@
227229
};
228230
9740EEB61CF901F6004384FC /* Run Script */ = {
229231
isa = PBXShellScriptBuildPhase;
232+
alwaysOutOfDate = 1;
230233
buildActionMask = 2147483647;
231234
files = (
232235
);
@@ -340,7 +343,7 @@
340343
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
341344
GCC_WARN_UNUSED_FUNCTION = YES;
342345
GCC_WARN_UNUSED_VARIABLE = YES;
343-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
346+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
344347
MTL_ENABLE_DEBUG_INFO = YES;
345348
ONLY_ACTIVE_ARCH = YES;
346349
SDKROOT = iphoneos;
@@ -390,7 +393,7 @@
390393
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
391394
GCC_WARN_UNUSED_FUNCTION = YES;
392395
GCC_WARN_UNUSED_VARIABLE = YES;
393-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
396+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
394397
MTL_ENABLE_DEBUG_INFO = NO;
395398
SDKROOT = iphoneos;
396399
TARGETED_DEVICE_FAMILY = "1,2";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1100"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

packages/url_launcher/url_launcher/example/ios/Runner/Info.plist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,9 @@
4545
</array>
4646
<key>UIViewControllerBasedStatusBarAppearance</key>
4747
<false/>
48+
<key>CADisableMinimumFrameDurationOnPhone</key>
49+
<true/>
50+
<key>UIApplicationSupportsIndirectInputEvents</key>
51+
<true/>
4852
</dict>
4953
</plist>

packages/url_launcher/url_launcher/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for launching a URL. Supports
33
web, phone, SMS, and email schemes.
44
repository: https://github.com/flutter/plugins/tree/main/packages/url_launcher/url_launcher
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
6-
version: 6.1.8
6+
version: 6.1.9
77

88
environment:
99
sdk: ">=2.14.0 <3.0.0"

packages/url_launcher/url_launcher_ios/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## NEXT
1+
## 6.1.0
22

3-
* Updates minimum Flutter version to 3.0.
3+
* Updates minimum Flutter version to 3.3 and iOS 11.
44

55
## 6.0.18
66

packages/url_launcher/url_launcher_ios/example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
<string>arm64</string>
2626
</array>
2727
<key>MinimumOSVersion</key>
28-
<string>9.0</string>
28+
<string>11.0</string>
2929
</dict>
3030
</plist>

0 commit comments

Comments
 (0)