This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ ## [ 0.3.6] - 2017-05-9
2+
3+ * Fix workaround for failing dynamic check in Xcode 7/sdk version 9.
4+
15## [ 0.3.5] - 2017-05-8
26
37* Workaround for failing dynamic check in Xcode 7/sdk version 9.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ - (void)launchURL:(NSString*)urlString result:(FlutterResult)result {
4040
4141 // Using ifdef as workaround to support running with Xcode 7.0 and sdk version 9
4242 // where the dynamic check fails.
43- #if __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_10_0
43+ #if __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_9_0
4444 [application openURL: url options: @{} completionHandler: ^(BOOL success) {
4545 [self sendResult: success result: result url: url];
4646 }];
Original file line number Diff line number Diff line change 11name : url_launcher
22
3- version : 0.3.5
3+ version : 0.3.6
44description : A Flutter plugin for launching a URL
55author : Flutter Team <flutter-dev@googlegroups.com>
66homepage : https://github.com/flutter/plugins
@@ -15,4 +15,4 @@ dependencies:
1515 sdk : flutter
1616
1717dev_dependencies :
18- test:
18+ test :
You can’t perform that action at this time.
0 commit comments