flutter / flutter

Flutter makes it easy and fast to build beautiful apps for mobile and beyond
https://flutter.dev
BSD 3-Clause "New" or "Revised" License
164.37k stars 27.12k forks source link

WebView loads a long HTML display blank #66439

Open larryluo1212 opened 3 years ago

larryluo1212 commented 3 years ago

Steps to Reproduce

Sample code ```dart import 'dart:convert'; import 'package:flutter/foundation.dart'; import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; import 'package:webview_flutter/webview_flutter.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: WebViewSample(), ), ); } } class WebViewSample extends StatefulWidget { @override createState() => _WebViewState(); } class _WebViewState extends State { var height = 200.0; WebViewController webController; String html = "" + "" + " " + " " + " " + " " + " " + " " + " " + ""; /// when change 1800 to bigger number webview show blank /// when change 1800 to smaller number webview normal,such as 300 @override Widget build(BuildContext context) { return Column( children: [ Container( child: Text("header"), ), Container( color: Colors.red, width: 400.0, height: 100.0, child: Center(child: Text("header")), ), Expanded( child: SingleChildScrollView( child: Column( children: [ Container( height: height, child: WebView( gestureRecognizers: >{ Factory( () => VerticalDragGestureRecognizer(), ), }, onWebViewCreated: (WebViewController controller) { webController = controller; }, onPageFinished: (String url) { print(" onPageFinished"); webController.evaluateJavascript( "document.body.scrollHeight").then((value) { print(" htmlHeight : $value"); setState(() { height = double.parse(value); }); }); }, javascriptMode: JavascriptMode.unrestricted, initialUrl: Uri.dataFromString(html, mimeType: "text/html", encoding: Encoding.getByName("utf-8") ).toString(), // onWebViewCreated: (WebViewController controller){ // controller.loadUrl(url) // }, ), ), Container( color: Colors.red, width: 400.0, height: 300.0, child: Text("ohter 1"), ), Container( color: Colors.grey, width: 400.0, height: 300.0, child: Text("ohter 2"), ), Container( color: Colors.blue, width: 400.0, height: 300.0, child: Text("ohter 3"), ), Container( color: Colors.grey, width: 400.0, height: 300.0, child: Text("ohter 2"), ), ], ), ), ), Container( width: 400.0, color:Colors.pink, height:20.0, child: Center(child:Text("footer")), ), ], ); } } ```

webview_flutter: ^0.3.24

Expected results: It is expected that long loaded HTML can be displayed normally,

Actual results: According to the layout nesting in my code, loading long HTML can not be displayed normally, blank, loading short HTML can be displayed normally

