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
165.23k stars 27.26k forks source link

Emojis displayed without spacing between each other on macOS #60905

Closed technolion closed 1 year ago

technolion commented 4 years ago

Steps to Reproduce

  1. Run flutter create bug.
  2. replace main.dart with following code:
    
    import 'package:flutter/material.dart';

final Color darkBlue = Color.fromARGB(255, 18, 32, 47);

void main() { runApp(MyApp()); }

class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue), debugShowCheckedModeBanner: false, home: Scaffold( body: Center( child: MyWidget(), ), ), ); } }

class MyWidget extends StatelessWidget { @override Widget build(BuildContext context) { final String emojis = '😳😱😃'; TextEditingController tec = new TextEditingController(); tec.text = emojis; return Column( children: [ TextField(controller: tec,), Text(emojis, textScaleFactor: 1), Text(emojis, textScaleFactor: 2), Text(emojis, textScaleFactor: 3), ], ); } }


3. Run the app on macOS.

**Expected results:** emojis should be displayed with the same spacing between them as in every other macOS application

**Actual results:** emojis in the default size are displayed without spacing

![Bildschirmfoto 2020-07-06 um 16 27 02](https://user-images.githubusercontent.com/1611505/86604440-ab241880-bfa5-11ea-9358-e4712f35b549.png)

**NOTE**: When running this app in dartpad, the spacing looks fine!

<details>
  <summary>Logs</summary>

porcupine:emojitest tom$ flutter run --verbose -d macOS [ +105 ms] executing: [/usr/local/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +32 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ ] a74310242e655dc8b4b825e1ed06b7ac78cb3cd2 [ ] executing: [/usr/local/flutter/] git tag --contains HEAD [ +144 ms] Exit code 0 from: git tag --contains HEAD [ +1 ms] executing: [/usr/local/flutter/] git describe --match ..-..pre --first-parent --long --tags [ +17 ms] Exit code 0 from: git describe --match ..-..pre --first-parent --long --tags [ ] 1.20.0-2.0.pre-130-ga74310242 [ +7 ms] executing: [/usr/local/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/master [ ] executing: [/usr/local/flutter/] git ls-remote --get-url origin [ +10 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +45 ms] executing: [/usr/local/flutter/] git rev-parse --abbrev-ref HEAD [ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] master [ +4 ms] executing: sw_vers -productName [ +11 ms] Exit code 0 from: sw_vers -productName [ ] Mac OS X [ ] executing: sw_vers -productVersion [ +12 ms] Exit code 0 from: sw_vers -productVersion [ ] 10.15.5 [ ] executing: sw_vers -buildVersion [ +12 ms] Exit code 0 from: sw_vers -buildVersion [ ] 19F101 [ +31 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ +4 ms] 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. [ +2 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. [ +9 ms] executing: /Users/tom/Library/Android/sdk/platform-tools/adb devices -l [ +5 ms] executing: /usr/bin/xcode-select --print-path [ +4 ms] Exit code 0 from: /usr/bin/xcode-select --print-path [ ] /Applications/Xcode.app/Contents/Developer [ ] executing: /usr/bin/xcodebuild -version [ +92 ms] Exit code 0 from: /usr/bin/xcodebuild -version [ ] Xcode 11.5 Build version 11E608c [ +1 ms] executing: xcrun --find xcdevice [ +6 ms] Exit code 0 from: xcrun --find xcdevice [ ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice [ ] executing: xcrun xcdevice list --timeout 2 [ +3 ms] /usr/bin/xcrun simctl list --json devices [ ] executing: /usr/bin/xcrun simctl list --json devices [ +37 ms] List of devices attached [ +80 ms] { "devices" : { "com.apple.CoreSimulator.SimRuntime.tvOS-13-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/9A698E3C-7033-4B61-996F-3D9C772E6ACA\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/9A698E3C-7033-4B61-996F-3D9C772E6ACA", "udid" : "9A698E3C-7033-4B61-996F-3D9C772E6ACA", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/A877098C-9B79-4472-8B61-D1FC114DDEF8\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/A877098C-9B79-4472-8B61-D1FC114DDEF8", "udid" : "A877098C-9B79-4472-8B61-D1FC114DDEF8", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/99622A63-7C41-4076-8E49-4F3120E9F971\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/99622A63-7C41-4076-8E49-4F3120E9F971", "udid" : "99622A63-7C41-4076-8E49-4F3120E9F971", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-13-0" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/41820F8D-8445-4312-B2FD-4821AAC5D01C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/41820F8D-8445-4312-B2FD-4821AAC5D01C", "udid" : "41820F8D-8445-4312-B2FD-4821AAC5D01C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/44859875-5523-4349-BF3D-FB4F5084735C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/44859875-5523-4349-BF3D-FB4F5084735C", "udid" : "44859875-5523-4349-BF3D-FB4F5084735C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/8547AA95-F81C-4D9D-86A7-FDC5059F7ED4\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/8547AA95-F81C-4D9D-86A7-FDC5059F7ED4", "udid" : "8547AA95-F81C-4D9D-86A7-FDC5059F7ED4", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-5-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/CD026F12-25F4-4BEE-B657-673DE04C9172\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/CD026F12-25F4-4BEE-B657-673DE04C9172", "udid" : "CD026F12-25F4-4BEE-B657-673DE04C9172", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm", "state" : "Shutdown", "name" : "Apple Watch Series 2 - 38mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/22E3EEDD-74C1-4198-A390-AB8D6413EDAE\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/22E3EEDD-74C1-4198-A390-AB8D6413EDAE", "udid" : "22E3EEDD-74C1-4198-A390-AB8D6413EDAE", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm", "state" : "Shutdown", "name" : "Apple Watch Series 2 - 42mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/69A2C9D4-081F-4805-8CCF-1B28F8BA8C4B\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/69A2C9D4-081F-4805-8CCF-1B28F8BA8C4B", "udid" : "69A2C9D4-081F-4805-8CCF-1B28F8BA8C4B", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm", "state" : "Shutdown", "name" : "Apple Watch Series 3 - 38mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/77A7BB0F-6D33-4128-9A37-16B14E775EB3\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/77A7BB0F-6D33-4128-9A37-16B14E775EB3", "udid" : "77A7BB0F-6D33-4128-9A37-16B14E775EB3", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm", "state" : "Shutdown", "name" : "Apple Watch Series 3 - 42mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/98B4AB32-206D-4DF6-A95B-0C5DC963D582\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/98B4AB32-206D-4DF6-A95B-0C5DC963D582", "udid" : "98B4AB32-206D-4DF6-A95B-0C5DC963D582", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/22BE429B-6631-4D00-B514-2D26C0A97C0F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/22BE429B-6631-4D00-B514-2D26C0A97C0F", "udid" : "22BE429B-6631-4D00-B514-2D26C0A97C0F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-6-1" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/6D3C62FF-AADF-4D2B-BDE8-3FE334F4EB76\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/6D3C62FF-AADF-4D2B-BDE8-3FE334F4EB76", "udid" : "6D3C62FF-AADF-4D2B-BDE8-3FE334F4EB76", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/CD1B1D7F-6A0A-42B7-BC54-669EC949560B\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/CD1B1D7F-6A0A-42B7-BC54-669EC949560B", "udid" : "CD1B1D7F-6A0A-42B7-BC54-669EC949560B", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C4129A82-F14E-45BF-A5D4-6004233B56DA\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C4129A82-F14E-45BF-A5D4-6004233B56DA", "udid" : "C4129A82-F14E-45BF-A5D4-6004233B56DA", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 40mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/A7260AB9-030D-4FB8-A3C3-3C5AF271770C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/A7260AB9-030D-4FB8-A3C3-3C5AF271770C", "udid" : "A7260AB9-030D-4FB8-A3C3-3C5AF271770C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.iOS-13-5" : [ { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/1EC88B1D-06C8-4AF2-920D-E5A0CB9A27CF\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/1EC88B1D-06C8-4AF2-920D-E5A0CB9A27CF", "udid" : "1EC88B1D-06C8-4AF2-920D-E5A0CB9A27CF", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/E557F813-7725-4F34-A758-13710E201895\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/E557F813-7725-4F34-A758-13710E201895", "udid" : "E557F813-7725-4F34-A758-13710E201895", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/956152C8-6D07-4D5D-B034-02B130512FB6\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/956152C8-6D07-4D5D-B034-02B130512FB6", "udid" : "956152C8-6D07-4D5D-B034-02B130512FB6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/69746622-342D-4D78-94A1-A70DF25013EF\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/69746622-342D-4D78-94A1-A70DF25013EF", "udid" : "69746622-342D-4D78-94A1-A70DF25013EF", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/B18BDE6D-97A3-4461-9508-4E7908842496\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/B18BDE6D-97A3-4461-9508-4E7908842496", "udid" : "B18BDE6D-97A3-4461-9508-4E7908842496", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/0C6454AC-0BAE-4E1C-883C-14CA6F9E020C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/0C6454AC-0BAE-4E1C-883C-14CA6F9E020C", "udid" : "0C6454AC-0BAE-4E1C-883C-14CA6F9E020C", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-", "state" : "Shutdown", "name" : "iPhone SE (2nd generation)" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/7ACAFA99-51DF-48A3-94D8-23E19D9DA595\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/7ACAFA99-51DF-48A3-94D8-23E19D9DA595", "udid" : "7ACAFA99-51DF-48A3-94D8-23E19D9DA595", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/1EDD0EE6-BDD4-4870-B679-3FC6C51397DD\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/1EDD0EE6-BDD4-4870-B679-3FC6C51397DD", "udid" : "1EDD0EE6-BDD4-4870-B679-3FC6C51397DD", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-", "state" : "Shutdown", "name" : "iPad (7th generation)" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/2195BAFF-C03A-40DB-8118-C81E4A754973\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/2195BAFF-C03A-40DB-8118-C81E4A754973", "udid" : "2195BAFF-C03A-40DB-8118-C81E4A754973", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (2nd generation)" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/6328F549-0DD4-4B73-A0A4-5B7D8FC79B0C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/6328F549-0DD4-4B73-A0A4-5B7D8FC79B0C", "udid" : "6328F549-0DD4-4B73-A0A4-5B7D8FC79B0C", "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\/tom\/Library\/Developer\/CoreSimulator\/Devices\/B798323D-48DE-4FE1-A396-8FB53CEC6E2A\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/B798323D-48DE-4FE1-A396-8FB53CEC6E2A", "udid" : "B798323D-48DE-4FE1-A396-8FB53CEC6E2A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-12-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/4B325A87-F739-443C-9460-910AD6AAFA3E\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/4B325A87-F739-443C-9460-910AD6AAFA3E", "udid" : "4B325A87-F739-443C-9460-910AD6AAFA3E", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s", "state" : "Shutdown", "name" : "iPhone 5s" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/35572345-0374-43F7-A879-E8955576D403\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/35572345-0374-43F7-A879-E8955576D403", "udid" : "35572345-0374-43F7-A879-E8955576D403", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus", "state" : "Shutdown", "name" : "iPhone 6 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/B1103B5D-EBF8-4BB8-BD7A-E7D987F38A92\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/B1103B5D-EBF8-4BB8-BD7A-E7D987F38A92", "udid" : "B1103B5D-EBF8-4BB8-BD7A-E7D987F38A92", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6", "state" : "Shutdown", "name" : "iPhone 6" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/1829B1B6-3C6A-4812-9029-8881C589B165\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/1829B1B6-3C6A-4812-9029-8881C589B165", "udid" : "1829B1B6-3C6A-4812-9029-8881C589B165", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s", "state" : "Shutdown", "name" : "iPhone 6s" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/7081F352-0D1A-4586-B9CF-77CA2A91F52D\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/7081F352-0D1A-4586-B9CF-77CA2A91F52D", "udid" : "7081F352-0D1A-4586-B9CF-77CA2A91F52D", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus", "state" : "Shutdown", "name" : "iPhone 6s Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/93130E15-7866-4C0D-8264-384BC63A60D5\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/93130E15-7866-4C0D-8264-384BC63A60D5", "udid" : "93130E15-7866-4C0D-8264-384BC63A60D5", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE", "state" : "Shutdown", "name" : "iPhone SE" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C1700911-B603-4A6C-A9A9-62C9DF4CE1C6\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C1700911-B603-4A6C-A9A9-62C9DF4CE1C6", "udid" : "C1700911-B603-4A6C-A9A9-62C9DF4CE1C6", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7", "state" : "Shutdown", "name" : "iPhone 7" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/10878559-8C93-4F39-9E81-F492ABCBEE88\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/10878559-8C93-4F39-9E81-F492ABCBEE88", "udid" : "10878559-8C93-4F39-9E81-F492ABCBEE88", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus", "state" : "Shutdown", "name" : "iPhone 7 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/74CD7F3D-1E1C-415B-82C0-A59DE906F81F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/74CD7F3D-1E1C-415B-82C0-A59DE906F81F", "udid" : "74CD7F3D-1E1C-415B-82C0-A59DE906F81F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/2D54C4E8-C222-4D6B-8509-F98FA5B27916\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/2D54C4E8-C222-4D6B-8509-F98FA5B27916", "udid" : "2D54C4E8-C222-4D6B-8509-F98FA5B27916", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/96329046-6151-40BD-A10F-C6FB8F2452BC\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/96329046-6151-40BD-A10F-C6FB8F2452BC", "udid" : "96329046-6151-40BD-A10F-C6FB8F2452BC", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X", "state" : "Shutdown", "name" : "iPhone X" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/A242DB54-EF7C-45DB-82AB-6C723B0B3C04\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/A242DB54-EF7C-45DB-82AB-6C723B0B3C04", "udid" : "A242DB54-EF7C-45DB-82AB-6C723B0B3C04", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS", "state" : "Shutdown", "name" : "iPhone Xs" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/ABA9BF15-C790-46B1-8AA5-C7FEF2962C8F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/ABA9BF15-C790-46B1-8AA5-C7FEF2962C8F", "udid" : "ABA9BF15-C790-46B1-8AA5-C7FEF2962C8F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max", "state" : "Shutdown", "name" : "iPhone Xs Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/11FF914E-51E0-404D-9A25-22B80FB032A2\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/11FF914E-51E0-404D-9A25-22B80FB032A2", "udid" : "11FF914E-51E0-404D-9A25-22B80FB032A2", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR", "state" : "Shutdown", "name" : "iPhone XÊ€" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/76C6CA41-2C4D-4F54-BF7C-7A6741206094\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/76C6CA41-2C4D-4F54-BF7C-7A6741206094", "udid" : "76C6CA41-2C4D-4F54-BF7C-7A6741206094", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air", "state" : "Shutdown", "name" : "iPad Air" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/7134DC3F-3364-4974-8E65-C91408987167\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/7134DC3F-3364-4974-8E65-C91408987167", "udid" : "7134DC3F-3364-4974-8E65-C91408987167", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2", "state" : "Shutdown", "name" : "iPad Air 2" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/32A3E632-B103-45DE-84BC-AAD8FD9CCC80\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/32A3E632-B103-45DE-84BC-AAD8FD9CCC80", "udid" : "32A3E632-B103-45DE-84BC-AAD8FD9CCC80", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/3CFB9BB7-92B9-4E95-A940-59B25A5FA501\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/3CFB9BB7-92B9-4E95-A940-59B25A5FA501", "udid" : "3CFB9BB7-92B9-4E95-A940-59B25A5FA501", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/3FE4BBCF-4D49-4DDC-B58C-D5BCE5F5B5B9\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/3FE4BBCF-4D49-4DDC-B58C-D5BCE5F5B5B9", "udid" : "3FE4BBCF-4D49-4DDC-B58C-D5BCE5F5B5B9", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-", "state" : "Shutdown", "name" : "iPad (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/667495D1-303F-4B21-946F-35FA50497CA2\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/667495D1-303F-4B21-946F-35FA50497CA2", "udid" : "667495D1-303F-4B21-946F-35FA50497CA2", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (2nd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F261D62B-DAC3-4306-A0E1-07AAF5317FE3\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F261D62B-DAC3-4306-A0E1-07AAF5317FE3", "udid" : "F261D62B-DAC3-4306-A0E1-07AAF5317FE3", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-", "state" : "Shutdown", "name" : "iPad Pro (10.5-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C915A690-949E-41F0-A485-03E504DDC088\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C915A690-949E-41F0-A485-03E504DDC088", "udid" : "C915A690-949E-41F0-A485-03E504DDC088", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-", "state" : "Shutdown", "name" : "iPad (6th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/E9F3BAE1-A0F4-4B09-8C5F-7638F8A25E76\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/E9F3BAE1-A0F4-4B09-8C5F-7638F8A25E76", "udid" : "E9F3BAE1-A0F4-4B09-8C5F-7638F8A25E76", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-", "state" : "Shutdown", "name" : "iPad Pro (11-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F25DC8D0-3B7E-453E-9C75-ECB8F465ED67\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F25DC8D0-3B7E-453E-9C75-ECB8F465ED67", "udid" : "F25DC8D0-3B7E-453E-9C75-ECB8F465ED67", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/92F23B92-B9CE-4BA3-ADB9-90CF1D75B8E7\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/92F23B92-B9CE-4BA3-ADB9-90CF1D75B8E7", "udid" : "92F23B92-B9CE-4BA3-ADB9-90CF1D75B8E7", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-13-3" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/3B133073-F36C-491A-B161-60CC35FA7D42\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/3B133073-F36C-491A-B161-60CC35FA7D42", "udid" : "3B133073-F36C-491A-B161-60CC35FA7D42", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE", "state" : "Shutdown", "name" : "iPhone SE" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/282970A1-3AE0-43CA-95E8-BA287CD985A0\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/282970A1-3AE0-43CA-95E8-BA287CD985A0", "udid" : "282970A1-3AE0-43CA-95E8-BA287CD985A0", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/43D8C156-81DF-44E5-9BF8-6AF78B9E7871\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/43D8C156-81DF-44E5-9BF8-6AF78B9E7871", "udid" : "43D8C156-81DF-44E5-9BF8-6AF78B9E7871", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C44712DC-9798-4ABE-85D4-5565A6440CED\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C44712DC-9798-4ABE-85D4-5565A6440CED", "udid" : "C44712DC-9798-4ABE-85D4-5565A6440CED", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS", "state" : "Shutdown", "name" : "iPhone Xs" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/4451A5DF-6D1F-4836-ABB6-6A0BC0ACB933\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/4451A5DF-6D1F-4836-ABB6-6A0BC0ACB933", "udid" : "4451A5DF-6D1F-4836-ABB6-6A0BC0ACB933", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/523E9689-E048-4D24-96C6-F4676D5336D4\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/523E9689-E048-4D24-96C6-F4676D5336D4", "udid" : "523E9689-E048-4D24-96C6-F4676D5336D4", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/9D3DB8FA-AFAF-4964-BD9F-BED1C380AD1A\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/9D3DB8FA-AFAF-4964-BD9F-BED1C380AD1A", "udid" : "9D3DB8FA-AFAF-4964-BD9F-BED1C380AD1A", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/924F5667-FD2F-4B2A-94E9-E479DCC4014F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/924F5667-FD2F-4B2A-94E9-E479DCC4014F", "udid" : "924F5667-FD2F-4B2A-94E9-E479DCC4014F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/41746B52-42D2-4EF2-971C-BBC15868F447\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/41746B52-42D2-4EF2-971C-BBC15868F447", "udid" : "41746B52-42D2-4EF2-971C-BBC15868F447", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-", "state" : "Shutdown", "name" : "iPad (7th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/AF7813D7-AA1F-4B1F-911B-DE80B55DE318\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/AF7813D7-AA1F-4B1F-911B-DE80B55DE318", "udid" : "AF7813D7-AA1F-4B1F-911B-DE80B55DE318", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-", "state" : "Shutdown", "name" : "iPad Pro (11-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C734789F-2973-450E-8ACC-9EFE40CF5BFF\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C734789F-2973-450E-8ACC-9EFE40CF5BFF", "udid" : "C734789F-2973-450E-8ACC-9EFE40CF5BFF", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/1525D2E2-CA08-4FE1-ADB4-970396B47D15\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/1525D2E2-CA08-4FE1-ADB4-970396B47D15", "udid" : "1525D2E2-CA08-4FE1-ADB4-970396B47D15", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-13-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/B527EE1B-8F1F-452A-9E4D-4F7260E4A88A\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/B527EE1B-8F1F-452A-9E4D-4F7260E4A88A", "udid" : "B527EE1B-8F1F-452A-9E4D-4F7260E4A88A", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE", "state" : "Shutdown", "name" : "iPhone SE" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/1F61239F-9F70-48D1-BD83-3C4C167DDE77\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/1F61239F-9F70-48D1-BD83-3C4C167DDE77", "udid" : "1F61239F-9F70-48D1-BD83-3C4C167DDE77", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/84C98117-8F6B-42B6-AD7A-9E6176C59EE6\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/84C98117-8F6B-42B6-AD7A-9E6176C59EE6", "udid" : "84C98117-8F6B-42B6-AD7A-9E6176C59EE6", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/CD9A034A-D1D2-4D5E-B402-6A6F8A852D7B\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/CD9A034A-D1D2-4D5E-B402-6A6F8A852D7B", "udid" : "CD9A034A-D1D2-4D5E-B402-6A6F8A852D7B", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C0E904AE-8B18-4CC0-9C0D-DD5BBC25E089\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C0E904AE-8B18-4CC0-9C0D-DD5BBC25E089", "udid" : "C0E904AE-8B18-4CC0-9C0D-DD5BBC25E089", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Creating", "name" : "iPhone 11 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/A18C7870-50D8-46AA-BB3D-2066BB48BFB3\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/A18C7870-50D8-46AA-BB3D-2066BB48BFB3", "udid" : "A18C7870-50D8-46AA-BB3D-2066BB48BFB3", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Creating", "name" : "iPhone 11 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/ACDB3244-E476-4628-9AA6-9CC6D23689D2\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/ACDB3244-E476-4628-9AA6-9CC6D23689D2", "udid" : "ACDB3244-E476-4628-9AA6-9CC6D23689D2", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/832F4719-318E-45F9-B844-0EFFC8864ADF\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/832F4719-318E-45F9-B844-0EFFC8864ADF", "udid" : "832F4719-318E-45F9-B844-0EFFC8864ADF", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-", "state" : "Shutdown", "name" : "iPad (7th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/2062DCBE-09D1-46D2-AA70-E8D1AC0D3D48\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/2062DCBE-09D1-46D2-AA70-E8D1AC0D3D48", "udid" : "2062DCBE-09D1-46D2-AA70-E8D1AC0D3D48", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-", "state" : "Shutdown", "name" : "iPad Pro (11-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C8E8D639-03BE-4D81-8C58-907E75075DDC\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C8E8D639-03BE-4D81-8C58-907E75075DDC", "udid" : "C8E8D639-03BE-4D81-8C58-907E75075DDC", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F85F77D7-550A-48E5-AAF8-51097615DA0C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F85F77D7-550A-48E5-AAF8-51097615DA0C", "udid" : "F85F77D7-550A-48E5-AAF8-51097615DA0C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-12-1" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/0DCEB1F7-DAF6-4977-A50D-48D3AB0EBD58\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/0DCEB1F7-DAF6-4977-A50D-48D3AB0EBD58", "udid" : "0DCEB1F7-DAF6-4977-A50D-48D3AB0EBD58", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s", "state" : "Shutdown", "name" : "iPhone 5s" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/6FF63E41-E332-41A8-A797-21E48B655AF5\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/6FF63E41-E332-41A8-A797-21E48B655AF5", "udid" : "6FF63E41-E332-41A8-A797-21E48B655AF5", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus", "state" : "Shutdown", "name" : "iPhone 6 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/502B5C86-C5C8-435D-B88C-81F64962C451\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/502B5C86-C5C8-435D-B88C-81F64962C451", "udid" : "502B5C86-C5C8-435D-B88C-81F64962C451", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6", "state" : "Shutdown", "name" : "iPhone 6" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/0EC3C4CF-2C0E-4EE4-901E-192D9305FEBF\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/0EC3C4CF-2C0E-4EE4-901E-192D9305FEBF", "udid" : "0EC3C4CF-2C0E-4EE4-901E-192D9305FEBF", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s", "state" : "Shutdown", "name" : "iPhone 6s" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/618AD4F2-C99A-47A5-B411-0DA47B90369F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/618AD4F2-C99A-47A5-B411-0DA47B90369F", "udid" : "618AD4F2-C99A-47A5-B411-0DA47B90369F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus", "state" : "Shutdown", "name" : "iPhone 6s Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/914FF08C-21AA-4626-9ACD-C580AC12A281\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/914FF08C-21AA-4626-9ACD-C580AC12A281", "udid" : "914FF08C-21AA-4626-9ACD-C580AC12A281", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE", "state" : "Shutdown", "name" : "iPhone SE" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C35D5BF9-1BC7-41B3-BB44-4EE047799E9B\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C35D5BF9-1BC7-41B3-BB44-4EE047799E9B", "udid" : "C35D5BF9-1BC7-41B3-BB44-4EE047799E9B", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7", "state" : "Shutdown", "name" : "iPhone 7" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/AE5A9F54-276E-4356-9502-9FB4A43DE0A5\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/AE5A9F54-276E-4356-9502-9FB4A43DE0A5", "udid" : "AE5A9F54-276E-4356-9502-9FB4A43DE0A5", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus", "state" : "Shutdown", "name" : "iPhone 7 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/059308F6-C40B-46BE-833F-BFC945AFB93D\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/059308F6-C40B-46BE-833F-BFC945AFB93D", "udid" : "059308F6-C40B-46BE-833F-BFC945AFB93D", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/3C469A4F-4F1B-40F5-BF4C-DCD655371418\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/3C469A4F-4F1B-40F5-BF4C-DCD655371418", "udid" : "3C469A4F-4F1B-40F5-BF4C-DCD655371418", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/D5C6157D-A218-47E3-A25A-D7AE2F7FE62C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/D5C6157D-A218-47E3-A25A-D7AE2F7FE62C", "udid" : "D5C6157D-A218-47E3-A25A-D7AE2F7FE62C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X", "state" : "Shutdown", "name" : "iPhone X" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/DDAEC31E-D09D-4569-BC4C-28EA4EF32FD8\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/DDAEC31E-D09D-4569-BC4C-28EA4EF32FD8", "udid" : "DDAEC31E-D09D-4569-BC4C-28EA4EF32FD8", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS", "state" : "Shutdown", "name" : "iPhone XS" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/522EEB11-5E01-4A7B-A002-163974A1B9FC\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/522EEB11-5E01-4A7B-A002-163974A1B9FC", "udid" : "522EEB11-5E01-4A7B-A002-163974A1B9FC", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max", "state" : "Shutdown", "name" : "iPhone XS Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C1472D98-0857-4919-B6A5-263930B607DD\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C1472D98-0857-4919-B6A5-263930B607DD", "udid" : "C1472D98-0857-4919-B6A5-263930B607DD", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR", "state" : "Shutdown", "name" : "iPhone XR" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/78D8755D-A76F-4966-96D5-47B4413B8A0F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/78D8755D-A76F-4966-96D5-47B4413B8A0F", "udid" : "78D8755D-A76F-4966-96D5-47B4413B8A0F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air", "state" : "Shutdown", "name" : "iPad Air" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/24A8ED1B-63CA-4ECC-B96D-433D72DADB92\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/24A8ED1B-63CA-4ECC-B96D-433D72DADB92", "udid" : "24A8ED1B-63CA-4ECC-B96D-433D72DADB92", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2", "state" : "Shutdown", "name" : "iPad Air 2" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/23AFA8FD-BC9F-4817-81DD-65DB32745879\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/23AFA8FD-BC9F-4817-81DD-65DB32745879", "udid" : "23AFA8FD-BC9F-4817-81DD-65DB32745879", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/9C6108CB-4803-49AF-B51B-D7E162B6A856\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/9C6108CB-4803-49AF-B51B-D7E162B6A856", "udid" : "9C6108CB-4803-49AF-B51B-D7E162B6A856", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/884CA031-56C2-45C4-A1CD-BC33A448CA29\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/884CA031-56C2-45C4-A1CD-BC33A448CA29", "udid" : "884CA031-56C2-45C4-A1CD-BC33A448CA29", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-", "state" : "Shutdown", "name" : "iPad (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/7F001DF2-A53B-4A41-8EEE-C23DE94C77AC\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/7F001DF2-A53B-4A41-8EEE-C23DE94C77AC", "udid" : "7F001DF2-A53B-4A41-8EEE-C23DE94C77AC", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (2nd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/08FC4B19-59D1-4158-B09A-2863241D2D11\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/08FC4B19-59D1-4158-B09A-2863241D2D11", "udid" : "08FC4B19-59D1-4158-B09A-2863241D2D11", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-", "state" : "Shutdown", "name" : "iPad Pro (10.5-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/CC57E214-623B-4793-ABFA-021369EEA9E7\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/CC57E214-623B-4793-ABFA-021369EEA9E7", "udid" : "CC57E214-623B-4793-ABFA-021369EEA9E7", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-", "state" : "Shutdown", "name" : "iPad (6th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/91ADFE07-8059-41E2-918D-CDAFD20AED79\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/91ADFE07-8059-41E2-918D-CDAFD20AED79", "udid" : "91ADFE07-8059-41E2-918D-CDAFD20AED79", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-", "state" : "Shutdown", "name" : "iPad Pro (11-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/0406DE49-0D97-4723-975F-CE27A3FFBB1D\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/0406DE49-0D97-4723-975F-CE27A3FFBB1D", "udid" : "0406DE49-0D97-4723-975F-CE27A3FFBB1D", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (3rd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-12-4" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/160B6D4D-2821-4CEF-AA46-01D7D3BFE0A4\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/160B6D4D-2821-4CEF-AA46-01D7D3BFE0A4", "udid" : "160B6D4D-2821-4CEF-AA46-01D7D3BFE0A4", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s", "state" : "Shutdown", "name" : "iPhone 5s" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C99417BF-65CF-4AD3-A889-36A210040CD8\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C99417BF-65CF-4AD3-A889-36A210040CD8", "udid" : "C99417BF-65CF-4AD3-A889-36A210040CD8", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus", "state" : "Shutdown", "name" : "iPhone 6 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/43F75980-9A3F-41AB-94DB-7980A2150CFF\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/43F75980-9A3F-41AB-94DB-7980A2150CFF", "udid" : "43F75980-9A3F-41AB-94DB-7980A2150CFF", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6", "state" : "Shutdown", "name" : "iPhone 6" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/5037B031-87FB-4D0C-8630-C75B1B10925C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/5037B031-87FB-4D0C-8630-C75B1B10925C", "udid" : "5037B031-87FB-4D0C-8630-C75B1B10925C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s", "state" : "Shutdown", "name" : "iPhone 6s" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F2511EB7-C242-4324-86C9-DA6819E42C86\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F2511EB7-C242-4324-86C9-DA6819E42C86", "udid" : "F2511EB7-C242-4324-86C9-DA6819E42C86", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus", "state" : "Shutdown", "name" : "iPhone 6s Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/B9B2FD0F-113C-4151-B005-637960254C10\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/B9B2FD0F-113C-4151-B005-637960254C10", "udid" : "B9B2FD0F-113C-4151-B005-637960254C10", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE", "state" : "Shutdown", "name" : "iPhone SE" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/409C83B9-DC71-4163-8D19-86327B7AF6E4\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/409C83B9-DC71-4163-8D19-86327B7AF6E4", "udid" : "409C83B9-DC71-4163-8D19-86327B7AF6E4", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7", "state" : "Shutdown", "name" : "iPhone 7" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/AADCA81A-ED57-44A8-9781-2B9BC0B45B98\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/AADCA81A-ED57-44A8-9781-2B9BC0B45B98", "udid" : "AADCA81A-ED57-44A8-9781-2B9BC0B45B98", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus", "state" : "Shutdown", "name" : "iPhone 7 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/6526E6A7-1C1E-433E-9080-FC69DEBA96DC\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/6526E6A7-1C1E-433E-9080-FC69DEBA96DC", "udid" : "6526E6A7-1C1E-433E-9080-FC69DEBA96DC", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/DDD65820-BA72-4861-BA11-F895F920ECF7\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/DDD65820-BA72-4861-BA11-F895F920ECF7", "udid" : "DDD65820-BA72-4861-BA11-F895F920ECF7", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/A934CF0E-21D9-4B16-8F15-7CAA0289A7F0\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/A934CF0E-21D9-4B16-8F15-7CAA0289A7F0", "udid" : "A934CF0E-21D9-4B16-8F15-7CAA0289A7F0", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X", "state" : "Shutdown", "name" : "iPhone X" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/83FCBC2D-79B9-4CE5-A8F5-776F3D3A9506\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/83FCBC2D-79B9-4CE5-A8F5-776F3D3A9506", "udid" : "83FCBC2D-79B9-4CE5-A8F5-776F3D3A9506", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS", "state" : "Shutdown", "name" : "iPhone Xs" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/876347E8-08F5-41EF-B978-52A2D72EEEC4\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/876347E8-08F5-41EF-B978-52A2D72EEEC4", "udid" : "876347E8-08F5-41EF-B978-52A2D72EEEC4", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max", "state" : "Shutdown", "name" : "iPhone Xs Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/4A23A266-EE08-4219-8F03-FFEBBCFDC49E\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/4A23A266-EE08-4219-8F03-FFEBBCFDC49E", "udid" : "4A23A266-EE08-4219-8F03-FFEBBCFDC49E", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR", "state" : "Shutdown", "name" : "iPhone XÊ€" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/9EFE68BE-CD74-4262-AF02-95E7C3EFE01F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/9EFE68BE-CD74-4262-AF02-95E7C3EFE01F", "udid" : "9EFE68BE-CD74-4262-AF02-95E7C3EFE01F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air", "state" : "Shutdown", "name" : "iPad Air" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/7FF91E0A-3966-4DC8-9DFD-CD603002325A\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/7FF91E0A-3966-4DC8-9DFD-CD603002325A", "udid" : "7FF91E0A-3966-4DC8-9DFD-CD603002325A", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2", "state" : "Shutdown", "name" : "iPad Air 2" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F52A8526-E4BE-4478-B8CC-86EDB0789543\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F52A8526-E4BE-4478-B8CC-86EDB0789543", "udid" : "F52A8526-E4BE-4478-B8CC-86EDB0789543", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/D0FCD904-D742-49F7-8B92-71528D16C2F9\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/D0FCD904-D742-49F7-8B92-71528D16C2F9", "udid" : "D0FCD904-D742-49F7-8B92-71528D16C2F9", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/DDB0E1E1-7F3F-41FA-9E8F-2294B5BFA0B5\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/DDB0E1E1-7F3F-41FA-9E8F-2294B5BFA0B5", "udid" : "DDB0E1E1-7F3F-41FA-9E8F-2294B5BFA0B5", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-", "state" : "Shutdown", "name" : "iPad (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/3A0923B3-C51B-4173-BED0-22CE9B5BE5B7\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/3A0923B3-C51B-4173-BED0-22CE9B5BE5B7", "udid" : "3A0923B3-C51B-4173-BED0-22CE9B5BE5B7", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (2nd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/39732B77-0563-4F7B-B9CE-BBD581BC716B\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/39732B77-0563-4F7B-B9CE-BBD581BC716B", "udid" : "39732B77-0563-4F7B-B9CE-BBD581BC716B", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-", "state" : "Shutdown", "name" : "iPad Pro (10.5-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/56A50EFB-A85B-40EF-B9A7-4EC56D09A963\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/56A50EFB-A85B-40EF-B9A7-4EC56D09A963", "udid" : "56A50EFB-A85B-40EF-B9A7-4EC56D09A963", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-", "state" : "Shutdown", "name" : "iPad (6th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F18502B8-4279-4583-9F47-3287C72CF908\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F18502B8-4279-4583-9F47-3287C72CF908", "udid" : "F18502B8-4279-4583-9F47-3287C72CF908", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-", "state" : "Shutdown", "name" : "iPad Pro (11-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/FE9A77F8-A68B-4549-85D6-B45AB951ED52\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/FE9A77F8-A68B-4549-85D6-B45AB951ED52", "udid" : "FE9A77F8-A68B-4549-85D6-B45AB951ED52", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/9EC91BE8-CD11-428D-B068-87E372C2820E\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/9EC91BE8-CD11-428D-B068-87E372C2820E", "udid" : "9EC91BE8-CD11-428D-B068-87E372C2820E", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-13-0" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/12FCF3FA-4269-4433-9E29-4BEA04B2ED40\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/12FCF3FA-4269-4433-9E29-4BEA04B2ED40", "udid" : "12FCF3FA-4269-4433-9E29-4BEA04B2ED40", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/9E2297A2-2F15-4522-8F98-76DA074D5AFF\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/9E2297A2-2F15-4522-8F98-76DA074D5AFF", "udid" : "9E2297A2-2F15-4522-8F98-76DA074D5AFF", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/FEABEB1A-B39B-494D-A354-7E576B438725\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/FEABEB1A-B39B-494D-A354-7E576B438725", "udid" : "FEABEB1A-B39B-494D-A354-7E576B438725", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/FB3CD6CF-D8B7-4D01-8CA5-2F0009EB7D6D\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/FB3CD6CF-D8B7-4D01-8CA5-2F0009EB7D6D", "udid" : "FB3CD6CF-D8B7-4D01-8CA5-2F0009EB7D6D", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C91B752C-A125-46EA-ACC0-3A8954137BBA\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C91B752C-A125-46EA-ACC0-3A8954137BBA", "udid" : "C91B752C-A125-46EA-ACC0-3A8954137BBA", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/B301E8F3-8490-4239-9199-D062A6D01DF8\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/B301E8F3-8490-4239-9199-D062A6D01DF8", "udid" : "B301E8F3-8490-4239-9199-D062A6D01DF8", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/DFEA9D03-4FAC-4069-B294-216AF9432310\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/DFEA9D03-4FAC-4069-B294-216AF9432310", "udid" : "DFEA9D03-4FAC-4069-B294-216AF9432310", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-", "state" : "Shutdown", "name" : "iPad Pro (11-inch)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/8BEC654F-6B54-42C5-AA60-DEC809821F1F\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/8BEC654F-6B54-42C5-AA60-DEC809821F1F", "udid" : "8BEC654F-6B54-42C5-AA60-DEC809821F1F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/E300A362-A3FF-484A-945C-1E7438F29318\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/E300A362-A3FF-484A-945C-1E7438F29318", "udid" : "E300A362-A3FF-484A-945C-1E7438F29318", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-5-1" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/D092F19E-DB63-4D5B-9743-7F5B8392B989\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/D092F19E-DB63-4D5B-9743-7F5B8392B989", "udid" : "D092F19E-DB63-4D5B-9743-7F5B8392B989", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm", "state" : "Shutdown", "name" : "Apple Watch Series 2 - 38mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/BEC207D4-F35B-45F6-917B-C3C7B441C599\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/BEC207D4-F35B-45F6-917B-C3C7B441C599", "udid" : "BEC207D4-F35B-45F6-917B-C3C7B441C599", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm", "state" : "Shutdown", "name" : "Apple Watch Series 2 - 42mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/E129C368-1264-4238-A2DF-8D006415C672\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/E129C368-1264-4238-A2DF-8D006415C672", "udid" : "E129C368-1264-4238-A2DF-8D006415C672", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm", "state" : "Shutdown", "name" : "Apple Watch Series 3 - 38mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/DC5E9741-1ADC-41DF-9481-D68C34AF983B\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/DC5E9741-1ADC-41DF-9481-D68C34AF983B", "udid" : "DC5E9741-1ADC-41DF-9481-D68C34AF983B", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm", "state" : "Shutdown", "name" : "Apple Watch Series 3 - 42mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F5BC6B87-8DF6-41BD-9D85-E7D8005DB54C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F5BC6B87-8DF6-41BD-9D85-E7D8005DB54C", "udid" : "F5BC6B87-8DF6-41BD-9D85-E7D8005DB54C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/FA573582-A3E4-422C-BB31-D86C7300D640\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/FA573582-A3E4-422C-BB31-D86C7300D640", "udid" : "FA573582-A3E4-422C-BB31-D86C7300D640", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-6-0" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/04DC7622-FA0E-4E06-8FCA-4F76A4D52543\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/04DC7622-FA0E-4E06-8FCA-4F76A4D52543", "udid" : "04DC7622-FA0E-4E06-8FCA-4F76A4D52543", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/23E3A51A-D0D0-4447-B7E1-C6A3CE23A203\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/23E3A51A-D0D0-4447-B7E1-C6A3CE23A203", "udid" : "23E3A51A-D0D0-4447-B7E1-C6A3CE23A203", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/EDC8FA43-DEAE-47CA-BDFE-0046BF8C93F6\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/EDC8FA43-DEAE-47CA-BDFE-0046BF8C93F6", "udid" : "EDC8FA43-DEAE-47CA-BDFE-0046BF8C93F6", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 40mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/95F21178-AE2C-403D-A9CB-69B4CCE84D16\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/95F21178-AE2C-403D-A9CB-69B4CCE84D16", "udid" : "95F21178-AE2C-403D-A9CB-69B4CCE84D16", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-12-4" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/1547761B-21B6-4D2E-ACD2-B99A6B7CEDD8\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/1547761B-21B6-4D2E-ACD2-B99A6B7CEDD8", "udid" : "1547761B-21B6-4D2E-ACD2-B99A6B7CEDD8", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/C31335B6-3DDD-412E-AA3D-04E30B5EC23A\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/C31335B6-3DDD-412E-AA3D-04E30B5EC23A", "udid" : "C31335B6-3DDD-412E-AA3D-04E30B5EC23A", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/6B398A23-3E78-4DD1-BBDB-8AE7EC8EECA4\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/6B398A23-3E78-4DD1-BBDB-8AE7EC8EECA4", "udid" : "6B398A23-3E78-4DD1-BBDB-8AE7EC8EECA4", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [ { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/CBCB30AA-944D-41D6-A100-9DC05412AC07\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/CBCB30AA-944D-41D6-A100-9DC05412AC07", "udid" : "CBCB30AA-944D-41D6-A100-9DC05412AC07", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/79699DCD-9CB4-432B-92D5-DB95D6E24409\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/79699DCD-9CB4-432B-92D5-DB95D6E24409", "udid" : "79699DCD-9CB4-432B-92D5-DB95D6E24409", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/56CF2722-E28E-452C-A58D-BEB58C8B5F0E\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/56CF2722-E28E-452C-A58D-BEB58C8B5F0E", "udid" : "56CF2722-E28E-452C-A58D-BEB58C8B5F0E", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-5-3" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/5EDB09E8-5989-45CF-8BC8-D742AC37A030\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/5EDB09E8-5989-45CF-8BC8-D742AC37A030", "udid" : "5EDB09E8-5989-45CF-8BC8-D742AC37A030", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm", "state" : "Shutdown", "name" : "Apple Watch Series 2 - 38mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/2817ADB2-68D6-48E4-999E-0CE455B2821C\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/2817ADB2-68D6-48E4-999E-0CE455B2821C", "udid" : "2817ADB2-68D6-48E4-999E-0CE455B2821C", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm", "state" : "Shutdown", "name" : "Apple Watch Series 2 - 42mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/71B7DAC1-BEC3-450D-9C3C-3762C782024E\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/71B7DAC1-BEC3-450D-9C3C-3762C782024E", "udid" : "71B7DAC1-BEC3-450D-9C3C-3762C782024E", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm", "state" : "Shutdown", "name" : "Apple Watch Series 3 - 38mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/73664A7A-8483-4F0E-B69B-88FDE6663334\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/73664A7A-8483-4F0E-B69B-88FDE6663334", "udid" : "73664A7A-8483-4F0E-B69B-88FDE6663334", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm", "state" : "Shutdown", "name" : "Apple Watch Series 3 - 42mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/B58CAA3D-098A-494E-A187-FB1F17607ACB\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/B58CAA3D-098A-494E-A187-FB1F17607ACB", "udid" : "B58CAA3D-098A-494E-A187-FB1F17607ACB", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F513F401-B15B-4770-A1B5-F81CF4E70391\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F513F401-B15B-4770-A1B5-F81CF4E70391", "udid" : "F513F401-B15B-4770-A1B5-F81CF4E70391", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-12-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/944A0ED3-02B8-47A5-B881-50C0BF9EF98A\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/944A0ED3-02B8-47A5-B881-50C0BF9EF98A", "udid" : "944A0ED3-02B8-47A5-B881-50C0BF9EF98A", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/F58AA3CC-E3AB-4960-A6B1-6AE3C7BEDFFE\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/F58AA3CC-E3AB-4960-A6B1-6AE3C7BEDFFE", "udid" : "F58AA3CC-E3AB-4960-A6B1-6AE3C7BEDFFE", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/D90590BB-5EE9-4C35-9972-B01F08D6FFE2\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/D90590BB-5EE9-4C35-9972-B01F08D6FFE2", "udid" : "D90590BB-5EE9-4C35-9972-B01F08D6FFE2", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-13-3" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/4EFA70CD-B9FD-4FCB-8727-542FA5371D40\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/4EFA70CD-B9FD-4FCB-8727-542FA5371D40", "udid" : "4EFA70CD-B9FD-4FCB-8727-542FA5371D40", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/7663D6B1-4386-491A-B98A-289824678D88\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/7663D6B1-4386-491A-B98A-289824678D88", "udid" : "7663D6B1-4386-491A-B98A-289824678D88", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/4D868C1E-3047-4876-9555-C859477B2CCB\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/4D868C1E-3047-4876-9555-C859477B2CCB", "udid" : "4D868C1E-3047-4876-9555-C859477B2CCB", "isAvailable" : false, "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\/tom\/Library\/Developer\/CoreSimulator\/Devices\/8318880C-B5D9-4736-84F0-0F204A0CA2FA\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/8318880C-B5D9-4736-84F0-0F204A0CA2FA", "udid" : "8318880C-B5D9-4736-84F0-0F204A0CA2FA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/0C7ADEB7-F2FA-43A9-976F-380CB6E16CF2\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/0C7ADEB7-F2FA-43A9-976F-380CB6E16CF2", "udid" : "0C7ADEB7-F2FA-43A9-976F-380CB6E16CF2", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/1302B9EC-A01F-4516-9FA8-8EAF425EA95A\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/1302B9EC-A01F-4516-9FA8-8EAF425EA95A", "udid" : "1302B9EC-A01F-4516-9FA8-8EAF425EA95A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 40mm" }, { "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/A088AC8C-5DFE-4797-9FFA-22622D6E52CB\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/A088AC8C-5DFE-4797-9FFA-22622D6E52CB", "udid" : "A088AC8C-5DFE-4797-9FFA-22622D6E52CB", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-12-1" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/37DFC11D-0F1A-44DB-845F-6E69B257A3E8\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/37DFC11D-0F1A-44DB-845F-6E69B257A3E8", "udid" : "37DFC11D-0F1A-44DB-845F-6E69B257A3E8", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/3815488A-810F-463C-8F60-033B7571EEFB\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/3815488A-810F-463C-8F60-033B7571EEFB", "udid" : "3815488A-810F-463C-8F60-033B7571EEFB", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/tom\/Library\/Developer\/CoreSimulator\/Devices\/29306884-96CC-4B77-8BFB-21CA0EBB9653\/data", "logPath" : "\/Users\/tom\/Library\/Logs\/CoreSimulator\/29306884-96CC-4B77-8BFB-21CA0EBB9653", "udid" : "29306884-96CC-4B77-8BFB-21CA0EBB9653", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ] } } [+2372 ms] [ { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,4", "identifier" : "A088AC8C-5DFE-4797-9FFA-22622D6E52CB", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,3", "identifier" : "69746622-342D-4D78-94A1-A70DF25013EF", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-1", "modelName" : "iPhone 11 Pro", "name" : "iPhone 11 Pro" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,12", "identifier" : "6328F549-0DD4-4B73-A0A4-5B7D8FC79B0C", "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" : "79699DCD-9CB4-432B-92D5-DB95D6E24409", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K", "name" : "Apple TV 4K" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "956152C8-6D07-4D5D-B034-02B130512FB6", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,3", "identifier" : "1302B9EC-A01F-4516-9FA8-8EAF425EA95A", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 40mm", "name" : "Apple Watch Series 5 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad7,12", "identifier" : "1EDD0EE6-BDD4-4870-B679-3FC6C51397DD", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-7-wwan-1", "modelName" : "iPad (7th generation)", "name" : "iPad (7th generation)" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,3", "identifier" : "8318880C-B5D9-4736-84F0-0F204A0CA2FA", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 40mm", "name" : "Apple Watch Series 4 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,9", "identifier" : "2195BAFF-C03A-40DB-8118-C81E4A754973", "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.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,4", "identifier" : "1EC88B1D-06C8-4AF2-920D-E5A0CB9A27CF", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-2", "modelName" : "iPhone 8", "name" : "iPhone 8" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad6,4", "identifier" : "7ACAFA99-51DF-48A3-94D8-23E19D9DA595", "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.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV5,3", "identifier" : "CBCB30AA-944D-41D6-A100-9DC05412AC07", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4", "modelName" : "Apple TV", "name" : "Apple TV" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "56CF2722-E28E-452C-A58D-BEB58C8B5F0E", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K (at 1080p)", "name" : "Apple TV 4K (at 1080p)" }, { "simulator" : true, "operatingSystemVersion" : "6.2.1 (17T531)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,4", "identifier" : "0C7ADEB7-F2FA-43A9-976F-380CB6E16CF2", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 44mm", "name" : "Apple Watch Series 4 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad11,3", "identifier" : "B798323D-48DE-4FE1-A396-8FB53CEC6E2A", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-air3-wifi-1", "modelName" : "iPad Air (3rd generation)", "name" : "iPad Air (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,8", "identifier" : "0C6454AC-0BAE-4E1C-883C-14CA6F9E020C", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-se-1", "modelName" : "iPhone SE (2nd generation)", "name" : "iPhone SE (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,5", "identifier" : "B18BDE6D-97A3-4461-9508-4E7908842496", "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.5 (17F61)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,5", "identifier" : "E557F813-7725-4F34-A758-13710E201895", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-plus-2", "modelName" : "iPhone 8 Plus", "name" : "iPhone 8 Plus" } ] [ +5 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. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' 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. [ +162 ms] Generating /Users/tom/Development/emojitest/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +55 ms] Starting incremental build... [ +2 ms] Initializing file store [ +8 ms] Skipping target: gen_localizations [ +6 ms] complete [ +3 ms] Launching lib/main.dart on macOS in debug mode... [ +4 ms] /usr/local/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /usr/local/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /usr/local/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/xb/0dzpwyg97cn7k1vx9nk3s73m0000gn/T/flutter_tools.CWz6JD/flutter_tool.Td0g3A/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 [ +51 ms] executing: [/Users/tom/Development/emojitest/macos/] /usr/bin/xcodebuild -list -project Runner.xcodeproj [ +4 ms] <- compile package:emojitest/main.dart [ +940 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -list -project Runner.xcodeproj

                Information about project "Runner":
                    Targets:
                        Runner
                        Flutter Assemble

                    Build Configurations:
                        Debug
                        Release
                        Profile

                    If no build configuration is specified and -scheme is not passed then "Release" is used.

                    Schemes:
                        Flutter Assemble
                        Runner

[ +1 ms] Building macOS application... [ +2 ms] executing: /usr/bin/env xcrun xcodebuild -workspace /Users/tom/Development/emojitest/macos/Runner.xcworkspace -configuration Debug -scheme Runner -derivedDataPath /Users/tom/Development/emojitest/build/macos OBJROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex SYMROOT=/Users/tom/Development/emojitest/build/macos/Build/Products VERBOSE_SCRIPT_LOGGING=YES COMPILER_INDEX_STORE_ENABLE=NO [ +572 ms] Command line invocation: [ ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace /Users/tom/Development/emojitest/macos/Runner.xcworkspace -configuration Debug -scheme Runner -derivedDataPath /Users/tom/Development/emojitest/build/macos OBJROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex SYMROOT=/Users/tom/Development/emojitest/build/macos/Build/Products VERBOSE_SCRIPT_LOGGING=YES COMPILER_INDEX_STORE_ENABLE=NO [ ] User defaults from command line: [ ] IDEDerivedDataPathOverride = /Users/tom/Development/emojitest/build/macos [ ] Build settings from command line: [ ] COMPILER_INDEX_STORE_ENABLE = NO [ ] OBJROOT = /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex [ ] SYMROOT = /Users/tom/Development/emojitest/build/macos/Build/Products [ ] VERBOSE_SCRIPT_LOGGING = YES [ +390 ms] note: Using new build system [ ] note: Building targets in parallel [ +2 ms] note: Planning build [ +913 ms] note: Constructing build description [ +875 ms] PhaseScriptExecution Run\ Script /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter\ Assemble.build/Script-33CC111E2044C6BF0003C045.sh (in target 'Flutter Assemble' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] export ACTION=build [ ] export AD_HOC_CODE_SIGNING_ALLOWED=YES [ ] export ALTERNATE_GROUP=staff [ ] export ALTERNATE_MODE=u+w,go-w,a+rX [ ] export ALTERNATE_OWNER=tom [ ] 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=x86_64 [ ] export ARCHS_STANDARD=x86_64 [ ] export ARCHS_STANDARD_32_64_BIT="x86_64 i386" [ ] export ARCHS_STANDARD_32_BIT=i386 [ ] export ARCHS_STANDARD_64_BIT=x86_64 [ ] export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64 [ ] export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" [ ] export BITCODE_GENERATION_MODE=marker [ ] export BUILD_ACTIVE_RESOURCES_ONLY=NO [ ] export BUILD_COMPONENTS="headers build" [ ] export BUILD_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products [ ] export BUILD_LIBRARY_FOR_DISTRIBUTION=NO [ ] export BUILD_ROOT=/Users/tom/Development/emojitest/build/macos/Build/Products [ ] export BUILD_STYLE= [ ] export BUILD_VARIANTS=normal [ ] export BUILT_PRODUCTS_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export BUNDLE_CONTENTS_FOLDER_PATH=Contents/ [ ] export BUNDLE_CONTENTS_FOLDER_PATH_deep=Contents/ [ ] export BUNDLE_EXECUTABLE_FOLDER_NAME_deep=MacOS [ ] export BUNDLE_EXECUTABLE_FOLDER_PATH=Contents/MacOS [ ] export BUNDLE_FORMAT=deep [ ] export BUNDLE_FRAMEWORKS_FOLDER_PATH=Contents/Frameworks [ ] export BUNDLE_PLUGINS_FOLDER_PATH=Contents/PlugIns [ ] export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH=Contents/PrivateHeaders [ ] export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH=Contents/Headers [ ] export CACHE_ROOT=/var/folders/xb/0dzpwyg97cn7k1vx9nk3s73m0000gn/C/com.apple.DeveloperTools/11.5-11E608c/Xcode [ ] export CCHROOT=/var/folders/xb/0dzpwyg97cn7k1vx9nk3s73m0000gn/C/com.apple.DeveloperTools/11.5-11E608c/Xcode [ ] export CHMOD=/bin/chmod [ ] export CHOWN=/usr/sbin/chown [ ] export CLANG_ANALYZER_NONNULL=YES [ ] export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE [ ] export CLANG_CXX_LANGUAGE_STANDARD=gnu++14 [ ] export CLANG_CXX_LIBRARY=libc++ [ ] export CLANG_ENABLE_MODULES=YES [ ] export CLANG_ENABLE_OBJC_ARC=YES [ ] export CLANG_MODULES_BUILD_SESSION_FILE=/Users/tom/Development/emojitest/build/macos/ModuleCache.noindex/Session.modulevalidation [ ] export CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY=YES [ ] 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_DOCUMENTATION_COMMENTS=YES [ ] 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_REPEATED_USE_OF_WEAK=YES [ ] export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR [ ] export CLANG_WARN_PRAGMA_PACK=YES [ ] export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES [ ] export CLANG_WARN_STRICT_PROTOTYPES=YES [ ] export CLANG_WARN_SUSPICIOUS_MOVE=YES [ ] export CLANG_WARN_UNGUARDED_AVAILABILITY=YES_AGGRESSIVE [ ] export CLANG_WARN_UNREACHABLE_CODE=YES [ ] export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES [ ] export CLASS_FILE_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/JavaClasses" [ ] export CLEAN_PRECOMPS=YES [ ] export CLONE_HEADERS=NO [ ] export CODESIGNING_FOLDER_PATH=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/ [ ] export CODE_SIGNING_ALLOWED=YES [ ] export CODE_SIGN_IDENTITY=- [ ] export CODE_SIGN_IDENTITY_NO="Apple Development" [ ] export CODE_SIGN_IDENTITY_YES=- [ ] export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES [ ] export CODE_SIGN_STYLE=Manual [ ] export COLOR_DIAGNOSTICS=NO [ ] export COMBINE_HIDPI_IMAGES=NO [ ] export COMPILER_INDEX_STORE_ENABLE=NO [ ] export COMPOSITE_SDK_DIRS=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/CompositeSDKs [ ] export COMPRESS_PNG_FILES=NO [ ] export CONFIGURATION=Debug [ ] export CONFIGURATION_BUILD_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export CONFIGURATION_TEMP_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug [ ] 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 CP=/bin/cp [ ] export CREATE_INFOPLIST_SECTION_IN_BINARY=NO [ ] export CURRENT_ARCH=undefined_arch [ ] export CURRENT_VARIANT=normal [ ] export DART_OBFUSCATION=false [ ] export DEAD_CODE_STRIPPING=NO [ ] 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=MACOSX_DEPLOYMENT_TARGET [ ] export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mmacosx-version-min [ ] export DEPLOYMENT_TARGET_LD_ENV_NAME=MACOSX_DEPLOYMENT_TARGET [ ] export DEPLOYMENT_TARGET_LD_FLAG_NAME=macosx_version_min [ ] export DEPLOYMENT_TARGET_SETTING_NAME=MACOSX_DEPLOYMENT_TARGET [ ] export DEPLOYMENT_TARGET_SUGGESTED_VALUES="10.6 10.7 10.8 10.9 10.10 10.11 10.12 10.13 10.14 10.15" [ ] export DERIVED_FILES_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources" [ ] export DERIVED_FILE_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources" [ ] export DERIVED_SOURCES_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/DerivedSources" [ ] 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 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=.dSYM [ ] export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO [ ] export DWARF_DSYM_FOLDER_PATH=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO [ ] export EMBEDDED_PROFILE_NAME=embedded.provisionprofile [ ] 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=NO [ ] export ENABLE_PREVIEWS=NO [ ] export ENABLE_STRICT_OBJC_MSGSEND=YES [ ] export ENABLE_TESTABILITY=YES [ ] export ENABLE_TESTING_SEARCH_PATHS=NO [ ] 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 FILE_LIST="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects/LinkFileList" [ ] export FIXED_FILES_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/FixedFiles" [ ] export FLUTTER_APPLICATION_PATH=/Users/tom/Development/emojitest [ ] export FLUTTER_BUILD_DIR=build [ ] export FLUTTER_BUILD_NAME=1.0.0 [ ] export FLUTTER_BUILD_NUMBER=1 [ ] export FLUTTER_FRAMEWORK_DIR=/usr/local/flutter/bin/cache/artifacts/engine/darwin-x64 [ ] export FLUTTER_ROOT=/usr/local/flutter [ ] export FLUTTER_TARGET=/Users/tom/Development/emojitest/lib/main.dart [ ] export FRAMEWORK_VERSION=A [ ] export GCC3_VERSION=3.3 [ ] export GCC_C_LANGUAGE_STANDARD=gnu11 [ ] export GCC_DYNAMIC_NO_PIC=NO [ ] 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 " [ ] 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_SHADOW=YES [ ] export GCC_WARN_STRICT_SELECTOR_MATCH=YES [ ] 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=NO [ ] 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 [ +1 ms] export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES [ ] export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES [ ] export HEADERMAP_USES_VFS=NO [ ] export HIDE_BITCODE_SYMBOLS=YES [ ] export HOME=/Users/tom [ ] export ICONV=/usr/bin/iconv [ ] export INFOPLIST_EXPAND_BUILD_SETTINGS=YES [ ] export INFOPLIST_OUTPUT_FORMAT=same-as-input [ ] export INFOPLIST_PREPROCESS=NO [ ] export INLINE_PRIVATE_FRAMEWORKS=NO [ ] export INSTALLHDRS_COPY_PHASE=NO [ ] export INSTALLHDRS_SCRIPT_PHASE=NO [ ] export INSTALL_DIR=/tmp/Runner.dst [ ] export INSTALL_GROUP=staff [ ] export INSTALL_MODE_FLAG=u+w,go-w,a+rX [ ] export INSTALL_OWNER=tom [ ] export INSTALL_ROOT=/tmp/Runner.dst [ ] export IOS_UNZIPPERED_TWIN_PREFIX_PATH=/System/iOSSupport [ ] export IS_MACCATALYST=NO [ ] export IS_UIKITFORMAC=NO [ ] 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_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/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch/Flutter Assemble_dependency_info.dat" [ ] export LD_GENERATE_MAP_FILE=NO [ ] export LD_MAP_FILE_PATH="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Flutter Assemble-LinkMap-normal-undefined_arch.txt" [ ] export LD_NO_PIE=NO [ ] export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES [ ] 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_KEXT_INSTALL_PATH=/Library/Extensions [ ] export LINKER_DISPLAYS_MANGLED_NAMES=NO [ ] export LINK_FILE_LIST_normal_x86_64="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/x86_64/Flutter Assemble.LinkFileList" [ ] export LINK_WITH_STANDARD_LIBRARIES=YES [ ] export LLVM_TARGET_TRIPLE_OS_VERSION=macos10.11 [ ] export LLVM_TARGET_TRIPLE_OS_VERSION_NO=macos10.11 [ ] export LLVM_TARGET_TRIPLE_OS_VERSION_YES=macos10.15 [ ] export LLVM_TARGET_TRIPLE_VENDOR=apple [ ] 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/tom/Development/emojitest/macos [ ] export LOCSYMROOT=/Users/tom/Development/emojitest/macos [ ] export MACOSX_DEPLOYMENT_TARGET=10.11 [ ] 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/tom/Development/emojitest/build/macos/Build/Products/Debug/ [ ] export MODULE_CACHE_DIR=/Users/tom/Development/emojitest/build/macos/ModuleCache.noindex [ ] export MTL_ENABLE_DEBUG_INFO=YES [ ] export NATIVE_ARCH=x86_64 [ ] 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/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects" [ ] export OBJECT_FILE_DIR_normal="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal" [ ] export OBJROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex [ ] export ONLY_ACTIVE_ARCH=YES [ ] export OS=MACOS [ ] export OSAC=/usr/bin/osacompile [ ] export PACKAGE_CONFIG=.packages [ ] 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/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexe c:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/C ontents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Users/tom/.nvm/versions/node/v10.13.0/bin:/usr/local/opt/openjdk@11/bin:/usr/local/opt/ruby/bin:/ usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin:/Users/tom/bin:/usr/local/flutter/bin:/Users/tom/go/bin [ +1 ms] 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 PER_ARCH_OBJECT_FILE_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/undefined_arch" [ ] export PER_VARIANT_OBJECT_FILE_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal" [ ] export PKGINFO_FILE_PATH="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PkgInfo" [ ] export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications [ ] export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin [ ] export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library [ ] export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs [ ] export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools [ ] export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr [ ] export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform [ ] export PLATFORM_DISPLAY_NAME=macOS [ ] export PLATFORM_FAMILY_NAME=macOS [ ] export PLATFORM_NAME=macosx [ ] export PLATFORM_PREFERRED_ARCH=x86_64 [ ] export PLATFORM_PRODUCT_BUILD_VERSION=11E608c [ ] export PLIST_FILE_OUTPUT_FORMAT=same-as-input [ ] export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES [ ] export PRECOMP_DESTINATION_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/PrefixHeaders" [ ] export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO [ ] export PRODUCT_MODULE_NAME=Flutter_Assemble [ ] export PRODUCT_NAME="Flutter Assemble" [ ] export PRODUCT_SETTINGS_PATH= [ ] export PROFILING_CODE=NO [ ] export PROJECT=Runner [ ] export PROJECT_DERIVED_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources [ ] export PROJECT_DIR=/Users/tom/Development/emojitest/macos [ ] export PROJECT_FILE_PATH=/Users/tom/Development/emojitest/macos/Runner.xcodeproj [ ] export PROJECT_NAME=Runner [ ] export PROJECT_TEMP_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build [ ] export PROJECT_TEMP_ROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex [ ] 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 REZ_COLLECTOR_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources" [ ] export REZ_OBJECTS_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/ResourceManagerResources/Objects" [ ] export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO [ ] export SCRIPT_INPUT_FILE_0=/Users/tom/Development/emojitest/macos/Flutter/ephemeral/tripwire [ ] export SCRIPT_INPUT_FILE_COUNT=1 [ ] export SCRIPT_INPUT_FILE_LIST_0="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/InputFileList-33CC111E2044C6BF0003C045-FlutterInputs-28921e061a025e88c713afc5a2609071-resolved.xcfilelist" [ ] export SCRIPT_INPUT_FILE_LIST_COUNT=1 [ ] export SCRIPT_OUTPUT_FILE_COUNT=0 [ ] export SCRIPT_OUTPUT_FILE_LIST_0="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/OutputFileList-33CC111E2044C6BF0003C045-FlutterOutputs-d62b81e94f5c9d64fb1ebeec2408cf84-resolved.xcfilelist" [ ] export SCRIPT_OUTPUT_FILE_LIST_COUNT=1 [ ] export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] export SDK_DIR_macosx10_15=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] export SDK_NAME=macosx10.15 [ ] export SDK_NAMES=macosx10.15 [ ] export SDK_PRODUCT_BUILD_VERSION=19E258 [ ] export SDK_VERSION=10.15 [ ] export SDK_VERSION_ACTUAL=101504 [ ] export SDK_VERSION_MAJOR=101500 [ ] export SDK_VERSION_MINOR=1504 [ ] 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=NO [ ] export SHARED_DERIVED_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/DerivedSources [ ] export SHARED_PRECOMPS_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/PrecompiledHeaders [ ] export SKIP_INSTALL=YES [ ] export SOURCE_ROOT=/Users/tom/Development/emojitest/macos [ ] export SRCROOT=/Users/tom/Development/emojitest/macos [ ] export STRINGS_FILE_OUTPUT_ENCODING=UTF-16 [ ] export STRIP_BITCODE_FROM_COPIED_FILES=NO [ ] export STRIP_INSTALLED_PRODUCT=YES [ ] export STRIP_PNG_TEXT=NO [ ] export STRIP_STYLE=all [ ] export STRIP_SWIFT_SYMBOLS=YES [ ] export SUPPORTED_PLATFORMS=macosx [ ] export SUPPORTS_TEXT_BASED_API=NO [ ] export SWIFT_ACTIVE_COMPILATION_CONDITIONS=DEBUG [ ] export SWIFT_OPTIMIZATION_LEVEL=-Onone [ ] export SWIFT_PLATFORM_TARGET_PREFIX=macos [ ] export SWIFT_RESPONSE_FILE_PATH_normal_x86_64="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build/Objects-normal/x86_64/Flutter Assemble.SwiftFileList" [ ] export SYMROOT=/Users/tom/Development/emojitest/build/macos/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 TARGETNAME="Flutter Assemble" [ ] export TARGET_BUILD_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export TARGET_NAME="Flutter Assemble" [ ] export TARGET_TEMP_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build" [ ] export TEMP_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build" [ ] export TEMP_FILES_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build" [ ] export TEMP_FILE_DIR="/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter Assemble.build" [ ] export TEMP_ROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex [ ] export TEST_FRAMEWORK_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks" [ ] export TEST_LIBRARY_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.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 UID=501 [ ] export UNSTRIPPED_PRODUCT=NO [ ] export USER=tom [ ] export USER_APPS_DIR=/Users/tom/Applications [ ] export USER_LIBRARY_DIR=/Users/tom/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 VALIDATE_DEVELOPMENT_ASSET_PATHS=YES_ERROR [ ] export VALIDATE_PRODUCT=NO [ ] export VALIDATE_WORKSPACE=YES_ERROR [ ] export VALID_ARCHS="i386 x86_64" [ ] export VERBOSE_PBXCP=NO [ ] export VERBOSE_SCRIPT_LOGGING=YES [ ] export VERSION_INFO_BUILDER=tom [ ] export VERSION_INFO_FILE="Flutter Assemble_vers.c" [ ] export VERSION_INFO_STRING=""@(#)PROGRAM:Flutter Assemble PROJECT:Runner-"" [ ] export WARNING_CFLAGS="-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings" [ ] 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=11E608c [ ] export XCODE_VERSION_ACTUAL=1150 [ ] export XCODE_VERSION_MAJOR=1100 [ ] export XCODE_VERSION_MINOR=1150 [ ] export XPCSERVICES_FOLDER_PATH=/XPCServices [ ] export YACC=yacc [ ] export BOOL=NO [ ] export _BOOL_NO=NO [ ] export _BOOL_YES=YES [ ] export _DEVELOPMENT_TEAM_IS_EMPTY=YES [ ] export _ISEMPTY=YES [ ] export _MACOSX_DEPLOYMENT_TARGET_IS_EMPTY=NO [ ] export arch=undefined_arch [ ] export variant=normal [ ] /bin/sh -c /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Flutter\\ Assemble.build/Script-33CC111E2044C6BF0003C045.sh [ +2 ms] ♦ /usr/local/flutter/bin/flutter --verbose assemble -dTargetPlatform=darwin-x64 -dTargetFile=/Users/tom/Development/emojitest/lib/main.dart -dBuildMode=debug -dTreeShakeIcons=false -dDartObfuscation=false -dSplitDebugInfo= -dTrackWidgetCreation=true --DartDefines= --ExtraGenSnapshotOptions= --ExtraFrontEndOptions= --build-inputs=/Users/tom/Development/emojitest/macos/Flutter/ephemeral/FlutterInputs.xcfilelist --build-outputs=/Users/tom/Development/emojitest/macos/Flutter/ephemeral/FlutterOutputs.xcfilelist --output=/Users/tom/Development/emojitest/macos/Flutter/ephemeral debug_macos_bundle_flutter_assets [ +312 ms] [ +112 ms] executing: [/usr/local/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +19 ms] [ +32 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ ] [ ] a74310242e655dc8b4b825e1ed06b7ac78cb3cd2 [ ] [ ] executing: [/usr/local/flutter/] git tag --contains HEAD [ +167 ms] [ +167 ms] Exit code 0 from: git tag --contains HEAD [ +1 ms] [ +1 ms] executing: [/usr/local/flutter/] git describe --match ..-..pre --first-parent --long --tags [ +18 ms] [ +18 ms] Exit code 0 from: git describe --match ..-..pre --first-parent --long --tags [ ] [ ] 1.20.0-2.0.pre-130-ga74310242 [ +7 ms] [ +7 ms] executing: [/usr/local/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +5 ms] [ +4 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] [ ] origin/master [ ] [ ] executing: [/usr/local/flutter/] git ls-remote --get-url origin [ +5 ms] [ +5 ms] Exit code 0 from: git ls-remote --get-url origin [ ] [ ] https://github.com/flutter/flutter.git [ +48 ms] [ +48 ms] executing: [/usr/local/flutter/] git rev-parse --abbrev-ref HEAD [ +8 ms] [ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] [ ] master [ +5 ms] [ +5 ms] executing: sw_vers -productName [ +18 ms] [ +18 ms] Exit code 0 from: sw_vers -productName [ ] [ ] Mac OS X [ ] [ ] executing: sw_vers -productVersion [ +14 ms] [ +13 ms] Exit code 0 from: sw_vers -productVersion [ ] [ ] 10.15.5 [ ] [ ] executing: sw_vers -buildVersion [ +15 ms] [ +15 ms] Exit code 0 from: sw_vers -buildVersion [ ] [ ] 19F101 [ +36 ms] [ +36 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. [ +6 ms] [ +6 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. [ +5 ms] [ +5 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. [ +81 ms] [ +81 ms] Initializing file store [ +16 ms] [ +16 ms] Skipping target: gen_localizations [ +3 ms] [ +3 ms] debug_unpack_macos: Starting due to {} [ +33 ms] [ +33 ms] kernel_snapshot: Starting due to {} [ +26 ms] [ +26 ms] /usr/local/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /usr/local/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /usr/local/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --target=flutter -Ddart.developer.causal_async_stacks=true -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 --packages /Users/tom/Development/emojitest/.packages --output-dill /Users/tom/Development/emojitest/.dart_tool/flutter_build/adf36e735e1dc6db87b956d39b80f73a/app.dill --depfile /Users/tom/Development/emojitest/.dart_tool/flutter_build/adf36e735e1dc6db87b956d39b80f73a/kernel_snapshot.d package:emojitest/main.dart [ +32 ms] [ +32 ms] debug_macos_framework: Starting due to {InvalidatedReason.inputChanged} [ +4 ms] [ +4 ms] executing: xcrun clang -x c /Users/tom/Development/emojitest/.dart_tool/flutter_build/adf36e735e1dc6db87b956d39b80f73a/debug_app.cc -arch x86_64 -dynamiclib -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -install_name @rpath/App.framework/App -o /Users/tom/Development/emojitest/.dart_tool/flutter_build/adf36e735e1dc6db87b956d39b80f73a/App.framework/App [ +39 ms] [ +38 ms] debug_unpack_macos: Complete [ +100 ms] [ +101 ms] debug_macos_framework: Complete [+4610 ms] [+4610 ms] kernel_snapshot: Complete [ +393 ms] [ +393 ms] debug_macos_bundle_flutter_assets: Starting due to {} [ +118 ms] [ +118 ms] debug_macos_bundle_flutter_assets: Complete [ +468 ms] [ +468 ms] Persisting file store [ +5 ms] [ +5 ms] Done persisting file store [ +5 ms] [ +5 ms] build succeeded. [ +8 ms] [ +8 ms] "flutter assemble" took 5.974ms. [ +4 ms] [ +4 ms] Running shutdown hooks [ ] [ ] Shutdown hooks complete [ ] [ ] exiting with code 0 [ +23 ms] ProcessProductPackaging "" /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest.app.xcent (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] Entitlements: [ ] { [ ] "com.apple.security.app-sandbox" = 1; [ ] "com.apple.security.cs.allow-jit" = 1; [ ] "com.apple.security.get-task-allow" = 1; [ ] "com.apple.security.network.server" = 1; [ ] } [ ] builtin-productPackagingUtility -entitlements -format xml -o /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest.app.xcent [ +3 ms] CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer [ ] export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name emojitest -Onone -enable-batch-mode -enforce-exclusivity=checked @/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.SwiftFileList -DDEBUG -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -target x86_64-apple-macos10.11 -g -module-cache-path /Users/tom/Development/emojitest/build/macos/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/macos/Flutter/ephemeral -c -j12 -output-file-map /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.swiftmodule -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-generated-files.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-own-target-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-all-target-headers.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-project-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/include -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources -Xcc -DDEBUG=1 -emit-objc-header -emit-objc-header-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest-Swift.h -working-directory /Users/tom/Development/emojitest/macos [ +37 ms] CompileSwift normal x86_64 /Users/tom/Development/emojitest/macos/Runner/MainFlutterWindow.swift (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/tom/Development/emojitest/macos/Runner/MainFlutterWindow.swift /Users/tom/Development/emojitest/macos/Runner/AppDelegate.swift /Users/tom/Development/emojitest/macos/Flutter/GeneratedPluginRegistrant.swift -emit-module-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow\~partial.swiftmodule -emit-module-doc-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow\~partial.swiftdoc -emit-module-source-info-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow\~partial.swiftsourceinfo -serialize-diagnostics-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow.dia -emit-dependencies-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow.d -emit-reference-dependencies-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow.swiftdeps -target x86_64-apple-macos10.11 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -I /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/macos/Flutter/ephemeral -enable-testing -g -module-cache-path /Users/tom/Development/emojitest/build/macos/ModuleCache.noindex -swift-version 5 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -working-directory -Xcc /Users/tom/Development/emojitest/macos -enable-anonymous-context-mangled-names -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-generated-files.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-own-target-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-all-target-headers.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-project-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/include -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources -Xcc -DDEBUG=1 -module-name emojitest -o /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow.o [ +537 ms] :1:1: warning: umbrella header for module 'FlutterMacOS' does not include header 'FLEReshapeListener.h' [ ] #import "Headers/FlutterMacOS.h" [ ] ^ [ ] :1:1: warning: umbrella header for module 'FlutterMacOS' does not include header 'FLEEngine.h' [ ] #import "Headers/FlutterMacOS.h" [ ] ^ [ ] :1:1: warning: umbrella header for module 'FlutterMacOS' does not include header 'FLEDartProject.h' [ ] #import "Headers/FlutterMacOS.h" [ ] ^ [ ] :1:1: warning: umbrella header for module 'FlutterMacOS' does not include header 'FLEViewController.h' [ ] #import "Headers/FlutterMacOS.h" [ ] ^ [ ] :1:1: warning: umbrella header for module 'FlutterMacOS' does not include header 'FLEView.h' [ ] #import "Headers/FlutterMacOS.h" [ ] ^ [ ] :1:1: warning: umbrella header for module 'FlutterMacOS' does not include header 'FLEOpenGLContextHandling.h' [ ] #import "Headers/FlutterMacOS.h" [ ] ^ [ ] CompileSwift normal x86_64 /Users/tom/Development/emojitest/macos/Runner/AppDelegate.swift (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c /Users/tom/Development/emojitest/macos/Runner/MainFlutterWindow.swift -primary-file /Users/tom/Development/emojitest/macos/Runner/AppDelegate.swift /Users/tom/Development/emojitest/macos/Flutter/GeneratedPluginRegistrant.swift -emit-module-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftmodule -emit-module-doc-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftdoc -emit-module-source-info-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftsourceinfo -serialize-diagnostics-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate.dia -emit-dependencies-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate.d -emit-reference-dependencies-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate.swiftdeps -target x86_64-apple-macos10.11 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -I /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/macos/Flutter/ephemeral -enable-testing -g -module-cache-path /Users/tom/Development/emojitest/build/macos/ModuleCache.noindex -swift-version 5 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -working-directory -Xcc /Users/tom/Development/emojitest/macos -enable-anonymous-context-mangled-names -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-generated-files.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-own-target-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-all-target-headers.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-project-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/include -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources -Xcc -DDEBUG=1 -module-name emojitest -o /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate.o [ +48 ms] CompileSwift normal x86_64 /Users/tom/Development/emojitest/macos/Flutter/GeneratedPluginRegistrant.swift (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c /Users/tom/Development/emojitest/macos/Runner/MainFlutterWindow.swift /Users/tom/Development/emojitest/macos/Runner/AppDelegate.swift -primary-file /Users/tom/Development/emojitest/macos/Flutter/GeneratedPluginRegistrant.swift -emit-module-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant\~partial.swiftmodule -emit-module-doc-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant\~partial.swiftdoc -emit-module-source-info-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant\~partial.swiftsourceinfo -serialize-diagnostics-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -emit-dependencies-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d -emit-reference-dependencies-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.swiftdeps -target x86_64-apple-macos10.11 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -I /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/macos/Flutter/ephemeral -enable-testing -g -module-cache-path /Users/tom/Development/emojitest/build/macos/ModuleCache.noindex -swift-version 5 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -working-directory -Xcc /Users/tom/Development/emojitest/macos -enable-anonymous-context-mangled-names -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-generated-files.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-own-target-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-all-target-headers.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-project-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/include -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources -Xcc -DDEBUG=1 -module-name emojitest -o /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o [ +2 ms] MergeSwiftModule normal x86_64 (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/MainFlutterWindow\~partial.swiftmodule /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftmodule /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant\~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-macos10.11 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -I /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F /Users/tom/Development/emojitest/macos/Flutter/ephemeral -enable-testing -g -module-cache-path /Users/tom/Development/emojitest/build/macos/ModuleCache.noindex -swift-version 5 -enforce-exclusivity=checked -Onone -D DEBUG -serialize-debugging-options -Xcc -working-directory -Xcc /Users/tom/Development/emojitest/macos -enable-anonymous-context-mangled-names -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-generated-files.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-own-target-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-all-target-headers.hmap -Xcc -iquote -Xcc /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-project-headers.hmap -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/include -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources -Xcc -DDEBUG=1 -emit-module-doc-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.swiftdoc -emit-module-source-info-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.swiftsourceinfo -emit-objc-header-path /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest-Swift.h -module-name emojitest -o /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.swiftmodule [ +166 ms] Ld /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/MacOS/emojitest normal x86_64 (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target x86_64-apple-macos10.11 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -L/Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F/Users/tom/Development/emojitest/build/macos/Build/Products/Debug -F/Users/tom/Development/emojitest/macos/Flutter/ephemeral -filelist /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker @executable_path/../Frameworks -Xlinker -object_path_lto -Xlinker /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.swiftmodule -framework App -framework FlutterMacOS -Xlinker -dependency_info -Xlinker /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest_dependency_info.dat -o /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/MacOS/emojitest [ +162 ms] ProcessInfoPlistFile /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Info.plist /Users/tom/Development/emojitest/macos/Runner/Info.plist (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] builtin-infoPlistUtility /Users/tom/Development/emojitest/macos/Runner/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/PkgInfo -expandbuildsettings -platform macosx -additionalcontentfile /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Base.lproj/MainMenu-PartialInfo.plist -additionalcontentfile /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/assetcatalog_generated_info.plist -o /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Info.plist [ +2 ms] PBXCp /Users/tom/Development/emojitest/macos/Flutter/ephemeral/FlutterMacOS.framework /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/FlutterMacOS.framework (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/tom/Development/emojitest/macos/Flutter/ephemeral/FlutterMacOS.framework /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks [ +54 ms] PBXCp /Users/tom/Development/emojitest/macos/Flutter/ephemeral/App.framework /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/App.framework (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/tom/Development/emojitest/macos/Flutter/ephemeral/App.framework /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks [ ] CodeSign /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/App.framework/Versions/A (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate [ ] Signing Identity: "-" [ ] /usr/bin/codesign --force --sign - --timestamp=none --preserve-metadata=identifier,entitlements,flags /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/App.framework/Versions/A [ +142 ms] CodeSign /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate [ ] Signing Identity: "-" [ ] /usr/bin/codesign --force --sign - --timestamp=none --preserve-metadata=identifier,entitlements,flags /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/FlutterMacOS.framework/Versions/A [ +105 ms] PhaseScriptExecution Run\ Script /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] export ACTION=build [ ] export AD_HOC_CODE_SIGNING_ALLOWED=YES [ ] export ALTERNATE_GROUP=staff [ ] export ALTERNATE_MODE=u+w,go-w,a+rX [ ] export ALTERNATE_OWNER=tom [ ] 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=x86_64 [ ] export ARCHS_STANDARD=x86_64 [ ] export ARCHS_STANDARD_32_64_BIT="x86_64 i386" [ ] export ARCHS_STANDARD_32_BIT=i386 [ ] export ARCHS_STANDARD_64_BIT=x86_64 [ ] export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64 [ ] export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon [ ] export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" [ ] export BITCODE_GENERATION_MODE=marker [ ] export BUILD_ACTIVE_RESOURCES_ONLY=NO [ ] export BUILD_COMPONENTS="headers build" [ ] export BUILD_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products [ ] export BUILD_LIBRARY_FOR_DISTRIBUTION=NO [ ] export BUILD_ROOT=/Users/tom/Development/emojitest/build/macos/Build/Products [ ] export BUILD_STYLE= [ ] export BUILD_VARIANTS=normal [ ] export BUILT_PRODUCTS_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export BUNDLE_CONTENTS_FOLDER_PATH=Contents/ [ ] export BUNDLE_CONTENTS_FOLDER_PATH_deep=Contents/ [ ] export BUNDLE_EXECUTABLE_FOLDER_NAME_deep=MacOS [ ] export BUNDLE_EXECUTABLE_FOLDER_PATH=Contents/MacOS [ ] export BUNDLE_FORMAT=deep [ ] export BUNDLE_FRAMEWORKS_FOLDER_PATH=Contents/Frameworks [ ] export BUNDLE_PLUGINS_FOLDER_PATH=Contents/PlugIns [ ] export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH=Contents/PrivateHeaders [ ] export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH=Contents/Headers [ ] export CACHE_ROOT=/var/folders/xb/0dzpwyg97cn7k1vx9nk3s73m0000gn/C/com.apple.DeveloperTools/11.5-11E608c/Xcode [ ] export CCHROOT=/var/folders/xb/0dzpwyg97cn7k1vx9nk3s73m0000gn/C/com.apple.DeveloperTools/11.5-11E608c/Xcode [ ] export CHMOD=/bin/chmod [ ] export CHOWN=/usr/sbin/chown [ ] export CLANG_ANALYZER_NONNULL=YES [ ] export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE [ ] export CLANG_CXX_LANGUAGE_STANDARD=gnu++14 [ ] export CLANG_CXX_LIBRARY=libc++ [ ] export CLANG_ENABLE_MODULES=YES [ ] export CLANG_ENABLE_OBJC_ARC=YES [ ] export CLANG_MODULES_BUILD_SESSION_FILE=/Users/tom/Development/emojitest/build/macos/ModuleCache.noindex/Session.modulevalidation [ ] export CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY=YES [ ] 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_DOCUMENTATION_COMMENTS=YES [ ] 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_REPEATED_USE_OF_WEAK=YES [ ] export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR [ ] export CLANG_WARN_PRAGMA_PACK=YES [ ] export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES [ ] export CLANG_WARN_STRICT_PROTOTYPES=YES [ ] export CLANG_WARN_SUSPICIOUS_MOVE=YES [ ] export CLANG_WARN_UNGUARDED_AVAILABILITY=YES_AGGRESSIVE [ ] export CLANG_WARN_UNREACHABLE_CODE=YES [ ] export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES [ ] export CLASS_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/JavaClasses [ ] export CLEAN_PRECOMPS=YES [ ] export CLONE_HEADERS=NO [ ] export CODESIGNING_FOLDER_PATH=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app [ ] export CODE_SIGNING_ALLOWED=YES [ ] export CODE_SIGN_ENTITLEMENTS=Runner/DebugProfile.entitlements [ ] export CODE_SIGN_IDENTITY=- [ ] export CODE_SIGN_IDENTITY_NO="Apple Development" [ ] export CODE_SIGN_IDENTITY_YES=- [ ] export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES [ ] export CODE_SIGN_STYLE=Automatic [ ] export COLOR_DIAGNOSTICS=NO [ ] export COMBINE_HIDPI_IMAGES=YES [ ] export COMPILER_INDEX_STORE_ENABLE=NO [ ] export COMPOSITE_SDK_DIRS=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/CompositeSDKs [ ] export COMPRESS_PNG_FILES=NO [ ] export CONFIGURATION=Debug [ ] export CONFIGURATION_BUILD_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export CONFIGURATION_TEMP_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug [ ] export CONTENTS_FOLDER_PATH=emojitest.app/Contents [ ] export CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO=emojitest.app/Contents [ ] export CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES=emojitest.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 CP=/bin/cp [ ] export CREATE_INFOPLIST_SECTION_IN_BINARY=NO [ ] export CURRENT_ARCH=undefined_arch [ ] export CURRENT_VARIANT=normal [ ] export DART_OBFUSCATION=false [ ] export DEAD_CODE_STRIPPING=NO [ ] 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=MACOSX_DEPLOYMENT_TARGET [ ] export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mmacosx-version-min [ ] export DEPLOYMENT_TARGET_LD_ENV_NAME=MACOSX_DEPLOYMENT_TARGET [ ] export DEPLOYMENT_TARGET_LD_FLAG_NAME=macosx_version_min [ ] export DEPLOYMENT_TARGET_SETTING_NAME=MACOSX_DEPLOYMENT_TARGET [ ] export DEPLOYMENT_TARGET_SUGGESTED_VALUES="10.6 10.7 10.8 10.9 10.10 10.11 10.12 10.13 10.14 10.15" [ ] export DERIVED_FILES_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources [ ] export DERIVED_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources [ ] export DERIVED_SOURCES_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources [ ] 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 DOCUMENTATION_FOLDER_PATH=emojitest.app/Contents/Resources/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=emojitest.app.dSYM [ ] export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO [ ] export DWARF_DSYM_FOLDER_PATH=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO [ ] export EMBEDDED_PROFILE_NAME=embedded.provisionprofile [ ] 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=NO [ ] export ENABLE_PREVIEWS=NO [ ] export ENABLE_STRICT_OBJC_MSGSEND=YES [ ] export ENABLE_TESTABILITY=YES [ ] export ENABLE_TESTING_SEARCH_PATHS=NO [ ] 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=emojitest.app/Contents/Executables [ ] export EXECUTABLE_FOLDER_PATH=emojitest.app/Contents/MacOS [ ] export EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO=emojitest.app/Contents/MacOS [ ] export EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES=emojitest.app/Contents [ ] export EXECUTABLE_NAME=emojitest [ ] export EXECUTABLE_PATH=emojitest.app/Contents/MacOS/emojitest [ ] export EXPANDED_CODE_SIGN_IDENTITY=- [ ] export EXPANDED_CODE_SIGN_IDENTITY_NAME=- [ ] export FILE_LIST=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects/LinkFileList [ ] export FIXED_FILES_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/FixedFiles [ ] export FLUTTER_APPLICATION_PATH=/Users/tom/Development/emojitest [ ] export FLUTTER_BUILD_DIR=build [ ] export FLUTTER_BUILD_NAME=1.0.0 [ ] export FLUTTER_BUILD_NUMBER=1 [ ] export FLUTTER_FRAMEWORK_DIR=/usr/local/flutter/bin/cache/artifacts/engine/darwin-x64 [ ] export FLUTTER_ROOT=/usr/local/flutter [ ] export FLUTTER_TARGET=/Users/tom/Development/emojitest/lib/main.dart [ ] export FRAMEWORKS_FOLDER_PATH=emojitest.app/Contents/Frameworks [ ] export FRAMEWORK_FLAG_PREFIX=-framework [ ] export FRAMEWORK_SEARCH_PATHS="/Users/tom/Development/emojitest/build/macos/Build/Products/Debug /Users/tom/Development/emojitest/macos/Flutter/ephemeral" [ ] export FRAMEWORK_VERSION=A [ ] export FULL_PRODUCT_NAME=emojitest.app [ ] export GCC3_VERSION=3.3 [ ] export GCC_C_LANGUAGE_STANDARD=gnu11 [ ] 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 " [ ] export GCC_SYMBOLS_PRIVATE_EXTERN=NO [ ] 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_SHADOW=YES [ ] export GCC_WARN_STRICT_SELECTOR_MATCH=YES [ ] 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/tom/Development/emojitest/build/macos/Build/Products/Debug/include " [ ] export HIDE_BITCODE_SYMBOLS=YES [ ] export HOME=/Users/tom [ ] export ICONV=/usr/bin/iconv [ ] export INFOPLIST_EXPAND_BUILD_SETTINGS=YES [ ] export INFOPLIST_FILE=Runner/Info.plist [ ] export INFOPLIST_OUTPUT_FORMAT=same-as-input [ ] export INFOPLIST_PATH=emojitest.app/Contents/Info.plist [ ] export INFOPLIST_PREPROCESS=NO [ ] export INFOSTRINGS_PATH=emojitest.app/Contents/Resources/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=tom [ ] export INSTALL_PATH=/Applications [ ] export INSTALL_ROOT=/tmp/Runner.dst [ ] export IOS_UNZIPPERED_TWIN_PREFIX_PATH=/System/iOSSupport [ ] export IS_MACCATALYST=NO [ ] export IS_UIKITFORMAC=NO [ ] 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=emojitest.app/Contents/Resources/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/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/emojitest_dependency_info.dat [ ] export LD_GENERATE_MAP_FILE=NO [ ] export LD_MAP_FILE_PATH=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest-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" [ ] export LD_RUNPATH_SEARCH_PATHS_YES=@loader_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/tom/Development/emojitest/build/macos/Build/Products/Debug " [ ] export LINKER_DISPLAYS_MANGLED_NAMES=NO [ ] export LINK_FILE_LIST_normal_x86_64=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.LinkFileList [ ] export LINK_WITH_STANDARD_LIBRARIES=YES [ ] export LLVM_TARGET_TRIPLE_OS_VERSION=macos10.11 [ ] export LLVM_TARGET_TRIPLE_OS_VERSION_NO=macos10.11 [ ] export LLVM_TARGET_TRIPLE_OS_VERSION_YES=macos10.15 [ ] export LLVM_TARGET_TRIPLE_VENDOR=apple [ ] export LOCALIZED_RESOURCES_FOLDER_PATH=emojitest.app/Contents/Resources/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/tom/Development/emojitest/macos [ ] export LOCSYMROOT=/Users/tom/Development/emojitest/macos [ ] export MACH_O_TYPE=mh_execute [ ] export MACOSX_DEPLOYMENT_TARGET=10.11 [ ] 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/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Resources [ ] export MODULES_FOLDER_PATH=emojitest.app/Contents/Modules [ ] export MODULE_CACHE_DIR=/Users/tom/Development/emojitest/build/macos/ModuleCache.noindex [ ] export MTL_ENABLE_DEBUG_INFO=YES [ ] export NATIVE_ARCH=x86_64 [ ] 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/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects [ ] export OBJECT_FILE_DIR_normal=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal [ ] export OBJROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex [ ] export ONLY_ACTIVE_ARCH=YES [ ] export OS=MACOS [ ] export OSAC=/usr/bin/osacompile [ ] 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/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexe c:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/C ontents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Users/tom/.nvm/versions/node/v10.13.0/bin:/usr/local/opt/openjdk@11/bin:/usr/local/opt/ruby/bin:/ usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin:/Users/tom/bin:/usr/local/flutter/bin:/Users/tom/go/bin [ ] 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=emojitest.app/Contents/pbdevelopment.plist [ ] export PER_ARCH_OBJECT_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch [ ] export PER_VARIANT_OBJECT_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal [ ] export PKGINFO_FILE_PATH=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PkgInfo [ ] export PKGINFO_PATH=emojitest.app/Contents/PkgInfo [ ] export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications [ ] export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin [ ] export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library [ ] export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs [ ] export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools [ ] export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr [ ] export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform [ ] export PLATFORM_DISPLAY_NAME=macOS [ ] export PLATFORM_FAMILY_NAME=macOS [ ] export PLATFORM_NAME=macosx [ ] export PLATFORM_PREFERRED_ARCH=x86_64 [ ] export PLATFORM_PRODUCT_BUILD_VERSION=11E608c [ ] export PLIST_FILE_OUTPUT_FORMAT=same-as-input [ ] export PLUGINS_FOLDER_PATH=emojitest.app/Contents/PlugIns [ ] export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES [ ] export PRECOMP_DESTINATION_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PrefixHeaders [ ] export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO [ ] export PRIVATE_HEADERS_FOLDER_PATH=emojitest.app/Contents/PrivateHeaders [ ] export PRODUCT_BUNDLE_IDENTIFIER=com.example.emojitest [ ] export PRODUCT_BUNDLE_PACKAGE_TYPE=APPL [ ] export PRODUCT_COPYRIGHT="Copyright © 2020 com.example. All rights reserved." [ ] export PRODUCT_MODULE_NAME=emojitest [ ] export PRODUCT_NAME=emojitest [ ] export PRODUCT_SETTINGS_PATH=/Users/tom/Development/emojitest/macos/Runner/Info.plist [ ] export PRODUCT_TYPE=com.apple.product-type.application [ ] export PROFILING_CODE=NO [ ] export PROJECT=Runner [ ] export PROJECT_DERIVED_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/DerivedSources [ ] export PROJECT_DIR=/Users/tom/Development/emojitest/macos [ ] export PROJECT_FILE_PATH=/Users/tom/Development/emojitest/macos/Runner.xcodeproj [ ] export PROJECT_NAME=Runner [ ] export PROJECT_TEMP_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build [ ] export PROJECT_TEMP_ROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex [ ] export PUBLIC_HEADERS_FOLDER_PATH=emojitest.app/Contents/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 REZ_COLLECTOR_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources [ ] export REZ_OBJECTS_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources/Objects [ ] export REZ_SEARCH_PATHS="/Users/tom/Development/emojitest/build/macos/Build/Products/Debug " [ ] export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO [ ] export SCRIPTS_FOLDER_PATH=emojitest.app/Contents/Resources/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 SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] export SDK_DIR_macosx10_15=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] export SDK_NAME=macosx10.15 [ ] export SDK_NAMES=macosx10.15 [ ] export SDK_PRODUCT_BUILD_VERSION=19E258 [ ] export SDK_VERSION=10.15 [ ] export SDK_VERSION_ACTUAL=101504 [ ] export SDK_VERSION_MAJOR=101500 [ ] export SDK_VERSION_MINOR=1504 [ ] 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=NO [ ] export SHALLOWBUNDLE=YES [ ] export SHALLOW_BUNDLE_driverkit=YES [ ] export SHALLOW_BUNDLE_ios=NO [ ] export SHALLOW_BUNDLE_macos=NO [ ] export SHARED_DERIVED_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug/DerivedSources [ ] export SHARED_FRAMEWORKS_FOLDER_PATH=emojitest.app/Contents/SharedFrameworks [ ] export SHARED_PRECOMPS_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/PrecompiledHeaders [ ] export SHARED_SUPPORT_FOLDER_PATH=emojitest.app/Contents/SharedSupport [ ] export SKIP_INSTALL=NO [ ] export SOURCE_ROOT=/Users/tom/Development/emojitest/macos [ ] export SRCROOT=/Users/tom/Development/emojitest/macos [ ] export STRINGS_FILE_OUTPUT_ENCODING=UTF-16 [ ] export STRIP_BITCODE_FROM_COPIED_FILES=NO [ ] export STRIP_INSTALLED_PRODUCT=YES [ ] export STRIP_PNG_TEXT=NO [ ] export STRIP_STYLE=all [ ] export STRIP_SWIFT_SYMBOLS=YES [ ] export SUPPORTED_PLATFORMS=macosx [ ] export SUPPORTS_TEXT_BASED_API=NO [ ] export SWIFT_ACTIVE_COMPILATION_CONDITIONS=DEBUG [ ] export SWIFT_OPTIMIZATION_LEVEL=-Onone [ ] export SWIFT_PLATFORM_TARGET_PREFIX=macos [ ] export SWIFT_RESPONSE_FILE_PATH_normal_x86_64=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/emojitest.SwiftFileList [ ] export SWIFT_VERSION=5.0 [ ] export SYMROOT=/Users/tom/Development/emojitest/build/macos/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_EXTENSIONS_FOLDER_PATH=emojitest.app/Contents/Library/SystemExtensions [ ] export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions [ ] export SYSTEM_LIBRARY_DIR=/System/Library [ ] export TAPI_VERIFY_MODE=ErrorsOnly [ ] export TARGETNAME=Runner [ ] export TARGET_BUILD_DIR=/Users/tom/Development/emojitest/build/macos/Build/Products/Debug [ ] export TARGET_NAME=Runner [ ] export TARGET_TEMP_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build [ ] export TEMP_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build [ ] export TEMP_FILES_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build [ ] export TEMP_FILE_DIR=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build [ ] export TEMP_ROOT=/Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex [ ] export TEST_FRAMEWORK_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks" [ ] export TEST_LIBRARY_SEARCH_PATHS=" /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.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 UID=501 [ ] export UNLOCALIZED_RESOURCES_FOLDER_PATH=emojitest.app/Contents/Resources [ ] export UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO=emojitest.app/Contents/Resources [ ] export UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES=emojitest.app/Contents [ ] export UNSTRIPPED_PRODUCT=NO [ ] export USER=tom [ ] export USER_APPS_DIR=/Users/tom/Applications [ ] export USER_LIBRARY_DIR=/Users/tom/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 VALIDATE_DEVELOPMENT_ASSET_PATHS=YES_ERROR [ ] export VALIDATE_PRODUCT=NO [ ] export VALIDATE_WORKSPACE=YES_ERROR [ ] export VALID_ARCHS="i386 x86_64" [ ] export VERBOSE_PBXCP=NO [ ] export VERBOSE_SCRIPT_LOGGING=YES [ ] export VERSIONPLIST_PATH=emojitest.app/Contents/version.plist [ ] export VERSION_INFO_BUILDER=tom [ ] export VERSION_INFO_FILE=emojitest_vers.c [ ] export VERSION_INFO_STRING=""@(#)PROGRAM:emojitest PROJECT:Runner-"" [ ] export WARNING_CFLAGS="-Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings" [ ] export WRAPPER_EXTENSION=app [ ] export WRAPPER_NAME=emojitest.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=11E608c [ ] export XCODE_VERSION_ACTUAL=1150 [ ] export XCODE_VERSION_MAJOR=1100 [ ] export XCODE_VERSION_MINOR=1150 [ ] export XPCSERVICES_FOLDER_PATH=emojitest.app/Contents/XPCServices [ ] export YACC=yacc [ ] export BOOL=NO [ ] export _BOOL_NO=NO [ ] export _BOOL_YES=YES [ ] export _DEVELOPMENT_TEAM_IS_EMPTY=YES [ ] export _ISEMPTY=YES [ ] export _MACOSX_DEPLOYMENT_TARGET_IS_EMPTY=NO [ ] export arch=undefined_arch [ ] export variant=normal [ ] /bin/sh -c /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Script-3399D490228B24CF009A79C7.sh [ +1 ms] CopySwiftLibs /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate [ ] export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer [ ] export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk [ ] builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/MacOS/emojitest --scan-folder /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks --scan-folder /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/PlugIns --scan-folder /Users/tom/Development/emojitest/macos/Flutter/ephemeral/App.framework --scan-folder /Users/tom/Development/emojitest/macos/Flutter/ephemeral/FlutterMacOS.framework --platform macosx --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks --strip-bitcode --strip-bitcode-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/SwiftStdLibToolInputDependencies.dep [ +173 ms] libswiftCore.dylib is up to date at /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib [ ] libswiftDarwin.dylib is up to date at /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib [ ] libswiftObjectiveC.dylib is up to date at /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib [ ] Probing signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib [ ] /usr/bin/codesign -r- --display /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib [ +4 ms] Codesigning /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib [ ] /usr/bin/codesign --force --sign - --verbose /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib [ +58 ms] Probing signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib [ ] /usr/bin/codesign -r- --display /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib [ +4 ms] Code signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftCore.dylib is unchanged; keeping original [ ] Probing signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib [ ] Probing signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib [ ] /usr/bin/codesign -r- --display /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib [ ] /usr/bin/codesign -r- --display /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib [ +4 ms] Codesigning /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib [ ] /usr/bin/codesign --force --sign - --verbose /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib [ ] Codesigning /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib [ ] /usr/bin/codesign --force --sign - --verbose /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib [ +28 ms] Probing signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib [ ] /usr/bin/codesign -r- --display /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib [ +4 ms] Code signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftDarwin.dylib is unchanged; keeping original [ +4 ms] Probing signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib [ ] /usr/bin/codesign -r- --display /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib [ +6 ms] Code signature of /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original [ +2 ms] CodeSign /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate [ ] Signing Identity: "-" [ ] /usr/bin/codesign --force --sign - --entitlements /Users/tom/Development/emojitest/build/macos/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/emojitest.app.xcent --timestamp=none /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app [ +39 ms] Validate /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app (in target 'Runner' from project 'Runner') [ ] cd /Users/tom/Development/emojitest/macos [ ] builtin-validationUtility /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app -no-validate-extension [ +3 ms] BUILD SUCCEEDED [ +30 ms] Building macOS application... (completed in 11,1s) [ +2 ms] executing: /usr/bin/plutil -convert json -o - /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Info.plist [ +7 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/tom/Development/emojitest/build/macos/Build/Products/Debug/emojitest.app/Contents/Info.plist [ ] {"CFBundleName":"emojitest","DTXcode":"1150","DTSDKName":"macosx10.15","NSHumanReadableCopyright":"Copyright © 2020 com.example. All rights reserved.","DTSDKBuild":"19E258","CFBundleDevelopmentRegion":"en","CFBundleVersion":"1","BuildMachineOSBuild":"19F101","NSPrincipalClass":"NSApplication","CFBundleIconName":"AppIcon","CFBundlePackageType":"APPL","CFBundleIconFile":"AppIcon","CFBundleSupportedPlatforms":["Ma cOSX"],"CFBundleShortVersionString":"1.0.0","NSMainNibFile":"MainMenu","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"emojitest","DTCompiler":"com.apple.compilers.llvm.clang.1_0","CFBundleIdentifier":"com.example.emojitest","DTPlatformVersion":"GM","DTXcodeBuil d":"11E608c","LSMinimumSystemVersion":"10.11","DTPlatformBuild":"11E608c"} [ +663 ms] Observatory URL on device: http://127.0.0.1:58797/AXOGOgRAz3A=/ [ +5 ms] Caching compiled dill [ +22 ms] Connecting to service protocol: http://127.0.0.1:58797/AXOGOgRAz3A=/ [ +131 ms] Successfully connected to service protocol: http://127.0.0.1:58797/AXOGOgRAz3A=/ [ ] Waiting for macOS to report its views... [ +5 ms] Waiting for macOS to report its views... (completed in 4ms) [ +5 ms] DevFS: Creating new filesystem on the device (null) [ +16 ms] DevFS: Created new filesystem on the device (file:///var/folders/xb/0dzpwyg97cn7k1vx9nk3s73m0000gn/T/com.example.emojitest/emojitesthgK6e7/emojitest/) [ +1 ms] Updating assets [ +80 ms] Syncing files to device macOS... [ +1 ms] Scanning asset files [ +1 ms] <- reset [ ] Compiling dart to kernel with 0 updated files [ ] <- recompile package:emojitest/main.dart 12e7c842-14ed-41aa-bf0f-b5f2c0af9920 [ ] <- 12e7c842-14ed-41aa-bf0f-b5f2c0af9920 [ +55 ms] Updating files [ +65 ms] DevFS: Sync finished [ ] Syncing files to device macOS... (completed in 126ms) [ ] Synced 0.9MB. [ +2 ms] <- accept [ +1 ms] Connected to _flutterView/0x7faea2864e20. [ +1 ms] Flutter run key commands. [ +1 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 macOS is available at: http://127.0.0.1:58797/AXOGOgRAz3A=/

porcupine:emojitest tom$ flutter analyze Analyzing emojitest...
No issues found! (ran in 1.5s)

porcupine:emojitest tom$ flutter doctor -v [✓] Flutter (Channel master, 1.20.0-3.0.pre.130, on Mac OS X 10.15.5 19F101, locale de-DE) • Flutter version 1.20.0-3.0.pre.130 at /usr/local/flutter • Framework revision a74310242e (19 hours ago), 2020-07-05 14:58:01 -0400 • Engine revision f8bbcc396b • Dart version 2.9.0 (build 2.9.0-20.0.dev c190fc3a31)

[!] Android toolchain - develop for Android devices (Android SDK version 29.0.0) • Android SDK at /Users/tom/Library/Android/sdk • Platform android-29, build-tools 29.0.0 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01) ✗ Android license status unknown. Try re-installing or updating your Android SDK Manager. See https://developer.android.com/studio/#downloads or visit https://flutter.dev/docs/get-started/install/macos#android-setup for detailed instructions.

[✓] Xcode - develop for iOS and macOS (Xcode 11.5) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 11.5, Build version 11E608c • CocoaPods version 1.8.4

[✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[!] Android Studio (version 3.4) • Android Studio at /Applications/Android Studio.app/Contents ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)

[✓] VS Code (version 1.46.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.12.1

[✓] Connected device (3 available) • macOS (desktop) • macos • darwin-x64 • Mac OS X 10.15.5 19F101 • Web Server (web) • web-server • web-javascript • Flutter Tools • Chrome (web) • chrome • web-javascript • Google Chrome 83.0.4103.116

! Doctor found issues in 2 categories.



</details>
VladyslavBondarenko commented 4 years ago

Tried with 1.20.0-3.0.pre.130. Emojis are displayed with spacing when running on macos, when I use screen of my laptop. But there is no spacing when I use my external monitor - I see equal behavior for both web and desktop apps.

Here you can see how does it change when I move window between my two screens

ezgif com-video-to-gif

miszmaniac commented 4 years ago

I noticed the same issue on my MacOS, and also everything is ok when displaying on internal display. It looks like emojis occupy far more space than regular letter. Here's my example:) image

darshankawar commented 1 year ago

Verified this issue using latest master and stable and confirmed the the emojis are now displayed with correct space as shown below:

Screenshot 2023-06-30 at 5 18 21 PM

Closing this as fixed.

stable, master flutter doctor -v ``` [!] Flutter (Channel stable, 3.10.5, on macOS 12.2.1 21D62 darwin-x64, locale en-GB) • Flutter version 3.10.5 on channel stable at /Users/dhs/documents/fluttersdk/flutter ! Warning: `flutter` on your path resolves to /Users/dhs/Documents/Fluttersdk/flutter/bin/flutter, which is not inside your current Flutter SDK checkout at /Users/dhs/documents/fluttersdk/flutter. Consider adding /Users/dhs/documents/fluttersdk/flutter/bin to the front of your path. ! Warning: `dart` on your path resolves to /Users/dhs/Documents/Fluttersdk/flutter/bin/dart, which is not inside your current Flutter SDK checkout at /Users/dhs/documents/fluttersdk/flutter. Consider adding /Users/dhs/documents/fluttersdk/flutter/bin to the front of your path. • Upstream repository https://github.com/flutter/flutter.git • Framework revision 796c8ef792 (2 days ago), 2023-06-13 15:51:02 -0700 • Engine revision 45f6e00911 • Dart version 3.0.5 • DevTools version 2.23.1 • If those were intentional, you can disregard the above warnings; however it is recommended to use "git" directly to perform update checks and upgrades. [!] Xcode - develop for iOS and macOS (Xcode 12.3) • Xcode at /Applications/Xcode.app/Contents/Developer ! Flutter recommends a minimum Xcode version of 13. Download the latest version or update via the Mac App Store. • CocoaPods version 1.11.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] VS Code (version 1.62.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.21.0 [✓] Connected device (5 available) • SM G975F (mobile) • RZ8M802WY0X • android-arm64 • Android 11 (API 30) • Darshan's iphone (mobile) • 21150b119064aecc249dfcfe05e259197461ce23 • ios • iOS 14.4.1 18D61 • iPhone 12 Pro Max (mobile) • A5473606-0213-4FD8-BA16-553433949729 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-3 (simulator) • macOS (desktop) • macos • darwin-x64 • Mac OS X 10.15.4 19E2269 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 98.0.4758.80 [✓] HTTP Host Availability • All required HTTP hosts are available ! Doctor found issues in 1 category. [!] Flutter (Channel master, 3.12.0-13.0.pre.17, on macOS 12.2.1 21D62 darwin-x64, locale en-GB) • Flutter version 3.12.0-13.0.pre.17 on channel master at /Users/dhs/documents/fluttersdk/flutter ! Warning: `flutter` on your path resolves to /Users/dhs/Documents/Fluttersdk/flutter/bin/flutter, which is not inside your current Flutter SDK checkout at /Users/dhs/documents/fluttersdk/flutter. Consider adding /Users/dhs/documents/fluttersdk/flutter/bin to the front of your path. ! Warning: `dart` on your path resolves to /Users/dhs/Documents/Fluttersdk/flutter/bin/dart, which is not inside your current Flutter SDK checkout at /Users/dhs/documents/fluttersdk/flutter. Consider adding /Users/dhs/documents/fluttersdk/flutter/bin to the front of your path. • Upstream repository https://github.com/flutter/flutter.git • Framework revision 732429e35b (40 minutes ago), 2023-06-29 21:20:09 -0700 • Engine revision 68cc1a7971 • Dart version 3.1.0 (build 3.1.0-261.0.dev) • DevTools version 2.25.0 • If those were intentional, you can disregard the above warnings; however it is recommended to use "git" directly to perform update checks and upgrades. [!] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at /Users/dhs/Library/Android/sdk ✗ cmdline-tools component is missing Run `path/to/sdkmanager --install "cmdline-tools;latest"` See https://developer.android.com/studio/command-line for more details. ✗ Android license status unknown. Run `flutter doctor --android-licenses` to accept the SDK licenses. See https://flutter.dev/docs/get-started/install/macos#android-setup for more details. [✓] Xcode - develop for iOS and macOS (Xcode 13.2.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Build 13C100 • CocoaPods version 1.11.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] IntelliJ IDEA Ultimate Edition (version 2021.3.2) • IntelliJ at /Applications/IntelliJ IDEA.app • Flutter plugin version 65.1.4 • Dart plugin version 213.7228 [✓] VS Code (version 1.62.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.29.0 [✓] Connected device (3 available) • Darshan's iphone (mobile) • 21150b119064aecc249dfcfe05e259197461ce23 • ios • iOS 15.3.1 19D52 • macOS (desktop) • macos • darwin-x64 • macOS 12.2.1 21D62 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 109.0.5414.119 [✓] Network resources • All expected network resources are available. ! Doctor found issues in 1 category. [!] Xcode - develop for iOS and macOS (Xcode 12.3) • Xcode at /Applications/Xcode.app/Contents/Developer ! Flutter recommends a minimum Xcode version of 13. Download the latest version or update via the Mac App Store. • CocoaPods version 1.11.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] VS Code (version 1.62.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.21.0 [✓] Connected device (5 available) • SM G975F (mobile) • RZ8M802WY0X • android-arm64 • Android 11 (API 30) • Darshan's iphone (mobile) • 21150b119064aecc249dfcfe05e259197461ce23 • ios • iOS 14.4.1 18D61 • iPhone 12 Pro Max (mobile) • A5473606-0213-4FD8-BA16-553433949729 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-3 (simulator) • macOS (desktop) • macos • darwin-x64 • Mac OS X 10.15.4 19E2269 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 98.0.4758.80 [✓] HTTP Host Availability • All required HTTP hosts are available ! Doctor found issues in 1 category. ```
github-actions[bot] commented 1 year ago

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v and a minimal reproduction of the issue.