Logs ``` 2020-09-23 18:17:19.127238+0800 Runner[2685:137016] WF: _WebFilterIsActive returning: NO 2020-09-23 18:17:19.506430+0800 Runner[2685:137103] flutter: onPageFinished 2020-09-23 18:17:19.662384+0800 Runner[2685:137103] flutter: htmlHeight : 81000 2020-09-23 18:17:21.016750+0800 Runner[2685:137016] WF: _userSettingsForUser mobile: { filterBlacklist = ( ); filterWhitelist = ( ); restrictWeb = 1; useContentFilter = 0; useContentFilterOverrides = 0; whitelistEnabled = 0; } 2020-09-23 18:17:21.016823+0800 Runner[2685:137016] WF: _WebFilterIsActive returning: NO 2020-09-23 18:17:21.142529+0800 Runner[2685:137016] [ProcessSuspension] 0x119ce1740 - ProcessAssertion::processAssertionWasInvalidated() 2020-09-23 18:17:21.341480+0800 Runner[2685:137103] flutter: onPageFinished 2020-09-23 18:17:21.593578+0800 Runner[2685:137103] [VERBOSE-2:ui_dart_state.cc(166)] Unhandled Exception: PlatformException(evaluateJavaScript_failed, Failed evaluating JavaScript, JavaScript string was: 'document.body.scrollHeight' Error Domain=WKErrorDomain Code=2 "The Web Content process was terminated" UserInfo={NSLocalizedDescription=The Web Content process was terminated}) #0 StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:572:7) #1 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:161:18) #2 MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:334:12) #3 MethodChannelWebViewPlatform.evaluateJavascript (package:webview_flutter/src/webview_method_channel.dart:115:21) #4 WebViewController.evaluateJavascript (package:webview_flutter/webview_flutter.dart:672:39) #5 _WebViewState.build. (package:webview_flutter_example/main.dart:87:37) #6 _PlatformCallbacksHandler.onPageFinished (package:webview_flutter/webview_flutter.dart:491:29) #7 MethodChannelWebViewPlatform._onMethodCall (package:webview_flutter/src/webview_method_channel.dart:41:35) #8 MethodChannel._handleAsMethodCall (package:flutter/src/services/platform_channel.dart:432:55) #9 MethodChannel.setMethodCallHandler. (package:flutter/src/services/platform_channel.dart:385:33) #10 _DefaultBinaryMessenger.handlePlatformMessage (package:flutter/src/services/binding.dart:267:33) #11 _invoke3. (dart:ui/hooks.dart:282:15) #12 _rootRun (dart:async/zone.dart:1190:13) #13 _CustomZone.run (dart:async/zone.dart:1093:19) #14 _CustomZone.runGuarded (dart:async/zone.dart:997:7) #15 _invoke3 (dart:ui/hooks.dart:281:10) #16 _dispatchPlatformMessage (dart:ui/hooks.dart:156:5) 2020-09-23 18:17:21.680720+0800 Runner[2685:137016] [ProcessSuspension] 0x119ce1950 - ProcessAssertion::processAssertionWasInvalidated() ````

Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 1.20.4, on Mac OS X 10.15.5 19F101, locale en-CN)

[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3) [✓] Xcode - develop for iOS and macOS (Xcode 11.6) [✓] Android Studio (version 4.0) [✓] Connected device (1 available)

• No issues found!

pedromassangocode commented 3 years ago

Hi @larryluo123 I tried your code with 30.000 and it does not crashed. This may not be related to the webView plugin but instead with your code, loading items like this take so much memory of your device and this is not a best practice.

I tested on a iPhone simulator and this was my output:

Performing hot restart...
Syncing files to device iPhone 11 Pro Max...
Restarted application in 2,640ms.
flutter:  onPageFinished
flutter:  htmlHeight : 810000

On what device did you executed this code? what number did you added in the for loop that caused the issue? Can you provide the output of flutter run -v?

larryluo1212 commented 3 years ago

Phone 11 Pro Max.

Thank you for your reply. I ran the code above to reproduce what I said.I use the iPhone 11 Pro Max simulator to display normally.My mobile phone is iPhone 6S plus, IOS 13.6, and the following is “flutter run - v” log

Log part 1 ``` fox-MacBook-Air:~ fox$ cd Downloads/plugins-master/packages/webview_flutter/example/ fox-MacBook-Air:example fox$ ls README.md assets ios pubspec.lock test_driver android build lib pubspec.yaml fox-MacBook-Air:example fox$ flutter run -v [ +202 ms] executing: [/Users/fox/Documents/sdk/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +76 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ +1 ms] fba99f6cf9a14512e461e3122c8ddfaa25394e89 [ ] executing: [/Users/fox/Documents/sdk/flutter/] git tag --contains HEAD [ +627 ms] Exit code 0 from: git tag --contains HEAD [ ] 1.20.4 [ +12 ms] executing: [/Users/fox/Documents/sdk/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +15 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/stable [ ] executing: [/Users/fox/Documents/sdk/flutter/] git ls-remote --get-url origin [ +15 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +86 ms] executing: [/Users/fox/Documents/sdk/flutter/] git rev-parse --abbrev-ref HEAD [ +22 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ +1 ms] stable [ +14 ms] executing: sw_vers -productName [ +28 ms] Exit code 0 from: sw_vers -productName [ ] Mac OS X [ ] executing: sw_vers -productVersion [ +21 ms] Exit code 0 from: sw_vers -productVersion [ ] 10.15.5 [ ] executing: sw_vers -buildVersion [ +30 ms] Exit code 0 from: sw_vers -buildVersion [ ] 19F101 [ +78 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +5 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ +1 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +40 ms] executing: /Users/fox/Library/Android/sdk/platform-tools/adb devices -l [ +9 ms] executing: /usr/bin/xcode-select --print-path [ +11 ms] Exit code 0 from: /usr/bin/xcode-select --print-path [ ] /Applications/Xcode.app/Contents/Developer [ +2 ms] executing: /usr/bin/xcodebuild -version [+1365 ms] Exit code 0 from: /usr/bin/xcodebuild -version [ ] Xcode 11.6 Build version 11E708 [ +4 ms] executing: xcrun --find xcdevice [ +13 ms] Exit code 0 from: xcrun --find xcdevice [ ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice [ ] executing: xcrun xcdevice list --timeout 2 [ +6 ms] /usr/bin/xcrun simctl list --json devices [ ] executing: /usr/bin/xcrun simctl list --json devices [ +66 ms] List of devices attached [ +133 ms] { "devices" : { "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [ { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/E17A409F-DDD5-4B41-A201-5B2AC2EF4C81\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E1 7A409F-DDD5-4B41-A201-5B2AC2EF4C81", "udid" : "E17A409F-DDD5-4B41-A201-5B2AC2EF4C81", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080 p", "state" : "Shutdown", "name" : "Apple TV" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/76586807-5DFC-4619-AD7D-8334C3E51818\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/76 586807-5DFC-4619-AD7D-8334C3E51818", "udid" : "7A586807-5DFC-4619-AD7D-8334C3E51818", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4 K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/32807F37-2F88-4CD6-8405-B5ACE54149B8\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/32 807F37-2F88-4CD6-8405-B5ACE54149B8", "udid" : "32807F37-2F88-4CD6-8405-B5ACE54149B8", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1 080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [ { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/F72E2AC8-5163-40F5-BF70-FE97B27E425F\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/F7 2E2AC8-5163-40F5-BF70-FE97B27E425F", "udid" : "F72E2AC8-5163-40F5-BF70-FE97B27E425F", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S eries-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/F6400338-B761-469C-B463-A1C2E1B56EA4\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/F6 400338-B761-469C-B463-A1C2E1B56EA4", "udid" : "F6400338-B761-469C-B463-A1C2E1B56EA4", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S eries-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/867F1617-4D39-4BB0-9F45-584BBAB46AF7\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/86 7F1617-4D39-4BB0-9F45-584BBAB46AF7", "udid" : "867F1617-4D39-4BB0-9F45-584BBAB46AF7", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S eries-5-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 40mm" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/E9B0E357-6E60-459B-9120-DAEF8D30B1FF\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E9 B0E357-6E60-459B-9120-DAEF8D30B1FF", "udid" : "E9B0E357-6E60-459B-9120-DAEF8D30B1FF", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S eries-5-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.iOS-13-6" : [ { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/76F6BC90-09C1-4E03-B30B-E5014F1263C3\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/76 F6BC90-09C1-4E03-B30B-E5014F1263C3", "udid" : "76F6BC90-09C1-4E03-B30B-E5014F1263C3", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/96BD7C7D-A559-4F23-9B1E-8AB64ACD846E\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/96 BD7C7D-A559-4F23-9B1E-8AB64ACD846E", "udid" : "96BD7C7D-A559-4F23-9B1E-8AB64ACD846E", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus ", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/B816C283-E80D-4AE1-B65B-B2688F795241\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/B8 16C283-E80D-4AE1-B65B-B2688F795241", "udid" : "B816C283-E80D-4AE1-B65B-B2688F795241", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/511D9372-EAA6-4B95-83FA-3FD7346E775D\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/51 1D9372-EAA6-4B95-83FA-3FD7346E775D", "udid" : "511D9372-EAA6-4B95-83FA-3FD7346E775D", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro ", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/D2DC70CD-F180-4082-89F5-2B3D10A89754\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/D2 DC70CD-F180-4082-89F5-2B3D10A89754", "udid" : "D2DC70CD-F180-4082-89F5-2B3D10A89754", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro -Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/E9E5E9F8-D787-4BAE-B092-9F16FDEB0778\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E9 E5E9F8-D787-4BAE-B092-9F16FDEB0778", "udid" : "E9E5E9F8-D787-4BAE-B092-9F16FDEB0778", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2n d-generation-", "state" : "Shutdown", "name" : "iPhone SE (2nd generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/788550F9-8FD1-4C57-9885-EE338C2B6AE8\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/78 8550F9-8FD1-4C57-9885-EE338C2B6AE8", "udid" : "788550F9-8FD1-4C57-9885-EE338C2B6AE8", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7 -inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/1DDBBCFE-F36C-4D6B-AE1C-B1E17C7951D5\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/1D DBBCFE-F36C-4D6B-AE1C-B1E17C7951D5", "udid" : "1DDBBCFE-F36C-4D6B-AE1C-B1E17C7951D5", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-gen eration-", "state" : "Shutdown", "name" : "iPad (7th generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/E8E6230F-62C2-408A-893F-5AC16F1B0848\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E8 E6230F-62C2-408A-893F-5AC16F1B0848", "udid" : "E8E6230F-62C2-408A-893F-5AC16F1B0848", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11- inch---2nd-generation-", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (2nd generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/DCDE3854-EB47-4CC4-AB36-776E76067690\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/DC DE3854-EB47-4CC4-AB36-776E76067690", "udid" : "DCDE3854-EB47-4CC4-AB36-776E76067690", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12- 9-inch---4th-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (4th generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulato r\/Devices\/7660904D-ED7B-4F34-A0F9-3FB5FE406428\/da ta", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/76 60904D-ED7B-4F34-A0F9-3FB5FE406428", "udid" : "7660904D-ED7B-4F34-A0F9-3FB5FE406428", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd -generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ] } } [+4651 ms] [ { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,4", "identifier" : "F6400338-B761-469C-B463-A1C2E1B56EA4", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 44mm", "name" : "Apple Watch Series 4 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,9", "identifier" : "E8E6230F-62C2-408A-893F-5AC16F1B0848", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-11-2nd-1", "modelName" : "iPad Pro (11-inch) (2nd generation)", "name" : "iPad Pro (11-inch) (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV5,3", "identifier" : "E17A409F-DDD5-4B41-A201-5B2AC2EF4C81", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4", "modelName" : "Apple TV", "name" : "Apple TV" }, { "simulator" : false, "operatingSystemVersion" : "13.6 (17G68)", "interface" : "usb", "available" : true, "platform" : "com.apple.platform.iphoneos", "modelCode" : "iPhone8,2", "identifier" : "4db692c992fc8cdd3fe0f7783d8cd220acbe5810", "architecture" : "arm64", "modelUTI" : "com.apple.iphone-6s-plus-e1ccb7", "modelName" : "iPhone 6s Plus", "name" : "iPhone" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "76586807-5DFC-4619-AD7D-8334C3E51818", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K", "name" : "Apple TV 4K" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,3", "identifier" : "511D9372-EAA6-4B95-83FA-3FD7346E775D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-1", "modelName" : "iPhone 11 Pro", "name" : "iPhone 11 Pro" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,3", "identifier" : "867F1617-4D39-4BB0-9F45-584BBAB46AF7", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 40mm", "name" : "Apple Watch Series 5 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad6,4", "identifier" : "788550F9-8FD1-4C57-9885-EE338C2B6AE8", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba", "modelName" : "iPad Pro (9.7-inch)", "name" : "iPad Pro (9.7-inch)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,5", "identifier" : "D2DC70CD-F180-4082-89F5-2B3D10A89754", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-max-1", "modelName" : "iPhone 11 Pro Max", "name" : "iPhone 11 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,12", "identifier" : "DCDE3854-EB47-4CC4-AB36-776E76067690", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-12point9-4th-1", "modelName" : "iPad Pro (12.9-inch) (4th generation)", "name" : "iPad Pro (12.9-inch) (4th generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "32807F37-2F88-4CD6-8405-B5ACE54149B8", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K (at 1080p)", "name" : "Apple TV 4K (at 1080p)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "B816C283-E80D-4AE1-B65B-B2688F795241", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad7,12", "identifier" : "1DDBBCFE-F36C-4D6B-AE1C-B1E17C7951D5", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-7-wwan-1", "modelName" : "iPad (7th generation)", "name" : "iPad (7th generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,5", "identifier" : "96BD7C7D-A559-4F23-9B1E-8AB64ACD846E", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-plus-2", "modelName" : "iPhone 8 Plus", "name" : "iPhone 8 Plus" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,3", "identifier" : "F72E2AC8-5163-40F5-BF70-FE97B27E425F", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 40mm", "name" : "Apple Watch Series 4 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,4", "identifier" : "76F6BC90-09C1-4E03-B30B-E5014F1263C3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-2", "modelName" : "iPhone 8", "name" : "iPhone 8" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,4", "identifier" : "E9B0E357-6E60-459B-9120-DAEF8D30B1FF", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,8", "identifier" : "E9E5E9F8-D787-4BAE-B092-9F16FDEB0778", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-se-1", "modelName" : "iPhone SE (2nd generation)", "name" : "iPhone SE (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad11,3", "identifier" : "7660904D-ED7B-4F34-A0F9-3FB5FE406428", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-air3-wifi-1", "modelName" : "iPad Air (3rd generation)", "name" : "iPad Air (3rd generation)" } ] [ +17 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ +4 ms] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +277 ms] Found plugin webview_flutter at /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webvie w_flutter-0.3.24/ [ +35 ms] Found plugin integration_test at /Users/fox/Downloads/plugins-master/packages/integration_test/ [ +85 ms] Found plugin webview_flutter at /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webvie w_flutter-0.3.24/ [ +12 ms] Found plugin integration_test at /Users/fox/Downloads/plugins-master/packages/integration_test/ [ +82 ms] Generating /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/androi d/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +163 ms] Starting incremental build... [ +3 ms] Initializing file store [ +15 ms] Skipping target: gen_localizations [ +7 ms] complete [ +8 ms] Launching lib/main.dart on iPhone in debug mode... [ +11 ms] /Users/fox/Documents/sdk/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/darwin-x64/fron tend_server.dart.snapshot --sdk-root /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/common/flutter_ patched_sdk/ --incremental --target=flutter --debugger-module-names -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.QM8d4b/flutter_to ol.FpZ5JF/app.dill --packages .packages -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field -initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill.track.dill [ +12 ms] executing: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Ru nner/Info.plist [ +17 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Ru nner/Info.plist [ ] {"UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIIn terfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UII nterfaceOrientationLandscapeRight"],"CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENT IFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFB undleVersion":"$(FLUTTER_BUILD_NUMBER)","UILaunchStoryboardName":"LaunchScreen", "CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"CFBundleSho rtVersionString":"$(FLUTTER_BUILD_NAME)","UISupportedInterfaceOrientations":["UI InterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterface OrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CF BundleSignature":"????","CFBundlePackageType":"APPL","io.flutter.embedded_views_ preview":true,"CFBundleDevelopmentRegion":"en","CFBundleName":"webview_flutter_e xample"} [ +5 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/] /usr/bin/xcodebuild -list [ +20 ms] <- compile package:webview_flutter_example/main.dart [+5325 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcode build -list Information about project "Runner": Targets: Runner webview_flutter_exampleTests Build Configurations: Debug Release If no build configuration is specified and -scheme is not passed then "Release" is used. Schemes: Runner 2020-09-24 15:41:33.065 xcodebuild[25889:1853828] DTDeviceKit: deviceType from 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 was NULL 2020-09-24 15:41:33.188 xcodebuild[25889:1853944] DTDeviceKit: deviceType from 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 was NULL ⣽[ +17 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/R unner.xcodeproj/] /usr/bin/xcodebuild -project /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Ru nner.xcodeproj -scheme Runner -showBuildSettings [ +1 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/R unner.xcodeproj/] /usr/bin/xcodebuild -project /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Ru nner.xcodeproj -scheme Runner -showBuildSettings (This is taking an unexpectedly long time.)⣽[+5616 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcode build -project /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios/Runner.xcodeproj -scheme Runner -showBuildSettings Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = fox ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO APPLY_RULES_IN_COPY_HEADERS = NO ARCHS = armv7 arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios BUILD_LIBRARY_FOR_DISTRIBUTION = NO BUILD_ROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/ BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS BUNDLE_FORMAT = shallow BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks BUNDLE_PLUGINS_FOLDER_PATH = PlugIns BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers CACHE_ROOT = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.app le.DeveloperTools/11.6-11E708/Xcode CCHROOT = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.app le.DeveloperTools/11.6-11E708/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6 .sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.6 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DART_DEFINES = flutter.inspector.structuredErrors%3Dtrue DART_OBFUSCATION = false DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 DERIVED_FILES_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frame works DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frame works DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/Mac OSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = en DEVELOPMENT_TEAM = LC4DNJ3N8B DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation DONT_GENERATE_INFOPLIST_FILE = NO DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/Xc odeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HARDENED_RUNTIME = NO ENABLE_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = NO ENABLE_TESTING_SEARCH_PATHS = NO ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_DESTINATION = Signature ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/fox/Documents/sdk/flutter/bin/cache/artifact s/engine/ios FLUTTER_ROOT = /Users/fox/Documents/sdk/flutter FLUTTER_TARGET = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webvi ew_flutter/example/ios/Pods/../Flutter" /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 GCC_SYMBOLS_PRIVATE_EXTERN = YES GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYP ES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webvi ew_flutter/example/ios/Pods/Headers/Public" "/Users/fox/Downloads/plugins-master/packages/webvi ew_flutter/example/ios/Pods/Headers/Public/integration_t est" "/Users/fox/Downloads/plugins-master/packages/webvi ew_flutter/example/ios/Pods/Headers/Public/webview_flutt er" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/fox ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = fox INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/Ma cOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/Objects-normal/arm64/Runner_dependency_in fo.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.idep lugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webvi ew_flutter/example/build/ios/Release-iphoneos/integratio n_test" "/Users/fox/Downloads/plugins-master/packages/webvi ew_flutter/example/build/ios/Release-iphoneos/webview_fl utter" /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_FILE_LIST_normal_armv7 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0 LLVM_TARGET_TRIPLE_VENDOR = apple LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString LOCALIZED_STRING_SWIFTUI_SUPPORT = YES LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 19F101 MAC_OS_X_VERSION_ACTUAL = 101505 MAC_OS_X_VERSION_MAJOR = 101500 MAC_OS_X_VERSION_MINOR = 1505 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos/Runner.app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Modu leCache.noindex MTL_ENABLE_DEBUG_INFO = NO NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/Objects-normal OBJROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -fmodule-map-file="/Users/fox/Downloads/plugins-mas ter/packages/webview_flutter/example/ios/Pods/Headers/Pu blic/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-mas ter/packages/webview_flutter/example/ios/Pods/Headers/Pu blic/webview_flutter/webview_flutter.modulemap" OTHER_CPLUSPLUSFLAGS = -fmodule-map-file="/Users/fox/Downloads/plugins-mas ter/packages/webview_flutter/example/ios/Pods/Headers/Pu blic/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-mas ter/packages/webview_flutter/example/ios/Pods/Headers/Pu blic/webview_flutter/webview_flutter.modulemap" OTHER_LDFLAGS = -framework Flutter OTHER_SWIFT_FLAGS = -D COCOAPODS -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-mas ter/packages/webview_flutter/example/ios/Pods/Headers/Pu blic/integration_test/integration_test.modulemap" -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-mas ter/packages/webview_flutter/example/ios/Pods/Headers/Pu blic/webview_flutter/webview_flutter.modulemap" PACKAGE_CONFIG = .packages PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/User s/fox/Documents/sdk/flutter/bin:/usr/local/bin:/usr /bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/ fox/Library/Android/sdk/tools:/Users/fox/Libra ry/Android/sdk/platform-tools PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.idep lugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 17G64 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos PODS_PODFILE_DIR_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios/. PODS_ROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = io.flutter.plugins.webviewFlutterExample PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/DerivedSources PROJECT_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios PROJECT_FILE_PATH = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build PROJECT_TEMP_ROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_DIR_iphoneos13_6 = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_NAME = iphoneos13.6 SDK_NAMES = iphoneos13.6 SDK_PRODUCT_BUILD_VERSION = 17G64 SDK_VERSION = 13.6 SDK_VERSION_ACTUAL = 130600 SDK_VERSION_MAJOR = 130000 SDK_VERSION_MINOR = 600 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos/DerivedSour ces SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/SharedPrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios SRCROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_MACCATALYST = NO SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/ Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/ Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/ Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/ Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/ Utilities SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build TEMP_FILES_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build TEMP_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios/Runner.build/Release-iphoneo s/Runner.build TEMP_ROOT = /Users/fox/Downloads/plugins-master/packages/webvie w_flutter/example/build/ios TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/Library/Frameworks TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPh oneOS.platform/Developer/usr/lib TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/Xc odeDefault.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO TREE_SHAKE_ICONS = false UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = fox USER_APPS_DIR = /Users/fox/Applications USER_LIBRARY_DIR = /Users/fox/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES VALIDATE_PRODUCT = YES VALIDATE_WORKSPACE = NO VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = fox VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 11E708 XCODE_VERSION_ACTUAL = 1160 XCODE_VERSION_MAJOR = 1100 XCODE_VERSION_MINOR = 1160 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal 2020-09-24 15:41:38.001 xcodebuild[25906:1854071] DTDeviceKit: deviceType from 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 was NULL 2020-09-24 15:41:38.119 xcodebuild[25906:1854215] DTDeviceKit: deviceType from 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 was NULL [ +95 ms] Building Runner.app for 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 [ +36 ms] Xcode workspace settings not found, skipping build system migration [ +98 ms] executing: xattr -r -d com.apple.FinderInfo /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios [+1162 ms] Warning: Missing build name (CFBundleShortVersionString). [ +3 ms] Warning: Missing build number (CFBundleVersion). [ +1 ms] Action Required: You must set a build name and number in the pubspec.yaml file version field before submitting to the App Store. [ +9 ms] Automatically signing iOS for device deployment using specified development team in Xcode project: LC4DNJ3N8B [ +116 ms] Found plugin webview_flutter at /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webvie w_flutter-0.3.24/ [ +16 ms] Found plugin integration_test at /Users/fox/Downloads/plugins-master/packages/integration_test/ [ +57 ms] executing: which pod [ +18 ms] executing: pod --version [+3022 ms] 1.9.3 [ +5 ms] Running pod install... [+2551 ms] Running pod install... (completed in 2.5s) [ +1 ms] CocoaPods' output: ↳ [ +3 ms] Preparing Analyzing dependencies Inspecting targets to integrate Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``) Finding Podfile changes - Flutter - integration_test - webview_flutter Fetching external sources -> Fetching podspec for `Flutter` from `Flutter` -> Fetching podspec for `integration_test` from `.symlinks/plugins/integration_test/ios` -> Fetching podspec for `webview_flutter` from `.symlinks/plugins/webview_flutter/ios` Resolving dependencies of `Podfile` CDN: trunk Relative path: CocoaPods-version.yml exists! Returning local because checking is only perfomed in repo update Comparing resolved specification to the sandbox manifest - Flutter - integration_test - webview_flutter Downloading dependencies -> Using Flutter (1.0.0) -> Using integration_test (0.0.1) -> Using webview_flutter (0.0.1) - Running pre install hooks Generating Pods project - Creating Pods project - Installing files into Pods project - Adding source files - Adding frameworks - Adding libraries - Adding resources - Adding development pod helper files - Linking headers - Installing Pod Targets - Installing target `Flutter` iOS 8.0 - Installing target `integration_test` iOS 8.0 - Generating module map file at `Pods/Target Support Files/integration_test/integration_test.modulemap` - Generating umbrella header at `Pods/Target Support Files/integration_test/integration_test-umbrella.h` - Generating dummy source at `Pods/Target Support Files/integration_test/integration_test-dummy.m` - Installing target `webview_flutter` iOS 8.0 - Generating module map file at `Pods/Target Support Files/webview_flutter/webview_flutter.modulemap` - Generating umbrella header at `Pods/Target Support Files/webview_flutter/webview_flutter-umbrella.h` - Generating dummy source at `Pods/Target Support Files/webview_flutter/webview_flutter-dummy.m` - Installing Aggregate Targets - Installing target `Pods-Runner` iOS 8.0 - Generating dummy source at `Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m` - Generating deterministic UUIDs - Stabilizing target UUIDs - Running post install hooks - Podfile - Writing Xcode project file to `Pods/Pods.xcodeproj` Cleaning up sandbox directory Integrating client project Integrating target `Pods-Runner` (`Runner.xcodeproj` project) - Writing Lockfile in `Podfile.lock` - Writing Manifest in `Pods/Manifest.lock` - Running post install hooks - cocoapods-stats from `/Library/Ruby/Gems/2.6.0/gems/cocoapods-stats-1.1.0/lib/cocoapods_plugi n.rb` -> Pod installation complete! There are 3 dependencies from the Podfile and 3 total pods installed. [ +2 ms] Error output from CocoaPods: ↳ [ ] [!] Automatically assigning platform `iOS` with version `8.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`. [ +11 ms] executing: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Ru nner/Info.plist [ +13 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Ru nner/Info.plist [ ] {"UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIIn terfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UII nterfaceOrientationLandscapeRight"],"CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENT IFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFB undleVersion":"$(FLUTTER_BUILD_NUMBER)","UILaunchStoryboardName":"LaunchScreen", "CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"CFBundleSho rtVersionString":"$(FLUTTER_BUILD_NAME)","UISupportedInterfaceOrientations":["UI InterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterface OrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CF BundleSignature":"????","CFBundlePackageType":"APPL","io.flutter.embedded_views_ preview":true,"CFBundleDevelopmentRegion":"en","CFBundleName":"webview_flutter_e xample"} [ +2 ms] executing: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/we bview_flutter_exampleTests/Info.plist [ +11 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/we bview_flutter_exampleTests/Info.plist [ ] {"CFBundleShortVersionString":"1.0","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENT IFIER)","CFBundleName":"$(PRODUCT_NAME)","CFBundleInfoDictionaryVersion":"6.0"," CFBundleDevelopmentRegion":"$(DEVELOPMENT_LANGUAGE)","CFBundleExecutable":"$(EXE CUTABLE_NAME)","CFBundlePackageType":"$(PRODUCT_BUNDLE_PACKAGE_TYPE)","CFBundleV ersion":"1"} [ +5 ms] executing: mkfifo /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.QM8d4b/flutter_bu ild_log_pipe.NtwRpG/pipe_to_stdout [ +11 ms] Exit code 0 from: mkfifo /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.QM8d4b/flutter_bu ild_log_pipe.NtwRpG/pipe_to_stdout [ +3 ms] Running Xcode build... [ +1 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/exam ple/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutt er_tools.QM8d4b/flutter_build_log_pipe.NtwRpG/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO [+24303 ms] Running Xcode build... (completed in 24,303ms, longer than expected) [ +5 ms] └─Compiling, linking and signing... ^Cfox-MacBook-Air:example fox$ flutter run -v [ +230 ms] executing: [/Users/fox/Documents/sdk/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +65 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ +1 ms] fba99f6cf9a14512e461e3122c8ddfaa25394e89 [ +1 ms] executing: [/Users/fox/Documents/sdk/flutter/] git tag --contains HEAD [ +483 ms] Exit code 0 from: git tag --contains HEAD [ +1 ms] 1.20.4 [ +33 ms] executing: [/Users/fox/Documents/sdk/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +33 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +1 ms] origin/stable [ +1 ms] executing: [/Users/fox/Documents/sdk/flutter/] git ls-remote --get-url origin [ +63 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +152 ms] executing: [/Users/fox/Documents/sdk/flutter/] git rev-parse --abbrev-ref HEAD [ +16 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] stable [ +10 ms] executing: sw_vers -productName [ +22 ms] Exit code 0 from: sw_vers -productName [ ] Mac OS X [ ] executing: sw_vers -productVersion [ +20 ms] Exit code 0 from: sw_vers -productVersion [ ] 10.15.5 [ ] executing: sw_vers -buildVersion [ +22 ms] Exit code 0 from: sw_vers -buildVersion [ ] 19F101 [ +68 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +13 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +29 ms] executing: /Users/fox/Library/Android/sdk/platform-tools/adb devices -l [ +10 ms] executing: /usr/bin/xcode-select --print-path [ +9 ms] Exit code 0 from: /usr/bin/xcode-select --print-path [ ] /Applications/Xcode.app/Contents/Developer [ +1 ms] executing: /usr/bin/xcodebuild -version [ +393 ms] Exit code 0 from: /usr/bin/xcodebuild -version [ ] Xcode 11.6 Build version 11E708 [ +3 ms] executing: xcrun --find xcdevice [ +12 ms] Exit code 0 from: xcrun --find xcdevice [ ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice [ ] executing: xcrun xcdevice list --timeout 2 [ +5 ms] /usr/bin/xcrun simctl list --json devices [ ] executing: /usr/bin/xcrun simctl list --json devices [ +83 ms] List of devices attached [ +146 ms] { "devices" : { "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [ { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/E17A409F-DDD5-4B41-A201-5B2AC2EF4C81\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E17A409F-DDD5-4B41-A201-5B2AC2EF4C81", "udid" : "E17A409F-DDD5-4B41-A201-5B2AC2EF4C81", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/76586807-5DFC-4619-AD7D-8334C3E51818\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/76586807-5DFC-4619-AD7D-8334C3E51818", "udid" : "76586807-5DFC-4619-AD7D-8334C3E51818", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/32807F37-2F88-4CD6-8405-B5ACE54149B8\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/32807F37-2F88-4CD6-8405-B5ACE54149B8", "udid" : "32807F37-2F88-4CD6-8405-B5ACE54149B8", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [ { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/F72E2AC8-5163-40F5-BF70-FE97B27E425F\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/F72E2AC8-5163-40F5-BF70-FE97B27E425F", "udid" : "F72E2AC8-5163-40F5-BF70-FE97B27E425F", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/F6400338-B761-469C-B463-A1C2E1B56EA4\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/F6400338-B761-469C-B463-A1C2E1B56EA4", "udid" : "F6400338-B761-469C-B463-A1C2E1B56EA4", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/867F1617-4D39-4BB0-9F45-584BBAB46AF7\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/867F1617-4D39-4BB0-9F45-584BBAB46AF7", "udid" : "867F1617-4D39-4BB0-9F45-584BBAB46AF7", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 40mm" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/E9B0E357-6E60-459B-9120-DAEF8D30B1FF\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E9B0E357-6E60-459B-9120-DAEF8D30B1FF", "udid" : "E9B0E357-6E60-459B-9120-DAEF8D30B1FF", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.iOS-13-6" : [ { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/76F6BC90-09C1-4E03-B30B-E5014F1263C3\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/76F6BC90-09C1-4E03-B30B-E5014F1263C3", "udid" : "76F6BC90-09C1-4E03-B30B-E5014F1263C3", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/96BD7C7D-A559-4F23-9B1E-8AB64ACD846E\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/96BD7C7D-A559-4F23-9B1E-8AB64ACD846E", "udid" : "96BD7C7D-A559-4F23-9B1E-8AB64ACD846E", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/B816C283-E80D-4AE1-B65B-B2688F795241\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/B816C283-E80D-4AE1-B65B-B2688F795241", "udid" : "B816C283-E80D-4AE1-B65B-B2688F795241", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/511D9372-EAA6-4B95-83FA-3FD7346E775D\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/511D9372-EAA6-4B95-83FA-3FD7346E775D", "udid" : "511D9372-EAA6-4B95-83FA-3FD7346E775D", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/D2DC70CD-F180-4082-89F5-2B3D10A89754\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/D2DC70CD-F180-4082-89F5-2B3D10A89754", "udid" : "D2DC70CD-F180-4082-89F5-2B3D10A89754", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/E9E5E9F8-D787-4BAE-B092-9F16FDEB0778\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E9E5E9F8-D787-4BAE-B092-9F16FDEB0778", "udid" : "E9E5E9F8-D787-4BAE-B092-9F16FDEB0778", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-", "state" : "Shutdown", "name" : "iPhone SE (2nd generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/788550F9-8FD1-4C57-9885-EE338C2B6AE8\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/788550F9-8FD1-4C57-9885-EE338C2B6AE8", "udid" : "788550F9-8FD1-4C57-9885-EE338C2B6AE8", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/1DDBBCFE-F36C-4D6B-AE1C-B1E17C7951D5\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/1DDBBCFE-F36C-4D6B-AE1C-B1E17C7951D5", "udid" : "1DDBBCFE-F36C-4D6B-AE1C-B1E17C7951D5", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-", "state" : "Shutdown", "name" : "iPad (7th generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/E8E6230F-62C2-408A-893F-5AC16F1B0848\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/E8E6230F-62C2-408A-893F-5AC16F1B0848", "udid" : "E8E6230F-62C2-408A-893F-5AC16F1B0848", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (2nd generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/DCDE3854-EB47-4CC4-AB36-776E76067690\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/DCDE3854-EB47-4CC4-AB36-776E76067690", "udid" : "DCDE3854-EB47-4CC4-AB36-776E76067690", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (4th generation)" }, { "dataPath" : "\/Users\/fox\/Library\/Developer\/CoreSimulator\/Devices\/7660904D-ED7B-4F34-A0F9-3FB5FE406428\/data", "logPath" : "\/Users\/fox\/Library\/Logs\/CoreSimulator\/7660904D-ED7B-4F34-A0F9-3FB5FE406428", "udid" : "7660904D-ED7B-4F34-A0F9-3FB5FE406428", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ] } } [+3104 ms] [ { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,4", "identifier" : "F6400338-B761-469C-B463-A1C2E1B56EA4", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 44mm", "name" : "Apple Watch Series 4 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,9", "identifier" : "E8E6230F-62C2-408A-893F-5AC16F1B0848", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-11-2nd-1", "modelName" : "iPad Pro (11-inch) (2nd generation)", "name" : "iPad Pro (11-inch) (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV5,3", "identifier" : "E17A409F-DDD5-4B41-A201-5B2AC2EF4C81", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4", "modelName" : "Apple TV", "name" : "Apple TV" }, { "simulator" : false, "operatingSystemVersion" : "13.6 (17G68)", "interface" : "usb", "available" : true, "platform" : "com.apple.platform.iphoneos", "modelCode" : "iPhone8,2", "identifier" : "4db692c992fc8cdd3fe0f7783d8cd220acbe5810", "architecture" : "arm64", "modelUTI" : "com.apple.iphone-6s-plus-e1ccb7", "modelName" : "iPhone 6s Plus", "name" : "iPhone" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "76586807-5DFC-4619-AD7D-8334C3E51818", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K", "name" : "Apple TV 4K" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,3", "identifier" : "511D9372-EAA6-4B95-83FA-3FD7346E775D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-1", "modelName" : "iPhone 11 Pro", "name" : "iPhone 11 Pro" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,3", "identifier" : "867F1617-4D39-4BB0-9F45-584BBAB46AF7", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 40mm", "name" : "Apple Watch Series 5 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad6,4", "identifier" : "788550F9-8FD1-4C57-9885-EE338C2B6AE8", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba", "modelName" : "iPad Pro (9.7-inch)", "name" : "iPad Pro (9.7-inch)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,5", "identifier" : "D2DC70CD-F180-4082-89F5-2B3D10A89754", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-max-1", "modelName" : "iPhone 11 Pro Max", "name" : "iPhone 11 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,12", "identifier" : "DCDE3854-EB47-4CC4-AB36-776E76067690", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-12point9-4th-1", "modelName" : "iPad Pro (12.9-inch) (4th generation)", "name" : "iPad Pro (12.9-inch) (4th generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "32807F37-2F88-4CD6-8405-B5ACE54149B8", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K (at 1080p)", "name" : "Apple TV 4K (at 1080p)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "B816C283-E80D-4AE1-B65B-B2688F795241", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad7,12", "identifier" : "1DDBBCFE-F36C-4D6B-AE1C-B1E17C7951D5", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-7-wwan-1", "modelName" : "iPad (7th generation)", "name" : "iPad (7th generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,5", "identifier" : "96BD7C7D-A559-4F23-9B1E-8AB64ACD846E", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-plus-2", "modelName" : "iPhone 8 Plus", "name" : "iPhone 8 Plus" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,3", "identifier" : "F72E2AC8-5163-40F5-BF70-FE97B27E425F", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 40mm", "name" : "Apple Watch Series 4 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,4", "identifier" : "76F6BC90-09C1-4E03-B30B-E5014F1263C3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-2", "modelName" : "iPhone 8", "name" : "iPhone 8" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,4", "identifier" : "E9B0E357-6E60-459B-9120-DAEF8D30B1FF", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,8", "identifier" : "E9E5E9F8-D787-4BAE-B092-9F16FDEB0778", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-se-1", "modelName" : "iPhone SE (2nd generation)", "name" : "iPhone SE (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.6 (17G64)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad11,3", "identifier" : "7660904D-ED7B-4F34-A0F9-3FB5FE406428", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-air3-wifi-1", "modelName" : "iPad Air (3rd generation)", "name" : "iPad Air (3rd generation)" } ] [ +16 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ +8 ms] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +365 ms] Found plugin webview_flutter at /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ [ +33 ms] Found plugin integration_test at /Users/fox/Downloads/plugins-master/packages/integration_test/ [ +89 ms] Found plugin webview_flutter at /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ [ +12 ms] Found plugin integration_test at /Users/fox/Downloads/plugins-master/packages/integration_test/ [ +84 ms] Generating /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +163 ms] Starting incremental build... [ +3 ms] Initializing file store [ +15 ms] Skipping target: gen_localizations [ +6 ms] complete [ +6 ms] Launching lib/main.dart on iPhone in debug mode... [ +9 ms] /Users/fox/Documents/sdk/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_tool.zdyG7M/app.dill --packages .packages -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill.track.dill [ +17 ms] executing: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist [ +11 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist [ ] {"UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundl eIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFBundleVersion":"$(FLUTTER_BUILD_NUMBER)","UILaunchStoryboardName":"LaunchScreen","CFBundl eExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"CFBundleShortVersionString":"$(FLUTTER_BUILD_NAME)","UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientatio nLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CFBundleSignature":"????","CFBundlePackageType":"APPL","io.flutter.embedded_views_preview":true,"C FBundleDevelopmentRegion":"en","CFBundleName":"webview_flutter_example"} [ +6 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/] /usr/bin/xcodebuild -list [ +23 ms] <- compile package:webview_flutter_example/main.dart [+3189 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -list Information about project "Runner": Targets: Runner webview_flutter_exampleTests Build Configurations: Debug Release If no build configuration is specified and -scheme is not passed then "Release" is used. Schemes: Runner 2020-09-24 15:42:33.929 xcodebuild[26293:1856848] DTDeviceKit: deviceType from 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 was NULL 2020-09-24 15:42:34.055 xcodebuild[26293:1856977] DTDeviceKit: deviceType from 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 was NULL ⣽[ +13 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj -scheme Runner -showBuildSettings [ +1 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj -scheme Runner -showBuildSettings (This is taking an unexpectedly long time.)⣷[+5421 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj -scheme Runner -showBuildSettings Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = fox ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO APPLY_RULES_IN_COPY_HEADERS = NO ARCHS = armv7 arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios BUILD_LIBRARY_FOR_DISTRIBUTION = NO BUILD_ROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/ BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS BUNDLE_FORMAT = shallow BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks BUNDLE_PLUGINS_FOLDER_PATH = PlugIns BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers CACHE_ROOT = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode CCHROOT = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.6 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DART_OBFUSCATION = false DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 DERIVED_FILES_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = en DEVELOPMENT_TEAM = LC4DNJ3N8B DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation DONT_GENERATE_INFOPLIST_FILE = NO DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HARDENED_RUNTIME = NO ENABLE_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = NO ENABLE_TESTING_SEARCH_PATHS = NO ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_DESTINATION = Signature ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/fox/Documents/sdk/flutter FLUTTER_TARGET = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/../Flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 GCC_SYMBOLS_PRIVATE_EXTERN = YES GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/fox ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = fox INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos/webview_flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_FILE_LIST_normal_armv7 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0 LLVM_TARGET_TRIPLE_VENDOR = apple LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString LOCALIZED_STRING_SWIFTUI_SUPPORT = YES LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 19F101 MAC_OS_X_VERSION_ACTUAL = 101505 MAC_OS_X_VERSION_MAJOR = 101500 MAC_OS_X_VERSION_MINOR = 1505 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos/Runner.app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = NO NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap" OTHER_CPLUSPLUSFLAGS = -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap" OTHER_LDFLAGS = -framework Flutter OTHER_SWIFT_FLAGS = -D COCOAPODS -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap" PACKAGE_CONFIG = .packages PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/fox/Documents/sdk/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/fox/Lib rary/Android/sdk/tools:/Users/fox/Library/Android/sdk/platform-tools PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 17G64 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos PODS_PODFILE_DIR_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/. PODS_ROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = io.flutter.plugins.webviewFlutterExample PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/DerivedSources PROJECT_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios PROJECT_FILE_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build PROJECT_TEMP_ROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_DIR_iphoneos13_6 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_NAME = iphoneos13.6 SDK_NAMES = iphoneos13.6 SDK_PRODUCT_BUILD_VERSION = 17G64 SDK_VERSION = 13.6 SDK_VERSION_ACTUAL = 130600 SDK_VERSION_MAJOR = 130000 SDK_VERSION_MINOR = 600 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/SharedPrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios SRCROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_MACCATALYST = NO SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILES_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_ROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO TREE_SHAKE_ICONS = false UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = fox USER_APPS_DIR = /Users/fox/Applications USER_LIBRARY_DIR = /Users/fox/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES VALIDATE_PRODUCT = YES VALIDATE_WORKSPACE = NO VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = fox VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 11E708 XCODE_VERSION_ACTUAL = 1160 XCODE_VERSION_MAJOR = 1100 XCODE_VERSION_MINOR = 1160 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +63 ms] Building Runner.app for 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 [ +61 ms] Xcode workspace settings not found, skipping build system migration [ +96 ms] executing: xattr -r -d com.apple.FinderInfo /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios [ +919 ms] Warning: Missing build name (CFBundleShortVersionString). [ +1 ms] Warning: Missing build number (CFBundleVersion). [ +1 ms] Action Required: You must set a build name and number in the pubspec.yaml file version field before submitting to the App Store. [ +10 ms] Automatically signing iOS for device deployment using specified development team in Xcode project: LC4DNJ3N8B [ +128 ms] Found plugin webview_flutter at /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ [ +50 ms] Found plugin integration_test at /Users/fox/Downloads/plugins-master/packages/integration_test/ [ +54 ms] executing: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist [ +18 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist [ +1 ms] {"UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundl eIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFBundleVersion":"$(FLUTTER_BUILD_NUMBER)","UILaunchStoryboardName":"LaunchScreen","CFBundl eExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"CFBundleShortVersionString":"$(FLUTTER_BUILD_NAME)","UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientatio nLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CFBundleSignature":"????","CFBundlePackageType":"APPL","io.flutter.embedded_views_preview":true,"C FBundleDevelopmentRegion":"en","CFBundleName":"webview_flutter_example"} [ +8 ms] executing: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/webview_flutter_exampleTests/Info.plist [ +19 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/webview_flutter_exampleTests/Info.plist [ ] {"CFBundleShortVersionString":"1.0","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleName":"$(PRODUCT_NAME)","CFBundleInfoDictionaryVersion":"6.0","CFBundleDevelopmentRegion":"$(DEVELOPMENT_LA NGUAGE)","CFBundleExecutable":"$(EXECUTABLE_NAME)","CFBundlePackageType":"$(PRODUCT_BUNDLE_PACKAGE_TYPE)","CFBundleVersion":"1"} [ +7 ms] executing: mkfifo /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout [ +13 ms] Exit code 0 from: mkfifo /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout [ +7 ms] Running Xcode build... [ +3 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO [+13975 ms] Running Xcode build... (completed in 13,950ms, longer than expected) [ +3 ms] └─Compiling, linking and signing... [+12115 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO` ```
larryluo1212 commented 3 years ago

Hi @larryluo123 I tried your code with 30.000 and it does not crashed. This may not be related to the webView plugin but instead with your code, loading items like this take so much memory of your device and this is not a best practice.

I tested on a iPhone simulator and this was my output:

Performing hot restart...
Syncing files to device iPhone 11 Pro Max...
Restarted application in 2,640ms.
flutter:  onPageFinished
flutter:  htmlHeight : 810000

On what device did you executed this code? what number did you added in the for loop that caused the issue? Can you provide the output of flutter run -v?

Log part 2 ``` Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout SDKROOT = iphoneos13.6 VERBOSE_SCRIPT_LOGGING = YES note: Using new build system note: Building targets in parallel note: Planning build note: Constructing build description CreateBuildDirectory /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products (in target 'Pods-Runner' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods builtin-create-build-directory /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products CreateBuildDirectory /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex (in target 'Pods-Runner' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods builtin-create-build-directory /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex Build system information note: Removed stale file '/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products/Debug-iphoneos/Runner.app' WriteAuxiliaryFile /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-headers .yaml (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods write-file /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-hea ders.yaml WriteAuxiliaryFile /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/all-product-header s.yaml (in target 'integration_test' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods write-file /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/all-product-he aders.yaml CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/arm6 4/FlutterWebView.o /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FlutterWebView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=webview_flutter -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-hea ders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/webview_flutter -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FlutterWebView.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FlutterWebView.dia -c /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FlutterWebView.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FlutterWebView.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/arm6 4/FLTWKNavigationDelegate.o /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FLTWKNavigationDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=webview_flutter -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-hea ders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/webview_flutter -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTWKNavigationDelegate.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTWKNavigationDelegate.dia -c /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FLTWKNavigationDelegate.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTWKNavigationDelegate.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/arm6 4/JavaScriptChannelHandler.o /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/JavaScriptChannelHandler.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=webview_flutter -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-hea ders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/webview_flutter -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/JavaScriptChannelHandler.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/JavaScriptChannelHandler.dia -c /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/JavaScriptChannelHandler.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/JavaScriptChannelHandler.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/arm6 4/webview_flutter-dummy.o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=webview_flutter -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-hea ders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/webview_flutter -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/webview_flutter-dummy.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/webview_flutter-dummy.dia -c /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-dummy.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/webview_flutter-dummy.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/arm6 4/FLTWebViewFlutterPlugin.o /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FLTWebViewFlutterPlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=webview_flutter -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-hea ders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/webview_flutter -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTWebViewFlutterPlugin.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTWebViewFlutterPlugin.dia -c /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FLTWebViewFlutterPlugin.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTWebViewFlutterPlugin.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/arm6 4/FLTCookieManager.o /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FLTCookieManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=webview_flutter -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutt er-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/all-product-hea ders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/webview_flutter -project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/webview_flutter -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/DerivedSource s -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/webview_flutter/webview_flutter-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTCookieManager.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTCookieManager.dia -c /Users/fox/Documents/sdk/flutter/.pub-cache/hosted/pub.flutter-io.cn/webview_flutter-0.3.24/ios/Classes/FLTCookieManager.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/FLTCookieManager.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal/arm 64/integration_test-dummy.o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/integration_test/integration_test-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'integration_test' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=integration_test -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_te st-generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_ test-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_ test-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/all-product-he aders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_te st-project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/integration_test/integration_test-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/integration_test-dummy.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/integration_test-dummy.dia -c /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/integration_test/integration_test-dummy.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/integration_test-dummy.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal/arm 64/IntegrationTestPlugin.o /Users/fox/Downloads/plugins-master/packages/integration_test/ios/Classes/IntegrationTestPlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'integration_test' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=integration_test -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_te st-generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_ test-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_ test-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/all-product-he aders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_te st-project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/integration_test/integration_test-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/IntegrationTestPlugin.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/IntegrationTestPlugin.dia -c /Users/fox/Downloads/plugins-master/packages/integration_test/ios/Classes/IntegrationTestPlugin.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/IntegrationTestPlugin.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal/arm 64/IntegrationTestIosTest.o /Users/fox/Downloads/plugins-master/packages/integration_test/ios/Classes/IntegrationTestIosTest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'integration_test' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=integration_test -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_te st-generated-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_ test-own-target-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_ test-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/all-product-he aders.yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/integration_te st-project-headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Private/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es-normal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/DerivedSourc es -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -include /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/integration_test/integration_test-prefix.pch -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/IntegrationTestIosTest.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/IntegrationTestIosTest.dia -c /Users/fox/Downloads/plugins-master/packages/integration_test/ios/Classes/IntegrationTestIosTest.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/IntegrationTestIosTest.o Libtool /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/libwebview_flutter.a normal arm64 (in target 'webview_flutter' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export IPHONEOS_DEPLOYMENT_TARGET=8.0 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -filelist /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/webview_flutter.LinkFileList -dependency_info /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/webview_flutter.build/Objects-normal/ arm64/webview_flutter_libtool_dependency_info.dat -o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter/libwebview_flutter.a Libtool /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test/libintegration_test.a normal arm64 (in target 'integration_test' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export IPHONEOS_DEPLOYMENT_TARGET=8.0 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test -filelist /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/integration_test.LinkFileList -dependency_info /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/integration_test.build/Objects-normal /arm64/integration_test_libtool_dependency_info.dat -o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test/libintegration_test.a WriteAuxiliaryFile /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/all-product-headers.yam l (in target 'Pods-Runner' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods write-file /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/all-product-headers .yaml CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Objects-normal/arm64/Po ds-Runner-dummy.o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/Pods-Runner/Pods-Runner-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Pods-Runner' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Pods-Runner-generat ed-files.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Pods-Runner-own-t arget-headers.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Pods-Runner-all-n on-framework-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/all-product-headers .yaml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Pods-Runner-project -headers.hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/DerivedSources-no rmal/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/DerivedSources/ar m64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/DerivedSources -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Objects-normal/arm6 4/Pods-Runner-dummy.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Objects-normal/arm6 4/Pods-Runner-dummy.dia -c /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Target\ Support\ Files/Pods-Runner/Pods-Runner-dummy.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Objects-normal/arm6 4/Pods-Runner-dummy.o Libtool /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/libPods-Runner.a normal arm64 (in target 'Pods-Runner' from project 'Pods') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export IPHONEOS_DEPLOYMENT_TARGET=8.0 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -filelist /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Objects-normal/arm6 4/Pods-Runner.LinkFileList -dependency_info /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/Pods-Runner.build/Objects-normal/arm6 4/Pods-Runner_libtool_dependency_info.dat -o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/libPods-Runner.a ProcessProductPackaging "" /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios Entitlements: { "application-identifier" = "LC4DNJ3N8B.io.flutter.plugins.webviewFlutterExample"; "com.apple.developer.team-identifier" = LC4DNJ3N8B; "get-task-allow" = 1; "keychain-access-groups" = ( "LC4DNJ3N8B.io.flutter.plugins.webviewFlutterExample" ); } builtin-productPackagingUtility -entitlements -format xml -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-B71376B4FB8384EF9D5 F3F84.sh (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios /bin/sh -c /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-B71376B4FB8384E F9D5F3F84.sh PhaseScriptExecution Run\ Script /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F6004 384FC.sh (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export ACTION=build export AD_HOC_CODE_SIGNING_ALLOWED=NO export ALTERNATE_GROUP=staff export ALTERNATE_MODE=u+w,go-w,a+rX export ALTERNATE_OWNER=fox export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO export ALWAYS_SEARCH_USER_PATHS=NO export ALWAYS_USE_SEPARATE_HEADERMAPS=NO export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer export APPLE_INTERNAL_DIR=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY=NO export APPLY_RULES_IN_COPY_FILES=NO export APPLY_RULES_IN_COPY_HEADERS=NO export ARCHS=arm64 export ARCHS_STANDARD="armv7 arm64" export ARCHS_STANDARD_32_64_BIT="armv7 arm64" export ARCHS_STANDARD_32_BIT=armv7 export ARCHS_STANDARD_64_BIT=arm64 export ARCHS_STANDARD_INCLUDING_64_BIT="armv7 arm64" export ARCHS_UNIVERSAL_IPHONE_OS="armv7 arm64" export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" export AppIdentifierPrefix=LC4DNJ3N8B. export BITCODE_GENERATION_MODE=marker export BUILD_ACTIVE_RESOURCES_ONLY=NO export BUILD_COMPONENTS="headers build" export BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios export BUILD_LIBRARY_FOR_DISTRIBUTION=NO export BUILD_ROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export BUNDLE_CONTENTS_FOLDER_PATH_deep=Contents/ export BUNDLE_EXECUTABLE_FOLDER_NAME_deep=MacOS export BUNDLE_FORMAT=shallow export BUNDLE_FRAMEWORKS_FOLDER_PATH=Frameworks export BUNDLE_PLUGINS_FOLDER_PATH=PlugIns export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH=PrivateHeaders export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH=Headers export CACHE_ROOT=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode export CCHROOT=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED=YES export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES export CLANG_WARN_BOOL_CONVERSION=YES export CLANG_WARN_COMMA=YES export CLANG_WARN_CONSTANT_CONVERSION=YES export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR export CLANG_WARN_EMPTY_BODY=YES export CLANG_WARN_ENUM_CONVERSION=YES export CLANG_WARN_INFINITE_RECURSION=YES export CLANG_WARN_INT_CONVERSION=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES export CLANG_WARN_STRICT_PROTOTYPES=YES export CLANG_WARN_SUSPICIOUS_MOVE=YES export CLANG_WARN_UNREACHABLE_CODE=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES export CLASS_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaCla sses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app export CODE_SIGNING_ALLOWED=YES export CODE_SIGNING_REQUIRED=YES export CODE_SIGN_CONTEXT_CLASS=XCiPhoneOSCodeSignContext export CODE_SIGN_IDENTITY="iPhone Developer" export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES export COLOR_DIAGNOSTICS=NO export COMBINE_HIDPI_IMAGES=NO export COMPILER_INDEX_STORE_ENABLE=NO export COMPOSITE_SDK_DIRS=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export CONFIGURATION_TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos export CONTENTS_FOLDER_PATH=Runner.app export COPYING_PRESERVES_HFS_DATA=NO export COPY_HEADERS_RUN_UNIFDEF=NO export COPY_PHASE_STRIP=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES export CORRESPONDING_SIMULATOR_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export CORRESPONDING_SIMULATOR_PLATFORM_NAME=iphonesimulator export CORRESPONDING_SIMULATOR_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk export CORRESPONDING_SIMULATOR_SDK_NAME=iphonesimulator13.6 export CP=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY=NO export CURRENT_ARCH=undefined_arch export CURRENT_PROJECT_VERSION=1 export CURRENT_VARIANT=normal export DART_OBFUSCATION=false export DEAD_CODE_STRIPPING=YES export DEBUGGING_SYMBOLS=YES export DEBUG_INFORMATION_FORMAT=dwarf export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 export DEFAULT_DEXT_INSTALL_PATH=/System/Library/DriverExtensions export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions export DEFINES_MODULE=NO export DEPLOYMENT_LOCATION=NO export DEPLOYMENT_POSTPROCESSING=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=miphoneos-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-miphoneos-version-min= export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_version_min export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6" export DERIVED_FILES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Deri vedSources export DERIVED_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Deriv edSources export DERIVED_SOURCES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/De rivedSources export DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER=NO export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE=en export DEVELOPMENT_TEAM=LC4DNJ3N8B export DOCUMENTATION_FOLDER_PATH=Runner.app/en.lproj/Documentation export DONT_GENERATE_INFOPLIST_FILE=NO export DO_HEADER_SCANNING_IN_JAM=NO export DSTROOT=/tmp/Runner.dst export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO export DWARF_DSYM_FOLDER_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export EFFECTIVE_PLATFORM_NAME=-iphoneos export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO export EMBEDDED_PROFILE_NAME=embedded.mobileprovision export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO export ENABLE_BITCODE=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES export ENABLE_HARDENED_RUNTIME=NO export ENABLE_HEADER_DEPENDENCIES=YES export ENABLE_ON_DEMAND_RESOURCES=YES export ENABLE_PREVIEWS=NO export ENABLE_STRICT_OBJC_MSGSEND=YES export ENABLE_TESTABILITY=YES export ENABLE_TESTING_SEARCH_PATHS=NO export ENTITLEMENTS_ALLOWED=YES export ENTITLEMENTS_DESTINATION=Signature export ENTITLEMENTS_REQUIRED=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS" export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj" export EXECUTABLES_FOLDER_PATH=Runner.app/Executables export EXECUTABLE_FOLDER_PATH=Runner.app export EXECUTABLE_NAME=Runner export EXECUTABLE_PATH=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY=2DCB10885CFB2F9BD1F6B6CC97C5ABF0C8399F63 export EXPANDED_CODE_SIGN_IDENTITY_NAME="Apple Development: eas (2A726F67HL)" export EXPANDED_PROVISIONING_PROFILE=50a5e38a-5698-4cbf-aa25-983a9f42b672 export FILE_LIST=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/Link FileList export FIXED_FILES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedF iles export FLUTTER_APPLICATION_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/fox/Documents/sdk/flutter export FLUTTER_SUPPRESS_ANALYTICS=true export FLUTTER_TARGET=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/../Flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter" export FRAMEWORK_VERSION=A export FULL_PRODUCT_NAME=Runner.app export GCC3_VERSION=3.3 export GCC_C_LANGUAGE_STANDARD=gnu99 export GCC_DYNAMIC_NO_PIC=NO export GCC_INLINES_ARE_PRIVATE_EXTERN=YES export GCC_NO_COMMON_BLOCKS=YES export GCC_OPTIMIZATION_LEVEL=0 export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++" export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1" export GCC_SYMBOLS_PRIVATE_EXTERN=NO export GCC_THUMB_SUPPORT=YES export GCC_TREAT_WARNINGS_AS_ERRORS=NO export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION=YES export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR=YES export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION=YES export GCC_WARN_UNUSED_VARIABLE=YES export GENERATE_MASTER_OBJECT_FILE=NO export GENERATE_PKGINFO_FILE=YES export GENERATE_PROFILING_CODE=NO export GENERATE_TEXT_BASED_STUBS=NO export GID=20 export GROUP=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES export HEADERMAP_USES_VFS=NO export HEADER_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/include "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter"" export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/fox export ICONV=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS=YES export INFOPLIST_FILE=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT=binary export INFOPLIST_PATH=Runner.app/Info.plist export INFOPLIST_PREPROCESS=NO export INFOSTRINGS_PATH=Runner.app/en.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS=NO export INSTALLHDRS_COPY_PHASE=NO export INSTALLHDRS_SCRIPT_PHASE=NO export INSTALL_DIR=/tmp/Runner.dst/Applications export INSTALL_GROUP=staff export INSTALL_MODE_FLAG=u+w,go-w,a+rX export INSTALL_OWNER=fox export INSTALL_PATH=/Applications export INSTALL_ROOT=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET=8.0 export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8" export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES=YES export JAVA_ARCHIVE_TYPE=JAR export JAVA_COMPILER=/usr/bin/javac export JAVA_FOLDER_PATH=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources export JAVA_JAR_FLAGS=cv export JAVA_SOURCE_SUBDIR=. export JAVA_USE_DEPENDENCIES=YES export JAVA_ZIP_FLAGS=-urg export JIKES_DEFAULT_FLAGS="+E +OLDCSO" export KASAN_DEFAULT_CFLAGS="-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow" export KEEP_PRIVATE_EXTERNS=NO export LD_DEPENDENCY_INFO_FILE=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.buil d/Objects-normal/undefined_arch/Runner_dependency_info.dat export LD_GENERATE_MAP_FILE=NO export LD_MAP_FILE_PATH=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runne r-LinkMap-normal-undefined_arch.txt export LD_NO_PIE=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks" export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX=lex export LIBRARY_DEXT_INSTALL_PATH=/Library/DriverExtensions export LIBRARY_FLAG_NOSPACE=YES export LIBRARY_FLAG_PREFIX=-l export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions export LIBRARY_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter" export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_arm64=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner. build/Objects-normal/arm64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES=YES export LLVM_TARGET_TRIPLE_OS_VERSION=ios8.0 export LLVM_TARGET_TRIPLE_VENDOR=apple export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/en.lproj export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFCopyLocalizedString" export LOCALIZED_STRING_SWIFTUI_SUPPORT=YES export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities export LOCAL_APPS_DIR=/Applications export LOCAL_DEVELOPER_DIR=/Library/Developer export LOCAL_LIBRARY_DIR=/Library export LOCROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export LOCSYMROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export MACH_O_TYPE=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION=19F101 export MAC_OS_X_VERSION_ACTUAL=101505 export MAC_OS_X_VERSION_MAJOR=101500 export MAC_OS_X_VERSION_MINOR=1505 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app export MODULES_FOLDER_PATH=Runner.app/Modules export MODULE_CACHE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO=YES export NATIVE_ARCH=armv7 export NATIVE_ARCH_32_BIT=i386 export NATIVE_ARCH_64_BIT=x86_64 export NATIVE_ARCH_ACTUAL=x86_64 export NO_COMMON=YES export OBJECT_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Object s export OBJECT_FILE_DIR_normal=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build /Objects-normal export OBJROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH=NO export OS=MACOS export OSAC=/usr/bin/osacompile export OTHER_CFLAGS=" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap"" export OTHER_CPLUSPLUSFLAGS=" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap"" export OTHER_LDFLAGS=" -ObjC -l"integration_test" -l"webview_flutter" -framework "Flutter" -framework Flutter" export OTHER_SWIFT_FLAGS=" -D COCOAPODS -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap"" export PACKAGE_CONFIG=.packages export PACKAGE_TYPE=com.apple.package-type.wrapper.application export PASCAL_STRINGS=YES export PATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/loca l/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Ap plications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applica tions/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Develope r/usr/local/bin:/Users/fox/Documents/sdk/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/fox/Library/Android/sdk/tools:/Users/funs hine/Library/Android/sdk/platform-tools export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms" export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PER_ARCH_OBJECT_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.bui ld/Objects-normal/undefined_arch export PER_VARIANT_OBJECT_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner. build/Objects-normal export PKGINFO_FILE_PATH=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgI nfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export PLATFORM_DISPLAY_NAME=iOS export PLATFORM_FAMILY_NAME=iOS export PLATFORM_NAME=iphoneos export PLATFORM_PREFERRED_ARCH=arm64 export PLATFORM_PRODUCT_BUILD_VERSION=17G64 export PLIST_FILE_OUTPUT_FORMAT=binary export PLUGINS_FOLDER_PATH=Runner.app/PlugIns export PODS_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios export PODS_CONFIGURATION_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export PODS_PODFILE_DIR_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/. export PODS_ROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES export PRECOMP_DESTINATION_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.buil d/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=io.flutter.plugins.webviewFlutterExample export PRODUCT_BUNDLE_PACKAGE_TYPE=APPL export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist export PRODUCT_TYPE=com.apple.product-type.application export PROFILING_CODE=NO export PROJECT=Runner export PROJECT_DERIVED_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export PROJECT_FILE_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex export PROVISIONING_PROFILE_REQUIRED=YES export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES export REMOVE_CVS_FROM_RESOURCES=YES export REMOVE_GIT_FROM_RESOURCES=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES export REMOVE_HG_FROM_RESOURCES=YES export REMOVE_SVN_FROM_RESOURCES=YES export RESOURCE_RULES_REQUIRED=YES export REZ_COLLECTOR_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Reso urceManagerResources export REZ_OBJECTS_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Resour ceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos " export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_INPUT_FILE_LIST_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_LIST_COUNT=0 export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk export SDK_DIR_iphoneos13_6=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk export SDK_NAME=iphoneos13.6 export SDK_NAMES=iphoneos13.6 export SDK_PRODUCT_BUILD_VERSION=17G64 export SDK_VERSION=13.6 export SDK_VERSION_ACTUAL=130600 export SDK_VERSION_MAJOR=130000 export SDK_VERSION_MINOR=600 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export SRCROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=YES export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS="iphoneos iphonesimulator" export SUPPORTS_MACCATALYST=NO export SUPPORTS_TEXT_BASED_API=NO export SWIFT_PLATFORM_TARGET_PREFIX=ios export SWIFT_RESPONSE_FILE_PATH_normal_arm64=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphone os/Runner.build/Objects-normal/arm64/Runner.SwiftFileList export SYMROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DEXT_INSTALL_PATH=/System/Library/DriverExtensions export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_ROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks" export TEST_LIBRARY_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib" export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TRACK_WIDGET_CREATION=true export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export TREE_SHAKE_ICONS=false export TeamIdentifierPrefix=LC4DNJ3N8B. export UID=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=fox export USER_APPS_DIR=/Users/fox/Applications export USER_LIBRARY_DIR=/Users/fox/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export USE_LLVM_TARGET_TRIPLES=YES export USE_LLVM_TARGET_TRIPLES_FOR_CLANG=YES export USE_LLVM_TARGET_TRIPLES_FOR_LD=YES export USE_LLVM_TARGET_TRIPLES_FOR_TAPI=YES export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS=YES_ERROR export VALIDATE_PRODUCT=NO export VALIDATE_WORKSPACE=YES_ERROR export VALID_ARCHS="arm64 arm64e armv7 armv7s" export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=fox export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING=""@(#)PROGRAM:Runner PROJECT:Runner-1"" export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=11E708 export XCODE_VERSION_ACTUAL=1160 export XCODE_VERSION_MAJOR=1100 export XCODE_VERSION_MINOR=1160 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=undefined_arch export variant=normal /bin/sh -c /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-9740EEB61CF901F 6004384FC.sh ♦ rm -rf -- /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter/Flutter.framework ♦ cp -- /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/ios/Flutter.podspec /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter ♦ cp -r -- /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter ♦ /Users/fox/Documents/sdk/flutter/bin/flutter --verbose assemble --output=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter/ -dTargetPlatform=ios -dTargetFile=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/lib/main.dart -dBuildMode=debug -dIosArchs=arm64 -dSplitDebugInfo= -dTreeShakeIcons=false -dTrackWidgetCreation=true -dDartObfuscation=false -dEnableBitcode= --ExtraGenSnapshotOptions= --DartDefines= --ExtraFrontEndOptions= debug_ios_bundle_flutter_assets [ +209 ms] executing: [/Users/fox/Documents/sdk/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +61 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ +1 ms] fba99f6cf9a14512e461e3122c8ddfaa25394e89 [ +1 ms] executing: [/Users/fox/Documents/sdk/flutter/] git tag --contains HEAD [ +764 ms] Exit code 0 from: git tag --contains HEAD [ ] 1.20.4 [ +14 ms] executing: [/Users/fox/Documents/sdk/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/stable [ ] executing: [/Users/fox/Documents/sdk/flutter/] git ls-remote --get-url origin [ +7 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +72 ms] executing: [/Users/fox/Documents/sdk/flutter/] git rev-parse --abbrev-ref HEAD [ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] stable [ +57 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +5 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +18 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ +189 ms] Initializing file store [ +16 ms] Done initializing file store [ +75 ms] Skipping target: gen_localizations [ +992 ms] Skipping target: kernel_snapshot [ +11 ms] Skipping target: debug_universal_framework [ +508 ms] Skipping target: debug_ios_bundle_flutter_assets [ +1 ms] Persisting file store [ +10 ms] Done persisting file store [ +11 ms] build succeeded. [ +12 ms] "flutter assemble" took 1,877ms. [ +6 ms] ensureAnalyticsSent: 0ms [ +2 ms] Running shutdown hooks [ ] Shutdown hooks complete [ +5 ms] exiting with code 0 Project /Users/fox/Downloads/plugins-master/packages/webview_flutter/example built and packaged successfully. CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runne r_vers.o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_vers .c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules -gmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files .hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-he aders.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-frame work-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.ya ml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers .hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-norma l/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/R unner_vers.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/R unner_vers.dia -c /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/Runner_ vers.c -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/R unner_vers.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/main. o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files .hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-he aders.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-frame work-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.ya ml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers .hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-norma l/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/m ain.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/m ain.dia -c /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/main.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/m ain.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDe legate.o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/AppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files .hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-he aders.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-frame work-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.ya ml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers .hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-norma l/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/A ppDelegate.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/A ppDelegate.dia -c /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/AppDelegate.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/A ppDelegate.o CompileC /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Gener atedPluginRegistrant.o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files .hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-he aders.hmap -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-non-frame work-target-headers.hmap -ivfsoverlay /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/all-product-headers.ya ml -iquote /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers .hmap -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/include -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test -I/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-norma l/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -I/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap -fmodule-map-file=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap -MMD -MT dependencies -MF /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/G eneratedPluginRegistrant.d --serialize-diagnostics /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/G eneratedPluginRegistrant.dia -c /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/GeneratedPluginRegistrant.m -o /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/G eneratedPluginRegistrant.o Ld /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Runner normal arm64 (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target arm64-apple-ios8.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter -L/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/../Flutter -F/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter -filelist /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/R unner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/R unner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-arc -fobjc-link-runtime -ObjC -lintegration_test -lwebview_flutter -framework Flutter -framework Flutter -lPods-Runner -Xlinker -dependency_info -Xlinker /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/R unner_dependency_info.dat -o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Runner LinkStoryboards (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Contents/Developer/usr/bin/.. /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Runner --target-device iphone --target-device ipad --minimum-deployment-target 8.0 --output-format human-readable-text --link /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScree n.storyboardc /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main.storyb oardc ProcessInfoPlistFile /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios builtin-infoPlistUtility /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScree n-SBPartialInfo.plist -additionalcontentfile /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPart ialInfo.plist -additionalcontentfile /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated _info.plist -requiredArchitecture arm64 -o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Info.plist PhaseScriptExecution Thin\ Binary /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004 D2608.sh (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export ACTION=build export AD_HOC_CODE_SIGNING_ALLOWED=NO export ALTERNATE_GROUP=staff export ALTERNATE_MODE=u+w,go-w,a+rX export ALTERNATE_OWNER=fox export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO export ALWAYS_SEARCH_USER_PATHS=NO export ALWAYS_USE_SEPARATE_HEADERMAPS=NO export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer export APPLE_INTERNAL_DIR=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY=NO export APPLY_RULES_IN_COPY_FILES=NO export APPLY_RULES_IN_COPY_HEADERS=NO export ARCHS=arm64 export ARCHS_STANDARD="armv7 arm64" export ARCHS_STANDARD_32_64_BIT="armv7 arm64" export ARCHS_STANDARD_32_BIT=armv7 export ARCHS_STANDARD_64_BIT=arm64 export ARCHS_STANDARD_INCLUDING_64_BIT="armv7 arm64" export ARCHS_UNIVERSAL_IPHONE_OS="armv7 arm64" export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" export AppIdentifierPrefix=LC4DNJ3N8B. export BITCODE_GENERATION_MODE=marker export BUILD_ACTIVE_RESOURCES_ONLY=NO export BUILD_COMPONENTS="headers build" export BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios export BUILD_LIBRARY_FOR_DISTRIBUTION=NO export BUILD_ROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export BUNDLE_CONTENTS_FOLDER_PATH_deep=Contents/ export BUNDLE_EXECUTABLE_FOLDER_NAME_deep=MacOS export BUNDLE_FORMAT=shallow export BUNDLE_FRAMEWORKS_FOLDER_PATH=Frameworks export BUNDLE_PLUGINS_FOLDER_PATH=PlugIns export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH=PrivateHeaders export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH=Headers export CACHE_ROOT=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode export CCHROOT=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED=YES export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES export CLANG_WARN_BOOL_CONVERSION=YES export CLANG_WARN_COMMA=YES export CLANG_WARN_CONSTANT_CONVERSION=YES export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR export CLANG_WARN_EMPTY_BODY=YES export CLANG_WARN_ENUM_CONVERSION=YES export CLANG_WARN_INFINITE_RECURSION=YES export CLANG_WARN_INT_CONVERSION=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES export CLANG_WARN_STRICT_PROTOTYPES=YES export CLANG_WARN_SUSPICIOUS_MOVE=YES export CLANG_WARN_UNREACHABLE_CODE=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES export CLASS_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaCla sses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app export CODE_SIGNING_ALLOWED=YES export CODE_SIGNING_REQUIRED=YES export CODE_SIGN_CONTEXT_CLASS=XCiPhoneOSCodeSignContext export CODE_SIGN_IDENTITY="iPhone Developer" export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES export COLOR_DIAGNOSTICS=NO export COMBINE_HIDPI_IMAGES=NO export COMPILER_INDEX_STORE_ENABLE=NO export COMPOSITE_SDK_DIRS=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export CONFIGURATION_TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos export CONTENTS_FOLDER_PATH=Runner.app export COPYING_PRESERVES_HFS_DATA=NO export COPY_HEADERS_RUN_UNIFDEF=NO export COPY_PHASE_STRIP=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES export CORRESPONDING_SIMULATOR_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export CORRESPONDING_SIMULATOR_PLATFORM_NAME=iphonesimulator export CORRESPONDING_SIMULATOR_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk export CORRESPONDING_SIMULATOR_SDK_NAME=iphonesimulator13.6 export CP=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY=NO export CURRENT_ARCH=undefined_arch export CURRENT_PROJECT_VERSION=1 export CURRENT_VARIANT=normal export DART_OBFUSCATION=false export DEAD_CODE_STRIPPING=YES export DEBUGGING_SYMBOLS=YES export DEBUG_INFORMATION_FORMAT=dwarf export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 export DEFAULT_DEXT_INSTALL_PATH=/System/Library/DriverExtensions export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions export DEFINES_MODULE=NO export DEPLOYMENT_LOCATION=NO export DEPLOYMENT_POSTPROCESSING=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=miphoneos-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-miphoneos-version-min= export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_version_min export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6" export DERIVED_FILES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Deri vedSources export DERIVED_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Deriv edSources export DERIVED_SOURCES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/De rivedSources export DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER=NO export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE=en export DEVELOPMENT_TEAM=LC4DNJ3N8B export DOCUMENTATION_FOLDER_PATH=Runner.app/en.lproj/Documentation export DONT_GENERATE_INFOPLIST_FILE=NO export DO_HEADER_SCANNING_IN_JAM=NO export DSTROOT=/tmp/Runner.dst export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO export DWARF_DSYM_FOLDER_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export EFFECTIVE_PLATFORM_NAME=-iphoneos export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO export EMBEDDED_PROFILE_NAME=embedded.mobileprovision export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO export ENABLE_BITCODE=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES export ENABLE_HARDENED_RUNTIME=NO export ENABLE_HEADER_DEPENDENCIES=YES export ENABLE_ON_DEMAND_RESOURCES=YES export ENABLE_PREVIEWS=NO export ENABLE_STRICT_OBJC_MSGSEND=YES export ENABLE_TESTABILITY=YES export ENABLE_TESTING_SEARCH_PATHS=NO export ENTITLEMENTS_ALLOWED=YES export ENTITLEMENTS_DESTINATION=Signature export ENTITLEMENTS_REQUIRED=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS" export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj" export EXECUTABLES_FOLDER_PATH=Runner.app/Executables export EXECUTABLE_FOLDER_PATH=Runner.app export EXECUTABLE_NAME=Runner export EXECUTABLE_PATH=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY=2DCB10885CFB2F9BD1F6B6CC97C5ABF0C8399F63 export EXPANDED_CODE_SIGN_IDENTITY_NAME="Apple Development: es" export EXPANDED_PROVISIONING_PROFILE=50a5e38a-5698-4cbf-aa25-983a9f42b672 export FILE_LIST=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/Link FileList export FIXED_FILES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedF iles export FLUTTER_APPLICATION_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/fox/Documents/sdk/flutter export FLUTTER_SUPPRESS_ANALYTICS=true export FLUTTER_TARGET=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/../Flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter" export FRAMEWORK_VERSION=A export FULL_PRODUCT_NAME=Runner.app export GCC3_VERSION=3.3 export GCC_C_LANGUAGE_STANDARD=gnu99 export GCC_DYNAMIC_NO_PIC=NO export GCC_INLINES_ARE_PRIVATE_EXTERN=YES export GCC_NO_COMMON_BLOCKS=YES export GCC_OPTIMIZATION_LEVEL=0 export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++" export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1" export GCC_SYMBOLS_PRIVATE_EXTERN=NO export GCC_THUMB_SUPPORT=YES export GCC_TREAT_WARNINGS_AS_ERRORS=NO export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION=YES export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR=YES export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION=YES export GCC_WARN_UNUSED_VARIABLE=YES export GENERATE_MASTER_OBJECT_FILE=NO export GENERATE_PKGINFO_FILE=YES export GENERATE_PROFILING_CODE=NO export GENERATE_TEXT_BASED_STUBS=NO export GID=20 export GROUP=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES export HEADERMAP_USES_VFS=NO export HEADER_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/include "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter"" export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/fox export ICONV=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS=YES export INFOPLIST_FILE=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT=binary export INFOPLIST_PATH=Runner.app/Info.plist export INFOPLIST_PREPROCESS=NO export INFOSTRINGS_PATH=Runner.app/en.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS=NO export INSTALLHDRS_COPY_PHASE=NO export INSTALLHDRS_SCRIPT_PHASE=NO export INSTALL_DIR=/tmp/Runner.dst/Applications export INSTALL_GROUP=staff export INSTALL_MODE_FLAG=u+w,go-w,a+rX export INSTALL_OWNER=fox export INSTALL_PATH=/Applications export INSTALL_ROOT=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET=8.0 export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8" export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES=YES export JAVA_ARCHIVE_TYPE=JAR export JAVA_COMPILER=/usr/bin/javac export JAVA_FOLDER_PATH=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources export JAVA_JAR_FLAGS=cv export JAVA_SOURCE_SUBDIR=. export JAVA_USE_DEPENDENCIES=YES export JAVA_ZIP_FLAGS=-urg export JIKES_DEFAULT_FLAGS="+E +OLDCSO" export KASAN_DEFAULT_CFLAGS="-DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow" export KEEP_PRIVATE_EXTERNS=NO export LD_DEPENDENCY_INFO_FILE=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.buil d/Objects-normal/undefined_arch/Runner_dependency_info.dat export LD_GENERATE_MAP_FILE=NO export LD_MAP_FILE_PATH=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runne r-LinkMap-normal-undefined_arch.txt export LD_NO_PIE=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks" export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX=lex export LIBRARY_DEXT_INSTALL_PATH=/Library/DriverExtensions export LIBRARY_FLAG_NOSPACE=YES export LIBRARY_FLAG_PREFIX=-l export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions export LIBRARY_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter" export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_arm64=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner. build/Objects-normal/arm64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES=YES export LLVM_TARGET_TRIPLE_OS_VERSION=ios8.0 export LLVM_TARGET_TRIPLE_VENDOR=apple export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/en.lproj export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFCopyLocalizedString" export LOCALIZED_STRING_SWIFTUI_SUPPORT=YES export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities export LOCAL_APPS_DIR=/Applications export LOCAL_DEVELOPER_DIR=/Library/Developer export LOCAL_LIBRARY_DIR=/Library export LOCROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export LOCSYMROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export MACH_O_TYPE=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION=19F101 export MAC_OS_X_VERSION_ACTUAL=101505 export MAC_OS_X_VERSION_MAJOR=101500 export MAC_OS_X_VERSION_MINOR=1505 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app export MODULES_FOLDER_PATH=Runner.app/Modules export MODULE_CACHE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO=YES export NATIVE_ARCH=armv7 export NATIVE_ARCH_32_BIT=i386 export NATIVE_ARCH_64_BIT=x86_64 export NATIVE_ARCH_ACTUAL=x86_64 export NO_COMMON=YES export OBJECT_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Object s export OBJECT_FILE_DIR_normal=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build /Objects-normal export OBJROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH=NO export OS=MACOS export OSAC=/usr/bin/osacompile export OTHER_CFLAGS=" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap"" export OTHER_CPLUSPLUSFLAGS=" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap"" export OTHER_LDFLAGS=" -ObjC -l"integration_test" -l"webview_flutter" -framework "Flutter" -framework Flutter" export OTHER_SWIFT_FLAGS=" -D COCOAPODS -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap"" export PACKAGE_CONFIG=.packages export PACKAGE_TYPE=com.apple.package-type.wrapper.application export PASCAL_STRINGS=YES export PATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/loca l/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Ap plications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applica tions/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Develope r/usr/local/bin:/Users/fox/Documents/sdk/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/fox/Library/Android/sdk/tools:/Users/funs hine/Library/Android/sdk/platform-tools export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms" export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PER_ARCH_OBJECT_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.bui ld/Objects-normal/undefined_arch export PER_VARIANT_OBJECT_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner. build/Objects-normal export PKGINFO_FILE_PATH=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgI nfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export PLATFORM_DISPLAY_NAME=iOS export PLATFORM_FAMILY_NAME=iOS export PLATFORM_NAME=iphoneos export PLATFORM_PREFERRED_ARCH=arm64 export PLATFORM_PRODUCT_BUILD_VERSION=17G64 export PLIST_FILE_OUTPUT_FORMAT=binary export PLUGINS_FOLDER_PATH=Runner.app/PlugIns export PODS_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios export PODS_CONFIGURATION_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export PODS_PODFILE_DIR_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/. export PODS_ROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES export PRECOMP_DESTINATION_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.buil d/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=io.flutter.plugins.webviewFlutterExample export PRODUCT_BUNDLE_PACKAGE_TYPE=APPL export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist export PRODUCT_TYPE=com.apple.product-type.application export PROFILING_CODE=NO export PROJECT=Runner export PROJECT_DERIVED_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export PROJECT_FILE_PATH=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex export PROVISIONING_PROFILE_REQUIRED=YES export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES export REMOVE_CVS_FROM_RESOURCES=YES export REMOVE_GIT_FROM_RESOURCES=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES export REMOVE_HG_FROM_RESOURCES=YES export REMOVE_SVN_FROM_RESOURCES=YES export RESOURCE_RULES_REQUIRED=YES export REZ_COLLECTOR_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Reso urceManagerResources export REZ_OBJECTS_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Resour ceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos " export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_INPUT_FILE_LIST_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_LIST_COUNT=0 export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk export SDK_DIR_iphoneos13_6=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk export SDK_NAME=iphoneos13.6 export SDK_NAMES=iphoneos13.6 export SDK_PRODUCT_BUILD_VERSION=17G64 export SDK_VERSION=13.6 export SDK_VERSION_ACTUAL=130600 export SDK_VERSION_MAJOR=130000 export SDK_VERSION_MINOR=600 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export SRCROOT=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=YES export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS="iphoneos iphonesimulator" export SUPPORTS_MACCATALYST=NO export SUPPORTS_TEXT_BASED_API=NO export SWIFT_PLATFORM_TARGET_PREFIX=ios export SWIFT_RESPONSE_FILE_PATH_normal_arm64=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphone os/Runner.build/Objects-normal/arm64/Runner.SwiftFileList export SYMROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DEXT_INSTALL_PATH=/System/Library/DriverExtensions export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILES_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILE_DIR=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_ROOT=/Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks" export TEST_LIBRARY_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib" export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TRACK_WIDGET_CREATION=true export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export TREE_SHAKE_ICONS=false export TeamIdentifierPrefix=LC4DNJ3N8B. export UID=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=fox export USER_APPS_DIR=/Users/fox/Applications export USER_LIBRARY_DIR=/Users/fox/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export USE_LLVM_TARGET_TRIPLES=YES export USE_LLVM_TARGET_TRIPLES_FOR_CLANG=YES export USE_LLVM_TARGET_TRIPLES_FOR_LD=YES export USE_LLVM_TARGET_TRIPLES_FOR_TAPI=YES export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS=YES_ERROR export VALIDATE_PRODUCT=NO export VALIDATE_WORKSPACE=YES_ERROR export VALID_ARCHS="arm64 arm64e armv7 armv7s" export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=fox export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING=""@(#)PROGRAM:Runner PROJECT:Runner-1"" export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=11E708 export XCODE_VERSION_ACTUAL=1160 export XCODE_VERSION_MAJOR=1100 export XCODE_VERSION_MINOR=1160 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=undefined_arch export variant=normal /bin/sh -c /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F 5004D2608.sh ♦ mkdir -p -- /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks ♦ rsync -av --delete /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter/App.framework /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks building file list ... done deleting App.framework/_CodeSignature/CodeResources deleting App.framework/_CodeSignature/ App.framework/ App.framework/App sent 49704 bytes received 48 bytes 99504.00 bytes/sec total size is 34128835 speedup is 685.98 ♦ rsync -av --delete --filter - .DS_Store/ --filter - Headers/ --filter - Modules/ /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter/Flutter.framework /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/ building file list ... done Flutter.framework/ Flutter.framework/Flutter Flutter.framework/Info.plist Flutter.framework/icudtl.dat Flutter.framework/_CodeSignature/ Flutter.framework/_CodeSignature/CodeResources sent 98830495 bytes received 120 bytes 65887076.67 bytes/sec total size is 98818019 speedup is 1.00 ♦ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter/Flutter.framework/Flutter -r -o /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter ♦ codesign --force --verbose --sign 2DCB10885CFB2F9BD1F6B6CC97C5ABF0C8399F63 -- /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/App.framework/App /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/App.framework/App: signed bundle with Mach-O universal (x86_64 arm64) [io.flutter.flutter.app] ♦ codesign --force --verbose --sign 2DCB10885CFB2F9BD1F6B6CC97C5ABF0C8399F63 -- /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter: replacing existing signature /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter: signed bundle with Mach-O universal (armv7 x86_64 arm64) [io.flutter.flutter] PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-A1F14D6FD37A3C5047F 5A5AD.sh (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios /bin/sh -c /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-A1F14D6FD37A3C5 047F5A5AD.sh mkdir -p /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks rsync --delete -av --filter P .*.?????? --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/../Flutter/Flutter.framework" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done Flutter.framework/ Flutter.framework/Flutter Flutter.framework/_CodeSignature/CodeResources sent 97930832 bytes received 70 bytes 65287268.00 bytes/sec total size is 98818019 speedup is 1.01 Stripped /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter of architectures: x86_64 armv7 Code Signing /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework with Identity Apple Development: es (2A726F67HL) /usr/bin/codesign --force --sign 2DCB10885CFB2F9BD1F6B6CC97C5ABF0C8399F63 --preserve-metadata=identifier,entitlements '/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework: replacing existing signature CodeSign /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate Signing Identity: "Apple Development: es(2A726F67HL)" Provisioning Profile: "iOS Team Provisioning Profile: *" (50a5e38a-5698-4cbf-aa25-983a9f42b672) /usr/bin/codesign --force --sign 2DCB10885CFB2F9BD1F6B6CC97C5ABF0C8399F63 --entitlements /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent --timestamp=none /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app Validate /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app (in target 'Runner' from project 'Runner') cd /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios builtin-validationUtility /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app ** BUILD SUCCEEDED ** [ +177 ms] └─Compiling, linking and signing... (completed in 12.3s) [ ] Xcode build done. 26.3s [ +2 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings [ +1 ms] executing: [/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings [+4664 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout SDKROOT = iphoneos13.6 VERBOSE_SCRIPT_LOGGING = YES Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = fox ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO APPLY_RULES_IN_COPY_HEADERS = NO ARCHS = arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios BUILD_LIBRARY_FOR_DISTRIBUTION = NO BUILD_ROOT = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/ BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS BUNDLE_FORMAT = shallow BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks BUNDLE_PLUGINS_FOLDER_PATH = PlugIns BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers CACHE_ROOT = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode CCHROOT = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/C/com.apple.DeveloperTools/11.6-11E708/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = NO COMPOSITE_SDK_DIRS = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos CONFIGURATION_TEMP_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.6 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DART_OBFUSCATION = false DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 13.6 DERIVED_FILES_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = en DEVELOPMENT_TEAM = LC4DNJ3N8B DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation DONT_GENERATE_INFOPLIST_FILE = NO DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HARDENED_RUNTIME = NO ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENABLE_TESTING_SEARCH_PATHS = NO ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_DESTINATION = Signature ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/fox/Documents/sdk/flutter FLUTTER_SUPPRESS_ANALYTICS = true FLUTTER_TARGET = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/../Flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/fox ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = fox INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Ru nner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-a rm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/integration_test" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/webview_flutter" /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0 LLVM_TARGET_TRIPLE_VENDOR = apple LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString LOCALIZED_STRING_SWIFTUI_SUPPORT = YES LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 19F101 MAC_OS_X_VERSION_ACTUAL = 101505 MAC_OS_X_VERSION_MAJOR = 101500 MAC_OS_X_VERSION_MINOR = 1505 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/Runner.app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap" OTHER_CPLUSPLUSFLAGS = -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap" OTHER_LDFLAGS = -framework Flutter OTHER_SWIFT_FLAGS = -D COCOAPODS -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/integration_test/integration_test.modulemap" -Xcc -fmodule-map-file="/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods/Headers/Public/webview_flutter/webview_flutter.modulemap" PACKAGE_CONFIG = .packages PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/fox/Documents/sdk/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/fox/Lib rary/Android/sdk/tools:/Users/fox/Library/Android/sdk/platform-tools PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 17G64 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos PODS_PODFILE_DIR_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/. PODS_ROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = io.flutter.plugins.webviewFlutterExample PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios PROJECT_FILE_PATH = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResource s REZ_OBJECTS_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResource s/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SCRIPT_OUTPUT_STREAM_FILE = /var/folders/hq/zcprzcp51dgbqfp8hrltljj00000gn/T/flutter_tools.owadmT/flutter_build_log_pipe.EYIYOD/pipe_to_stdout SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_DIR_iphoneos13_6 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk SDK_NAME = iphoneos13.6 SDK_NAMES = iphoneos13.6 SDK_PRODUCT_BUILD_VERSION = 17G64 SDK_VERSION = 13.6 SDK_VERSION_ACTUAL = 130600 SDK_VERSION_MAJOR = 130000 SDK_VERSION_MINOR = 600 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios SRCROOT = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_MACCATALYST = NO SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/Debug-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILES_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILE_DIR = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_ROOT = /Users/fox/Library/Developer/Xcode/DerivedData/Runner-bnmytfmmtwkiixhbtcmrlhexavod/Build/Intermediates.noindex TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO TREE_SHAKE_ICONS = false UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = fox USER_APPS_DIR = /Users/fox/Applications USER_LIBRARY_DIR = /Users/fox/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES VALIDATE_PRODUCT = NO VALIDATE_WORKSPACE = NO VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = fox VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 11E708 XCODE_VERSION_ACTUAL = 1160 XCODE_VERSION_MAJOR = 1100 XCODE_VERSION_MINOR = 1160 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +764 ms] Installing and launching... [ ] Debugging is enabled, connecting to observatory [ +6 ms] executing: /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/ios-deploy/ios-deploy --id 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 --bundle build/ios/iphoneos/Runner.app --no-wifi --justlaunch --args --enable-dart-profiling --enable-service-port-fallback --disable-service-auth-codes --observatory-port=60562 --enable-checked-mode --verify-entry-points [ +230 ms] [....] Waiting for iOS device to be connected [ +80 ms] [....] Using 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 (N66mAP, iPhone 6s Plus, iphoneos, arm64) a.k.a. 'iPhone'. [ ] ------ Install phase ------ [ ] [ 0%] Found 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 (N66mAP, iPhone 6s Plus, iphoneos, arm64) a.k.a. 'iPhone' connected through USB, beginning install [ +249 ms] [ 5%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/META-INF/ to device [ ] [ 5%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/META-INF/com.apple.ZipMetadata.plist to device [ ] [ 5%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/_CodeSignature/ to device [ ] [ 6%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/_CodeSignature/CodeResources to device [ ] [ 6%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x.png to device [ ] [ 6%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon20x20@3x.png to device [ ] [ 7%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon29x29.png to device [ ] [ 7%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon60x60@2x.png to device [ ] [ 8%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Runner to device [ +4 ms] [ 8%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x.png to device [ ] [ 8%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon40x40@3x.png to device [ ] [ 9%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png to device [ ] [ 9%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x.png to device [ ] [ 9%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon29x29@3x.png to device [ ] [ 10%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon60x60@3x.png to device [ ] [ 10%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/ to device [ ] [ 11%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/ to device [ ] [ 11%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib to device [ ] [ 11%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib to device [ ] [ 12%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist to device [ ] [ 12%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/ to device [ ] [ 12%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib to device [ ] [ 13%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib to device [ ] [ 13%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist to device [ ] [ 14%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Assets.car to device [ +1 ms] [ 14%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppFrameworkInfo.plist to device [ ] [ 14%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png to device [ ] [ 15%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png to device [ ] [ 15%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png to device [ ] [ 16%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png to device [ ] [ 16%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png to device [ ] [ 16%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/ to device [ ] [ 17%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/ to device [ ] [ 17%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/ to device [ ] [ 17%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources to device [ ] [ 18%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat to device [ +179 ms] [ 18%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter to device [+1460 ms] [ 30%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist to device [ ] [ 30%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/ to device [ ] [ 30%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/ to device [ ] [ 31%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources to device [ ] [ 31%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/App to device [ ] [ 31%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/ to device [ ] [ 32%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data to device [ +3 ms] [ 32%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data to device [ +200 ms] [ 34%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json to device [ +1 ms] [ 34%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin to device [+1381 ms] [ 44%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES to device [ +27 ms] [ 45%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json to device [ ] [ 45%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/ to device [ ] [ 46%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.ttf to device [ +21 ms] [ 46%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/ to device [ ] [ 46%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/sample_audio.ogg to device [ ] [ 47%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/Info.plist to device [ ] [ 47%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png to device [ ] [ 48%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/embedded.mobileprovision to device [ ] [ 48%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png to device [ ] [ 48%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/Info.plist to device [ ] [ 49%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/PkgInfo to device [ ] [ 49%] Copying /Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png to device [ +222 ms] [ 52%] CreatingStagingDirectory [ ] [ 57%] ExtractingPackage [ ] [ 60%] InspectingPackage [ +8 ms] [ 60%] TakingInstallLock [ +5 ms] [ 65%] PreflightingApplication [ +942 ms] [ 65%] InstallingEmbeddedProfile [ +12 ms] [ 70%] VerifyingApplication [ +738 ms] [ 75%] CreatingContainer [ +5 ms] [ 80%] InstallingApplication [ +10 ms] [ 85%] PostflightingApplication [ +6 ms] [ 90%] SandboxingApplication [ +6 ms] [ 95%] GeneratingApplicationMap [ +166 ms] [100%] Installed package build/ios/iphoneos/Runner.app [ +449 ms] ------ Debug phase ------ [ ] Starting debug of 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 (N66mAP, iPhone 6s Plus, iphoneos, arm64) a.k.a. 'iPhone' connected through USB... [ +177 ms] [ 0%] Looking up developer disk image [ +28 ms] [ 95%] Developer disk image mounted successfully [+1240 ms] [100%] Connecting to remote debug server [ ] ------------------------- [ +247 ms] (lldb) command source -s 0 '/tmp/AFD1560A-1322-4B3D-A8EB-7CE564A45C28/fruitstrap-lldb-prep-cmds-4db692c992fc8cdd3fe0f7783d8cd220acbe5810' [ ] Executing commands in '/tmp/AFD1560A-1322-4B3D-A8EB-7CE564A45C28/fruitstrap-lldb-prep-cmds-4db692c992fc8cdd3fe0f7783d8cd220acbe5810'. [ ] (lldb) platform select remote-ios --sysroot '/Users/fox/Library/Developer/Xcode/iOS DeviceSupport/13.6 (17G68)/Symbols' [ ] Platform: remote-ios [ ] Connected: no [ ] SDK Path: "/Users/fox/Library/Developer/Xcode/iOS DeviceSupport/13.6 (17G68)/Symbols" [ ] (lldb) target create "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app" [+5685 ms] Current executable set to '/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos/Runner.app' (arm64). [ ] (lldb) script fruitstrap_device_app="/private/var/containers/Bundle/Application/31C8CC61-7ABE-422A-9DEF-0E1412CFA743/Runner.app" [ +683 ms] (lldb) script fruitstrap_connect_url="connect://127.0.0.1:52762" [ ] (lldb) script fruitstrap_output_path="" [ ] (lldb) script fruitstrap_error_path="" [ ] (lldb) target modules search-paths add /usr "/Users/fox/Library/Developer/Xcode/iOS DeviceSupport/13.6 (17G68)/Symbols/usr" /System "/Users/fox/Library/Developer/Xcode/iOS DeviceSupport/13.6 (17G68)/Symbols/System" "/private/var/containers/Bundle/Application/31C8CC61-7ABE-422A-9DEF-0E1412CFA743" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos" "/var/containers/Bundle/Application/31C8CC61-7ABE-422A-9DEF-0E1412CFA743" "/Users/fox/Downloads/plugins-master/packages/webview_flutter/example/build/ios/iphoneos" /Developer "/Users/fox/Library/Developer/Xcode/iOS DeviceSupport/13.6 (17G68)/Symbols/Developer" [ +35 ms] (lldb) command script import "/tmp/AFD1560A-1322-4B3D-A8EB-7CE564A45C28/fruitstrap_4db692c992fc8cdd3fe0f7783d8cd220acbe5810.py" [ +9 ms] (lldb) command script add -f fruitstrap_4db692c992fc8cdd3fe0f7783d8cd220acbe5810.connect_command connect [ ] (lldb) command script add -s asynchronous -f fruitstrap_4db692c992fc8cdd3fe0f7783d8cd220acbe5810.run_command run [ ] (lldb) command script add -s asynchronous -f fruitstrap_4db692c992fc8cdd3fe0f7783d8cd220acbe5810.autoexit_command autoexit [ ] (lldb) command script add -s asynchronous -f fruitstrap_4db692c992fc8cdd3fe0f7783d8cd220acbe5810.safequit_command safequit [ ] (lldb) connect [ +38 ms] (lldb) run [ +159 ms] success [ ] (lldb) safequit [ +117 ms] Process 4731 detached [ +64 ms] Application launched on the device. Waiting for observatory port. [ +16 ms] Attempting to forward device port 60562 to host port 52772 [ ] executing: /Users/fox/Documents/sdk/flutter/bin/cache/artifacts/usbmuxd/iproxy 52772:60562 --udid 4db692c992fc8cdd3fe0f7783d8cd220acbe5810 [+1012 ms] Forwarded port ForwardedPort HOST:52772 to DEVICE:60562 [ +254 ms] Installing and launching... (completed in 16.2s) [ +2 ms] Caching compiled dill [ +102 ms] Connecting to service protocol: http://localhost:52772 [ +42 ms] Successfully connected to service protocol: http://localhost:52772 [ +3 ms] Waiting for iPhone to report its views... [ +5 ms] Waiting for iPhone to report its views... (completed in 5ms) [ +7 ms] DevFS: Creating new filesystem on the device (null) [ +25 ms] DevFS: Created new filesystem on the device (file:///private/var/mobile/Containers/Data/Application/D5251F19-10B3-407D-A0EC-598C671E29A9/tmp/exampleLaKovm/example/) [ +3 ms] Updating assets [ +230 ms] Syncing files to device iPhone... [ +2 ms] Scanning asset files [ +3 ms] <- reset [ ] Compiling dart to kernel with 0 updated files [ +1 ms] <- recompile package:webview_flutter_example/main.dart bdbb9c9f-6a28-4ac4-a089-b1c45f6306dd [ ] <- bdbb9c9f-6a28-4ac4-a089-b1c45f6306dd [ +197 ms] Updating files [ +187 ms] DevFS: Sync finished [ ] Syncing files to device iPhone... (completed in 393ms) [ +1 ms] Synced 0.9MB. [ +1 ms] <- accept [ +3 ms] Connected to _flutterView/0x10703c620. [ +1 ms] Flutter run key commands. [ +2 ms] r Hot reload. 🔥🔥🔥 [ +1 ms] R Hot restart. [ ] h Repeat this help message. [ ] d Detach (terminate "flutter run" but leave application running). [ ] c Clear the screen [ ] q Quit (terminate the application on the device). [ ] An Observatory debugger and profiler on iPhone is available at: http://localhost:52772 ```
pedromassangocode commented 3 years ago

what number did you added in the for loop that caused the issue?

Hi @larryluo123 Can you answer this? I need to know what number did you used to reproduce the issue.

larryluo1212 commented 3 years ago

what number did you added in the for loop that caused the issue?

Hi @larryluo123 Can you answer this? I need to know what number did you used to reproduce the issue.

3000 leads to blank, I haven't changed the code at present,

String html = "<!DOCTYPE html>" + "<html>" + " <head>" + " <meta charset=\"UTF-8\">" + " <script>" + " window.onload = function(){" + " var aDiv = document.getElementsByTagName('div');" + " " + " var str = \"\";" + " for(var i = 0,j = 0;i<3000;i++ ){" + " str += \"<div>test webview html \"+ i + \"</div>\";" + " }" + " document.body.innerHTML = str;" + " }" + " </script>" + " </head>" + " <body>" + " " + " </body>" + "</html>";

pedromassangocode commented 3 years ago

I still cannot reproduce the issue with the code you provided.

Based on the logs you provided on https://github.com/flutter/flutter/issues/66439#issuecomment-698192012 looks like you did not reproduced the issue.

Please, run your code with flutter run -v and one the exception is thrown copy and paste it here in the comments, you can also share it as a .txt file if it is too large.

larryluo1212 commented 3 years ago

I still cannot reproduce the issue with the code you provided.

Based on the logs you provided on #66439 (comment) looks like you did not reproduced the issue.

Please, run your code with flutter run -v and one the exception is thrown copy and paste it here in the comments, you can also share it as a .txt file if it is too large.

I found that I can use the iPhone simulator to display normally and no exception is thrown. When I use the iPhone 6S plus real machine for testing, it displays at first, and then it turns white. If I use 'flutter run - v', there is no exception thrown. When I execute the code in Xcode, there will be an exception.

Here is my Log: https://docs.google.com/document/d/1mCVZ_0AFguOnj1eYc081K90wSLF5JWNeBL2rNo6yS2k/edit?usp=sharing

danagbemava-nc commented 3 years ago

The issue is reproducible on master 2.5.0-6.0.pre.63 and stable 2.2.3 with webview_flutter: ^2.0.12. On Android, the issue cannot be reproduced with hybrid composition enabled, however, the app crashes if it is disabled. On iOS, a blank screen is shown.

flutter doctor -v ``` [✓] Flutter (Channel master, 2.5.0-6.0.pre.63, on macOS 11.5.1 20G80 darwin-arm, locale en-GH) • Flutter version 2.5.0-6.0.pre.63 at /Users/nexus/dev/sdks/flutters • Upstream repository https://github.com/flutter/flutter.git • Framework revision 047d35d8ba (2 hours ago), 2021-08-12 12:47:05 +0800 • Engine revision a2e60472a9 • Dart version 2.15.0 (build 2.15.0-5.0.dev) [✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0) • Android SDK at /Users/nexus/Library/Android/sdk • Platform android-31, build-tools 31.0.0 • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 12.5.1, Build version 12E507 • CocoaPods version 1.10.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2020.3) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189) [✓] VS Code (version 1.59.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.25.0 [✓] Connected device (4 available) • M2007J20CG (mobile) • 5dd3be00 • android-arm64 • Android 11 (API 30) • sdk gphone64 arm64 (mobile) • emulator-5554 • android-arm64 • Android 12 (API 31) (emulator) • Nexus’ IPhone (mobile) • 00008020-001875E83A38002E • ios • iOS 14.6 18F72 • Chrome (web) • chrome • web-javascript • Google Chrome 92.0.4515.131 • No issues found! ``` ``` [✓] Flutter (Channel stable, 2.2.3, on macOS 11.5.1 20G80 darwin-arm, locale en-GH) • Flutter version 2.2.3 at /Users/nexus/dev/sdks/flutter • Framework revision f4abaa0735 (6 weeks ago), 2021-07-01 12:46:11 -0700 • Engine revision 241c87ad80 • Dart version 2.13.4 [✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0) • Android SDK at /Users/nexus/Library/Android/sdk • Platform android-31, build-tools 31.0.0 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 12.5.1, Build version 12E507 • CocoaPods version 1.10.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2020.3) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189) [✓] VS Code (version 1.59.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.25.0 [✓] Connected device (4 available) • M2007J20CG (mobile) • 5dd3be00 • android-arm64 • Android 11 (API 30) • sdk gphone64 arm64 (mobile) • emulator-5554 • android-arm64 • Android 12 (API 31) (emulator) • Nexus’ IPhone (mobile) • 00008020-001875E83A38002E • ios • iOS 14.6 • Chrome (web) • chrome • web-javascript • Google Chrome 92.0.4515.131 • No issues found! ```
android logs with hybrid composition disabled ``` I/WebViewFactory( 6799): Loading com.google.android.webview version 92.0.4515.131 (code 451513133) W/.example.aug_t( 6799): Accessing hidden method Landroid/os/Trace;->isTagEnabled(J)Z (greylist, reflection, allowed) W/.example.aug_t( 6799): Accessing hidden method Landroid/os/Trace;->traceBegin(JLjava/lang/String;)V (greylist, reflection, allowed) W/.example.aug_t( 6799): Accessing hidden method Landroid/os/Trace;->traceEnd(J)V (greylist, reflection, allowed) W/.example.aug_t( 6799): Accessing hidden method Landroid/os/Trace;->asyncTraceBegin(JLjava/lang/String;I)V (greylist, reflection, allowed) W/.example.aug_t( 6799): Accessing hidden method Landroid/os/Trace;->asyncTraceEnd(JLjava/lang/String;I)V (greylist, reflection, allowed) I/cr_WVCFactoryProvider( 6799): Loaded version=92.0.4515.131 minSdkVersion=29 isBundle=true multiprocess=true packageId=2 I/cr_LibraryLoader( 6799): Successfully loaded native library I/cr_CachingUmaRecorder( 6799): Flushed 8 samples from 8 histograms. I/TetheringManager( 6799): registerTetheringEventCallback:com.example.aug_tw W/chromium( 6799): [WARNING:dns_config_service_android.cc(153)] Failed to read DnsConfig. D/EgretLoader( 6799): EgretLoader(Context context) D/EgretLoader( 6799): The context is not activity W/.example.aug_t( 6799): Accessing hidden method Landroid/media/AudioManager;->getOutputLatency(I)I (greylist, reflection, allowed) W/cr_media( 6799): Requires BLUETOOTH permission I/.example.aug_t( 6799): ProcessProfilingInfo new_methods=571 is saved saved_to_disk=1 resolve_classes_delay=8000 W/ContentCatcher( 6799): Failed to notify a WebView I/flutter ( 6799): onPageFinished I/flutter ( 6799): htmlHeight : 45000 W/PlatformViewsController( 6799): Creating a virtual display of size: [1080, 99000] may result in problems(https://github.com/flutter/flutter/issues/2897).It is larger than the device screen size: [1080, 2205]. W/ContentCatcher( 6799): Failed to notify a WebView V/InputMethodManager( 6799): b/117267690: Failed to get fallback IMM with expected displayId=248 actual IMM#displayId=0 view=io.flutter.plugins.webviewflutter.InputAwareWebView{b68cd58 VFEDHVC.. ........ 0,0-1080,440} W/ContentCatcher( 6799): Failed to notify a WebView W/BpBinder( 6799): Slow Binder: BpBinder transact took 270ms, interface=android.gui.IGraphicBufferProducer, code=2 oneway=false The Flutter DevTools debugger and profiler on M2007J20CG is available at: http://127.0.0.1:9101?uri=http%3A%2F%2F127.0.0.1%3A54915%2FKUBvHnlbdlg%3D%2F W/Looper ( 6799): PerfMonitor doFrame : time=520ms vsyncFrame=0 latency=72ms procState=2 historyMsgCount=2 I/Choreographer( 6799): Skipped 30 frames! The application may be doing too much work on its main thread. W/Looper ( 6799): PerfMonitor doFrame : time=9ms vsyncFrame=0 latency=510ms procState=2 historyMsgCount=14 (msgIndex=1 wall=520ms seq=84 running=25ms runnable=12ms late=72ms h=android.view.Choreographer$FrameHandler c=android.view.Choreographer$FrameDisplayEventReceiver) W/BpBinder( 6799): Slow Binder: BpBinder transact took 2509ms, interface=android.gui.IGraphicBufferProducer, code=10 oneway=false E/chromium( 6799): [ERROR:skia_output_surface_impl.cc(849)] E/chromium( 6799): surface_size=1080x99000 E/chromium( 6799): format=6 E/chromium( 6799): color_type=4 E/chromium( 6799): backend_format.isValid()=1 E/chromium( 6799): backend_format.backend()=0 E/chromium( 6799): backend_format.asGLFormat()=1 E/chromium( 6799): backend_format.asVkFormat()=0 E/chromium( 6799): backend_format.asVkFormat() vk_format=0 E/chromium( 6799): surface_origin=1 E/chromium( 6799): willGlFBO0=1 F/chromium( 6799): [FATAL:output_surface_provider_webview.cc(39)] Non owned context lost! F/libc ( 6799): Fatal signal 5 (SIGTRAP), code -6 (SI_TKILL) in tid 6824 (RenderThread), pid 6799 (.example.aug_tw) *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Build fingerprint: 'POCO/surya_eea/surya:11/RKQ1.200826.002/V12.0.8.0.RJGEUXM:user/release-keys' Revision: '0' ABI: 'arm64' Timestamp: 2021-08-12 06:59:32+0000 pid: 6799, tid: 6824, name: RenderThread >>> com.example.aug_tw <<< uid: 10354 signal 5 (SIGTRAP), code -6 (SI_TKILL), fault addr -------- Abort message: '[FATAL:output_surface_provider_webview.cc(39)] Non owned context lost! ' x0 0000000000000000 x1 000000795fbdb38d x2 ffffffffffffffff x3 ffffffffffffffff x4 0000000000000048 x5 0000007a45e1b000 x6 0000007a45e1b000 x7 0000000001d22150 x8 0000000000000000 x9 0000000000000000 x10 0000000000000001 x11 0000000000000000 x12 00000000ffffff80 x13 0000000000000048 x14 003871edbebd32e7 x15 00005f1d9194b97f x16 00000079641f0e70 x17 0000007a42c4d7fc x18 0000007954588000 x19 00000079aed421d8 x20 00000079aed421e8 x21 0000000000000046 x22 0000007a42c5cd40 x23 0000007964207000 x24 0000000400881080 x25 0000007964208158 x26 00000079aed4c000 x27 00000079aed425f8 x28 00000079aed425d0 x29 00000079aed42170 lr 000000796187e014 sp 00000079aed41d20 pc 000000796187e14c pst 0000000060000000 backtrace: #00 pc 0000000001f4614c /data/app/~~cjjCcSxyvDyjxVGouyFdzA==/com.google.android.webview-NA-sHcNXYE4RiChvMEx2ug==/base.apk!libmonochrome.so (offset 0x420000) (BuildId: c31ba7457e46062b855920230e9d0e64cbe0e999) Lost connection to device. ```
kekko7072 commented 2 years ago

+1

dominiknovicky commented 3 weeks ago

Facing the same issue on iOS. Any news here?

dominiknovicky commented 3 weeks ago

I'm facing a similar issue, only on iOS devices. When I scroll down and then navigate back using location.back(), the content is partially or completely hidden (depending on the point from where I navigate to another page). This only happens when the content of the page is long. Once I start scrolling again, the content reappears. When using the Angular router, everything works fine. Check video: https://github.com/user-attachments/assets/908599d7-9d42-4b02-9bec-9f5132751e94 This one looks similar: #148344