flutter / flutter

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

Flutter App did not detecting mouse hover and mouse clicks in desktop macos #106456

Closed alihassan143 closed 2 years ago

alihassan143 commented 2 years ago

When restart the app error did not appear some time it shows error

Sample code ```dart void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of your application. @override Widget build(BuildContext context) { return GetCupertinoApp( debugShowCheckedModeBanner: false, home: CupertinoPageScaffold( child: CupertinoButton( color: defaultColor, child: const Text("Button"), onPressed: () { log("pressed"); }, )), ); } } ```
Logs ```bash #5 MouseTracker.updateWithEvent package:flutter/…/rendering/mouse_tracker.dart:316 #6 RendererBinding.dispatchEvent package:flutter/…/rendering/binding.dart:321 #7 GestureBinding._handlePointerEventImmediately package:flutter/…/gestures/binding.dart:380 #8 GestureBinding.handlePointerEvent package:flutter/…/gestures/binding.dart:344 #9 GestureBinding._flushPointerEventQueue package:flutter/…/gestures/binding.dart:302 #10 GestureBinding._handlePointerDataPacket package:flutter/…/gestures/binding.dart:285 #11 _rootRunUnary (dart:async/zone.dart:1442:13) #12 _CustomZone.runUnary (dart:async/zone.dart:1335:19) #13 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1244:7) #14 _invoke1 (dart:ui/hooks.dart:170:10) #15 PlatformDispatcher._dispatchPointerDataPacket (dart:ui/platform_dispatcher.dart:331:7) #16 _dispatchPointerDataPacket (dart:ui/hooks.dart:94:31) [ERROR:flutter/lib/ui/ui_dart_state.cc(198)] Unhandled Exception: 'package:flutter/src/rendering/mouse_tracker.dart': Failed assertion: line 206 pos 12: '!_debugDuringDeviceUpdate': is not true. package:flutter/…/rendering/mouse_tracker.dart:206 #0 _AssertionError._doThrowNew (dart:core-patch/errors_patch.dart:51:61) #1 _AssertionError._throwNew (dart:core-patch/errors_patch.dart:40:5) #2 MouseTracker._deviceUpdatePhase package:flutter/…/rendering/mouse_tracker.dart:206 #3 MouseTracker.updateWithEvent. package:flutter/…/rendering/mouse_tracker.dart:317 #4 MouseTracker._monitorMouseConnection package:flutter/…/rendering/mouse_tracker.dart:195 #5 MouseTracker.updateWithEvent package:flutter/…/rendering/mouse_tracker.dart:316 #6 RendererBinding.dispatchEvent package:flutter/…/rendering/binding.dart:321 #7 GestureBinding._handlePointerEventImmediately package:flutter/…/gestures/binding.dart:380 #8 GestureBinding.handlePointerEvent package:flutter/…/gestures/binding.dart:344 #9 GestureBinding._flushPointerEventQueue package:flutter/…/gestures/binding.dart:302 #10 GestureBinding._handlePointerDataPacket package:flutter/…/gestures/binding.dart:285 #11 _rootRunUnary (dart:async/zone.dart:1442:13) #12 _CustomZone.runUnary (dart:async/zone.dart:1335:19) #13 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1244:7) #14 _invoke1 (dart:ui/hooks.dart:170:10) #15 PlatformDispatcher._dispatchPointerDataPacket (dart:ui/platform_dispatcher.dart:331:7) #16 _dispatchPointerDataPacket (dart:ui/hooks.dart:94:31) ```
flutter doctor -v ```bash [✓] Flutter (Channel stable, 3.0.2, on macOS 12.4 21F79 darwin-x64, locale en-PK) • Flutter version 3.0.2 at /Users/mac/development/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision cd41fdd495 (2 weeks ago), 2022-06-08 09:52:13 -0700 • Engine revision f15f824b57 • Dart version 2.17.3 • DevTools version 2.12.2 [✓] Android toolchain - develop for Android devices (Android SDK version 32.1.0-rc1) • Android SDK at /Users/mac/Library/Android/sdk • Platform android-32, build-tools 32.1.0-rc1 • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 13.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • CocoaPods version 1.11.3 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2021.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) [✓] VS Code (version 1.68.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.42.0 [✓] Connected device (2 available) • macOS (desktop) • macos • darwin-x64 • macOS 12.4 21F79 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 102.0.5005.115 ! Error: Mac’s iPhone is not connected. Xcode will continue when Mac’s iPhone is connected. (code -13) [✓] HTTP Host Availability • All required HTTP hosts are available ```
flutter run --verbose ```bash "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/AC854052-6D44-4300-9A5A-D0CFD32292B2", "udid" : "AC854052-6D44-4300-9A5A-D0CFD32292B2", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A9D5B8A4-FD63-45D2-9DBA-D937009F1F71\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A9D5B8A4-FD63-45D2-9DBA-D937009F1F71", "udid" : "A9D5B8A4-FD63-45D2-9DBA-D937009F1F71", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-15-4" : [ { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/29A9A3DB-DC7A-4C4C-8622-58BAF0C88594\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/29A9A3DB-DC7A-4C4C-8622-58BAF0C88594", "udid" : "29A9A3DB-DC7A-4C4C-8622-58BAF0C88594", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/E3BF3610-C89B-4B46-B417-9300513630D5\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/E3BF3610-C89B-4B46-B417-9300513630D5", "udid" : "E3BF3610-C89B-4B46-B417-9300513630D5", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-4K", "state" : "Shutdown", "name" : "Apple TV 4K (2nd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9C012872-43E0-4B95-AC9D-D28CB4BA0F49\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "udid" : "9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p) (2nd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-15-5" : [ { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/5C9C6B50-E57C-4F88-9425-AD2636D925BA\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/5C9C6B50-E57C-4F88-9425-AD2636D925BA", "udid" : "5C9C6B50-E57C-4F88-9425-AD2636D925BA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/36F29C59-7D90-4D4F-BA32-9B4F62FAA265\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "udid" : "36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "udid" : "B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/73489BB9-5136-4427-8031-1F20C807DA8F\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/73489BB9-5136-4427-8031-1F20C807DA8F", "udid" : "73489BB9-5136-4427-8031-1F20C807DA8F", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/49863B6C-F450-4AC1-AB08-89CCEC48D177\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/49863B6C-F450-4AC1-AB08-89CCEC48D177", "udid" : "49863B6C-F450-4AC1-AB08-89CCEC48D177", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E06CB64-2184-40CE-92DA-30FB367AD58C\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9E06CB64-2184-40CE-92DA-30FB367AD58C", "udid" : "9E06CB64-2184-40CE-92DA-30FB367AD58C", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini", "state" : "Shutdown", "name" : "iPhone 12 mini" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/95DE544A-EA06-453F-9A77-E0518F5CDC9A\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/95DE544A-EA06-453F-9A77-E0518F5CDC9A", "udid" : "95DE544A-EA06-453F-9A77-E0518F5CDC9A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12", "state" : "Shutdown", "name" : "iPhone 12" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/508B61A7-1F54-4980-8BF3-F32773902C26\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/508B61A7-1F54-4980-8BF3-F32773902C26", "udid" : "508B61A7-1F54-4980-8BF3-F32773902C26", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro", "state" : "Shutdown", "name" : "iPhone 12 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/114D8EE2-4FCA-4C52-AEFC-0A950B54620D\/data", "dataPathSize" : 4207304704, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "udid" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "isAvailable" : true, "logPathSize" : 958464, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max", "state" : "Shutdown", "name" : "iPhone 12 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/69D4AEB9-7871-44EA-8BCA-3F9169D51FA3\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "udid" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro", "state" : "Shutdown", "name" : "iPhone 13 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "udid" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro-Max", "state" : "Shutdown", "name" : "iPhone 13 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/807405E0-6BEB-40A1-ADE0-BFA83C88E240\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/807405E0-6BEB-40A1-ADE0-BFA83C88E240", "udid" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-mini", "state" : "Shutdown", "name" : "iPhone 13 mini" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A15EC128-EDD6-438D-85AD-C3FD48C04F67\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A15EC128-EDD6-438D-85AD-C3FD48C04F67", "udid" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13", "state" : "Shutdown", "name" : "iPhone 13" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/34D906FB-47FF-43C1-BE8D-9536637F7208\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/34D906FB-47FF-43C1-BE8D-9536637F7208", "udid" : "34D906FB-47FF-43C1-BE8D-9536637F7208", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE-3rd-generation", "state" : "Shutdown", "name" : "iPhone SE (3rd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/63502517-17F2-4861-8383-61FEF8252898\/data", "dataPathSize" : 220758016, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/63502517-17F2-4861-8383-61FEF8252898", "udid" : "63502517-17F2-4861-8383-61FEF8252898", "isAvailable" : true, "logPathSize" : 258048, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-", "state" : "Shutdown", "name" : "iPod touch (7th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/2A16F932-F09A-4BBC-B4DA-C10C732F0FB6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "udid" : "2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "udid" : "9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation", "state" : "Shutdown", "name" : "iPad (9th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A9234744-9C64-4FB1-8DA8-6149EB467F7A\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A9234744-9C64-4FB1-8DA8-6149EB467F7A", "udid" : "A9234744-9C64-4FB1-8DA8-6149EB467F7A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/FCF19064-75CE-4150-9F89-69E75E07058B\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/FCF19064-75CE-4150-9F89-69E75E07058B", "udid" : "FCF19064-75CE-4150-9F89-69E75E07058B", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/EF23C260-F341-42C0-AF36-3FA5664E94C4\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/EF23C260-F341-42C0-AF36-3FA5664E94C4", "udid" : "EF23C260-F341-42C0-AF36-3FA5664E94C4", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-5th-generation", "state" : "Shutdown", "name" : "iPad Air (5th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D2251EAB-1E91-4074-BCD3-8D1EE1AAF279\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "udid" : "D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-15-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/23B6F935-C26E-4805-98AB-50391A3D080F\/data", "dataPathSize" : 1695354880, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/23B6F935-C26E-4805-98AB-50391A3D080F", "udid" : "23B6F935-C26E-4805-98AB-50391A3D080F", "isAvailable" : false, "logPathSize" : 421888, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/3A4AF058-D274-4437-A34B-3D18FE0D3BF5\/data", "dataPathSize" : 912244736, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/3A4AF058-D274-4437-A34B-3D18FE0D3BF5", "udid" : "3A4AF058-D274-4437-A34B-3D18FE0D3BF5", "isAvailable" : false, "logPathSize" : 356352, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/3A005C87-FFAF-456D-83F3-0B4CA0086B93\/data", "dataPathSize" : 1149374464, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/3A005C87-FFAF-456D-83F3-0B4CA0086B93", "udid" : "3A005C87-FFAF-456D-83F3-0B4CA0086B93", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/E470EA7F-2AAE-40B4-AE15-2C82025145A9\/data", "dataPathSize" : 1056837632, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/E470EA7F-2AAE-40B4-AE15-2C82025145A9", "udid" : "E470EA7F-2AAE-40B4-AE15-2C82025145A9", "isAvailable" : false, "logPathSize" : 356352, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/89EAB2C3-C1FB-4B00-9EA6-77B7392B8363\/data", "dataPathSize" : 611545088, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/89EAB2C3-C1FB-4B00-9EA6-77B7392B8363", "udid" : "89EAB2C3-C1FB-4B00-9EA6-77B7392B8363", "isAvailable" : false, "logPathSize" : 339968, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/8485DE58-3E55-4863-A62D-0C7386E7BFE2\/data", "dataPathSize" : 483348480, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/8485DE58-3E55-4863-A62D-0C7386E7BFE2", "udid" : "8485DE58-3E55-4863-A62D-0C7386E7BFE2", "isAvailable" : false, "logPathSize" : 339968, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-", "state" : "Shutdown", "name" : "iPhone SE (2nd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/65EE8E4A-E94A-4B85-821E-08CB34B458A0\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/65EE8E4A-E94A-4B85-821E-08CB34B458A0", "udid" : "65EE8E4A-E94A-4B85-821E-08CB34B458A0", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini", "state" : "Shutdown", "name" : "iPhone 12 mini" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/F8625EBE-1FAD-411B-A92F-A5C9ABA825D5\/data", "dataPathSize" : 1164292096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/F8625EBE-1FAD-411B-A92F-A5C9ABA825D5", "udid" : "F8625EBE-1FAD-411B-A92F-A5C9ABA825D5", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12", "state" : "Shutdown", "name" : "iPhone 12" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D40714B4-515C-4CD1-806A-54DF90BFFBFA\/data", "dataPathSize" : 141942784, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D40714B4-515C-4CD1-806A-54DF90BFFBFA", "udid" : "D40714B4-515C-4CD1-806A-54DF90BFFBFA", "isAvailable" : false, "logPathSize" : 49152, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro", "state" : "Shutdown", "name" : "iPhone 12 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7\/data", "dataPathSize" : 11690598400, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7", "udid" : "FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7", "isAvailable" : false, "logPathSize" : 3616768, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max", "state" : "Shutdown", "name" : "iPhone 12 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/94A3D14F-1C2B-46F8-83BD-9255DC0DFC31\/data", "dataPathSize" : 104562688, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/94A3D14F-1C2B-46F8-83BD-9255DC0DFC31", "udid" : "94A3D14F-1C2B-46F8-83BD-9255DC0DFC31", "isAvailable" : false, "logPathSize" : 20480, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro", "state" : "Shutdown", "name" : "iPhone 13 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/C145D341-67C3-4962-8D1E-EE816717CF72\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/C145D341-67C3-4962-8D1E-EE816717CF72", "udid" : "C145D341-67C3-4962-8D1E-EE816717CF72", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro-Max", "state" : "Shutdown", "name" : "iPhone 13 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/37DDB08E-D5AD-4A58-BF27-6CD57066BD20\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/37DDB08E-D5AD-4A58-BF27-6CD57066BD20", "udid" : "37DDB08E-D5AD-4A58-BF27-6CD57066BD20", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-mini", "state" : "Shutdown", "name" : "iPhone 13 mini" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/140C2BE1-A28C-4ACA-BEBC-768B8BC0F140\/data", "dataPathSize" : 1162850304, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/140C2BE1-A28C-4ACA-BEBC-768B8BC0F140", "udid" : "140C2BE1-A28C-4ACA-BEBC-768B8BC0F140", "isAvailable" : false, "logPathSize" : 376832, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13", "state" : "Shutdown", "name" : "iPhone 13" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/CB40EB24-E371-466F-85C0-561B705E846F\/data", "dataPathSize" : 762023936, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/CB40EB24-E371-466F-85C0-561B705E846F", "udid" : "CB40EB24-E371-466F-85C0-561B705E846F", "isAvailable" : false, "logPathSize" : 270336, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-", "state" : "Shutdown", "name" : "iPod touch (7th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/4B2ED8A6-A508-44CF-B678-2B4C92B96999\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/4B2ED8A6-A508-44CF-B678-2B4C92B96999", "udid" : "4B2ED8A6-A508-44CF-B678-2B4C92B96999", "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\/mac\/Library\/Developer\/CoreSimulator\/Devices\/94D84564-D468-4C8A-904C-F14889AC5AD4\/data", "dataPathSize" : 1240473600, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/94D84564-D468-4C8A-904C-F14889AC5AD4", "udid" : "94D84564-D468-4C8A-904C-F14889AC5AD4", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation", "state" : "Shutdown", "name" : "iPad (9th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/0B0A91C5-2796-4422-901C-E2F7E722744E\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/0B0A91C5-2796-4422-901C-E2F7E722744E", "udid" : "0B0A91C5-2796-4422-901C-E2F7E722744E", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-", "state" : "Shutdown", "name" : "iPad Air (4th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/88154A72-204C-4393-A3A8-56CE0B788E3F\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/88154A72-204C-4393-A3A8-56CE0B788E3F", "udid" : "88154A72-204C-4393-A3A8-56CE0B788E3F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/DC691468-096D-499F-B3DD-F5B7FABB01CF\/data", "dataPathSize" : 1102725120, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/DC691468-096D-499F-B3DD-F5B7FABB01CF", "udid" : "DC691468-096D-499F-B3DD-F5B7FABB01CF", "isAvailable" : false, "logPathSize" : 344064, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/F96EC4C4-7FC6-436D-A203-A95B3CC11055\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/F96EC4C4-7FC6-436D-A203-A95B3CC11055", "udid" : "F96EC4C4-7FC6-436D-A203-A95B3CC11055", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ] } } [+2581 ms] [ { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,3", "identifier" : "508B61A7-1F54-4980-8BF3-F32773902C26", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-1", "modelName" : "iPhone 12 Pro", "name" : "iPhone 12 Pro" }, "modelCode" : "Watch5,3", "identifier" : "6C1344D2-D4E1-4DCD-B6E3-C963879E7E96", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 40mm", "name" : "Apple Watch Series 5 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,3", "identifier" : "73489BB9-5136-4427-8031-1F20C807DA8F", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-1", "modelName" : "iPhone 11 Pro", "name" : "iPhone 11 Pro" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,5", "identifier" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-1", "modelName" : "iPhone 13", "name" : "iPhone 13" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,1", "identifier" : "9E06CB64-2184-40CE-92DA-30FB367AD58C", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-mini-1", "modelName" : "iPhone 12 mini", "name" : "iPhone 12 mini" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad14,1", "identifier" : "D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-mini6-1", "modelName" : "iPad mini (6th generation)", "name" : "iPad mini (6th generation)" }, { "simulator" : false, "operatingSystemVersion" : "12.4 (21F79)", "interface" : "usb", "available" : true, "platform" : "com.apple.platform.macosx", "modelCode" : "MacBookPro14,3", "identifier" : "F38049F4-C303-551B-91D5-2D5DBFD5335C", "architecture" : "x86_64h", "modelUTI" : "com.apple.macbookpro-15-retina-touchid-2017", "modelName" : "MacBook Pro", "name" : "My Mac" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV11,1", "identifier" : "E3BF3610-C89B-4B46-B417-9300513630D5", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k-2nd", "modelName" : "Apple TV 4K (2nd generation)", "name" : "Apple TV 4K (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,3", "identifier" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-max-1", "modelName" : "iPhone 13 Pro Max", "name" : "iPhone 13 Pro Max" }, "modelCode" : "Watch6,2", "identifier" : "84F7E819-BB5B-4028-AD83-893DBD247496", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series6-1", "modelName" : "Apple Watch Series 6 - 44mm", "name" : "Apple Watch Series 6 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,5", "identifier" : "36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-plus-2", "modelName" : "iPhone 8 Plus", "name" : "iPhone 8 Plus" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,10", "identifier" : "FCF19064-75CE-4150-9F89-69E75E07058B", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-12point9-5th-1", "modelName" : "iPad Pro (12.9-inch) (5th generation)", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad12,2", "identifier" : "9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-9-wwan-1", "modelName" : "iPad (9th generation)", "name" : "iPad (9th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,6", "identifier" : "34D906FB-47FF-43C1-BE8D-9536637F7208", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-se3-1", "modelName" : "iPhone SE (3rd generation)", "name" : "iPhone SE (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,3", "identifier" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-max-1", "modelName" : "iPhone 13 Pro Max", "name" : "iPhone 13 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV5,3", "identifier" : "29A9A3DB-DC7A-4C4C-8622-58BAF0C88594", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4", "modelName" : "Apple TV", "name" : "Apple TV" }, { "modelCode" : "iPhone9,2", "simulator" : false, "modelName" : "iPhone 7 Plus (Model 1661, 1784, 1785, 1786)", "error" : { "code" : -13, "failureReason" : "", "underlyingErrors" : [ { "code" : 4, "failureReason" : "", "description" : "Mac’s iPhone is locked.", "recoverySuggestion" : "To use Mac’s iPhone with Xcode, unlock it.", "domain" : "DVTDeviceIneligibilityErrorDomain" } ], "description" : "Mac’s iPhone is not connected", "recoverySuggestion" : "Xcode will continue when Mac’s iPhone is connected.", "domain" : "com.apple.platform.iphoneos" }, "operatingSystemVersion" : "15.3.1 (19D52)", "identifier" : "b566dc22c37bd0a23416b5e05919ba43a4adf8d5", "platform" : "com.apple.platform.iphoneos", "architecture" : "arm64", "interface" : "usb", "available" : false, "name" : "Mac’s iPhone", "modelUTI" : "com.apple.iphone-7-plus-4" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,4", "identifier" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-max-1", "modelName" : "iPhone 12 Pro Max", "name" : "iPhone 12 Pro Max" }, "modelCode" : "Watch5,4", "identifier" : "53166BB9-0CE0-4BDA-AB54-91E7297A44BA", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,3", "identifier" : "508B61A7-1F54-4980-8BF3-F32773902C26", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-1", "modelName" : "iPhone 12 Pro", "name" : "iPhone 12 Pro" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,2", "identifier" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-1", "modelName" : "iPhone 13 Pro", "name" : "iPhone 13 Pro" }, "modelCode" : "Watch6,1", "identifier" : "803F5C88-7737-4F34-89DD-9FDD6132BD7B", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series6-1", "modelName" : "Apple Watch Series 6 - 40mm", "name" : "Apple Watch Series 6 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV11,1", "identifier" : "9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k-2nd", "modelName" : "Apple TV 4K (at 1080p) (2nd generation)", "name" : "Apple TV 4K (at 1080p) (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPod9,1", "identifier" : "63502517-17F2-4861-8383-61FEF8252898", "architecture" : "x86_64", "modelUTI" : "com.apple.ipod-touch-7-2", "modelName" : "iPod touch (7th generation)", "name" : "iPod touch (7th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,2", "identifier" : "95DE544A-EA06-453F-9A77-E0518F5CDC9A", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-1", "modelName" : "iPhone 12", "name" : "iPhone 12" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad6,4", "identifier" : "2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "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" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,5", "identifier" : "A9234744-9C64-4FB1-8DA8-6149EB467F7A", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-11-3rd-1", "modelName" : "iPad Pro (11-inch) (3rd generation)", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,2", "identifier" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-1", "modelName" : "iPhone 13 Pro", "name" : "iPhone 13 Pro" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,5", "identifier" : "49863B6C-F450-4AC1-AB08-89CCEC48D177", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-max-1", "modelName" : "iPhone 11 Pro Max", "name" : "iPhone 11 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,17", "identifier" : "EF23C260-F341-42C0-AF36-3FA5664E94C4", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-air5-1", "modelName" : "iPad Air (5th generation)", "name" : "iPad Air (5th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,4", "identifier" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-max-1", "modelName" : "iPhone 12 Pro Max", "name" : "iPhone 12 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,4", "identifier" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-mini-1", "modelName" : "iPhone 13 mini", "name" : "iPhone 13 mini" }, "modelCode" : "Watch6,6", "identifier" : "E36999FF-0902-4F6C-BC62-22B09F980E03", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series7-1", "modelName" : "Apple Watch Series 7 - 41mm", "name" : "Apple Watch Series 7 - 41mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,4", "identifier" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-mini-1", "modelName" : "iPhone 13 mini", "name" : "iPhone 13 mini" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,4", "identifier" : "5C9C6B50-E57C-4F88-9425-AD2636D925BA", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-2", "modelName" : "iPhone 8", "name" : "iPhone 8" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,5", "identifier" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-1", "modelName" : "iPhone 13", "name" : "iPhone 13" }, "modelCode" : "Watch6,9", "identifier" : "69865D44-17BA-4BA4-858A-D23C75B81D45", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series7-1", "modelName" : "Apple Watch Series 7 - 45mm", "name" : "Apple Watch Series 7 - 45mm" } ] 2022-06-23 09:09:14.529 xcdevice[2562:24661] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-06-23 09:09:14.529 xcdevice[2562:24661] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore [ +15 ms] Error: Mac’s iPhone is not connected. Xcode will continue when Mac’s iPhone is connected. (code -13) [ +7 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. [ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update. [ +6 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. [ +91 ms] Multiple devices found: [ +60 ms] macOS (desktop) • macos • darwin-x64 • macOS 12.4 21F79 darwin-x64 [ ] Chrome (web) • chrome • web-javascript • Google Chrome 102.0.5005.115 [ ] [1]: macOS (macos) [ ] [2]: Chrome (chrome) [ +1 ms] Please choose one (To quit, press "q/Q") [ ] : [+4283 ms] Q [ +12 ms] "flutter run" took 7,791ms. [ +31 ms] #0 throwToolExit (package:flutter_tools/src/base/common.dart:10:3) #1 DeviceManager._chooseOneOfAvailableDevices (package:flutter_tools/src/device.dart:314:7) #2 DeviceManager.findTargetDevices (package:flutter_tools/src/device.dart:302:37) #3 FlutterCommand.findAllTargetDevices (package:flutter_tools/src/runner/flutter_command.dart:1378:28) #4 RunCommand.validateCommand (package:flutter_tools/src/commands/run.dart:482:15) #5 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:1298:5) #6 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1183:27) #7 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19) #8 CommandRunner.runCommand (package:args/command_runner.dart:209:13) #9 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:281:9) #10 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19) #11 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:229:5) #12 run.. (package:flutter_tools/runner.dart:62:9) #13 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19) #14 main (package:flutter_tools/executable.dart:94:3) [ +260 ms] ensureAnalyticsSent: 254ms [ +1 ms] Running shutdown hooks [ ] Shutdown hooks complete [ ] exiting with code 1 ```
alihassan143 commented 2 years ago

\ Run your application with flutter run --verbose "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/AC854052-6D44-4300-9A5A-D0CFD32292B2", "udid" : "AC854052-6D44-4300-9A5A-D0CFD32292B2", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A9D5B8A4-FD63-45D2-9DBA-D937009F1F71\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A9D5B8A4-FD63-45D2-9DBA-D937009F1F71", "udid" : "A9D5B8A4-FD63-45D2-9DBA-D937009F1F71", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ], "com.apple.CoreSimulator.SimRuntime.tvOS-15-4" : [ { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/29A9A3DB-DC7A-4C4C-8622-58BAF0C88594\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/29A9A3DB-DC7A-4C4C-8622-58BAF0C88594", "udid" : "29A9A3DB-DC7A-4C4C-8622-58BAF0C88594", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/E3BF3610-C89B-4B46-B417-9300513630D5\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/E3BF3610-C89B-4B46-B417-9300513630D5", "udid" : "E3BF3610-C89B-4B46-B417-9300513630D5", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-4K", "state" : "Shutdown", "name" : "Apple TV 4K (2nd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9C012872-43E0-4B95-AC9D-D28CB4BA0F49\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "udid" : "9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p) (2nd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-15-5" : [ { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/5C9C6B50-E57C-4F88-9425-AD2636D925BA\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/5C9C6B50-E57C-4F88-9425-AD2636D925BA", "udid" : "5C9C6B50-E57C-4F88-9425-AD2636D925BA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/36F29C59-7D90-4D4F-BA32-9B4F62FAA265\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "udid" : "36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "udid" : "B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/73489BB9-5136-4427-8031-1F20C807DA8F\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/73489BB9-5136-4427-8031-1F20C807DA8F", "udid" : "73489BB9-5136-4427-8031-1F20C807DA8F", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/49863B6C-F450-4AC1-AB08-89CCEC48D177\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/49863B6C-F450-4AC1-AB08-89CCEC48D177", "udid" : "49863B6C-F450-4AC1-AB08-89CCEC48D177", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E06CB64-2184-40CE-92DA-30FB367AD58C\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9E06CB64-2184-40CE-92DA-30FB367AD58C", "udid" : "9E06CB64-2184-40CE-92DA-30FB367AD58C", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini", "state" : "Shutdown", "name" : "iPhone 12 mini" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/95DE544A-EA06-453F-9A77-E0518F5CDC9A\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/95DE544A-EA06-453F-9A77-E0518F5CDC9A", "udid" : "95DE544A-EA06-453F-9A77-E0518F5CDC9A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12", "state" : "Shutdown", "name" : "iPhone 12" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/508B61A7-1F54-4980-8BF3-F32773902C26\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/508B61A7-1F54-4980-8BF3-F32773902C26", "udid" : "508B61A7-1F54-4980-8BF3-F32773902C26", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro", "state" : "Shutdown", "name" : "iPhone 12 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/114D8EE2-4FCA-4C52-AEFC-0A950B54620D\/data", "dataPathSize" : 4207304704, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "udid" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "isAvailable" : true, "logPathSize" : 958464, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max", "state" : "Shutdown", "name" : "iPhone 12 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/69D4AEB9-7871-44EA-8BCA-3F9169D51FA3\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "udid" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro", "state" : "Shutdown", "name" : "iPhone 13 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "udid" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro-Max", "state" : "Shutdown", "name" : "iPhone 13 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/807405E0-6BEB-40A1-ADE0-BFA83C88E240\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/807405E0-6BEB-40A1-ADE0-BFA83C88E240", "udid" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-mini", "state" : "Shutdown", "name" : "iPhone 13 mini" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A15EC128-EDD6-438D-85AD-C3FD48C04F67\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A15EC128-EDD6-438D-85AD-C3FD48C04F67", "udid" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13", "state" : "Shutdown", "name" : "iPhone 13" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/34D906FB-47FF-43C1-BE8D-9536637F7208\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/34D906FB-47FF-43C1-BE8D-9536637F7208", "udid" : "34D906FB-47FF-43C1-BE8D-9536637F7208", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE-3rd-generation", "state" : "Shutdown", "name" : "iPhone SE (3rd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/63502517-17F2-4861-8383-61FEF8252898\/data", "dataPathSize" : 220758016, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/63502517-17F2-4861-8383-61FEF8252898", "udid" : "63502517-17F2-4861-8383-61FEF8252898", "isAvailable" : true, "logPathSize" : 258048, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-", "state" : "Shutdown", "name" : "iPod touch (7th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/2A16F932-F09A-4BBC-B4DA-C10C732F0FB6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "udid" : "2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "udid" : "9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation", "state" : "Shutdown", "name" : "iPad (9th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A9234744-9C64-4FB1-8DA8-6149EB467F7A\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A9234744-9C64-4FB1-8DA8-6149EB467F7A", "udid" : "A9234744-9C64-4FB1-8DA8-6149EB467F7A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/FCF19064-75CE-4150-9F89-69E75E07058B\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/FCF19064-75CE-4150-9F89-69E75E07058B", "udid" : "FCF19064-75CE-4150-9F89-69E75E07058B", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/EF23C260-F341-42C0-AF36-3FA5664E94C4\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/EF23C260-F341-42C0-AF36-3FA5664E94C4", "udid" : "EF23C260-F341-42C0-AF36-3FA5664E94C4", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-5th-generation", "state" : "Shutdown", "name" : "iPad Air (5th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D2251EAB-1E91-4074-BCD3-8D1EE1AAF279\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "udid" : "D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-15-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/23B6F935-C26E-4805-98AB-50391A3D080F\/data", "dataPathSize" : 1695354880, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/23B6F935-C26E-4805-98AB-50391A3D080F", "udid" : "23B6F935-C26E-4805-98AB-50391A3D080F", "isAvailable" : false, "logPathSize" : 421888, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/3A4AF058-D274-4437-A34B-3D18FE0D3BF5\/data", "dataPathSize" : 912244736, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/3A4AF058-D274-4437-A34B-3D18FE0D3BF5", "udid" : "3A4AF058-D274-4437-A34B-3D18FE0D3BF5", "isAvailable" : false, "logPathSize" : 356352, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/3A005C87-FFAF-456D-83F3-0B4CA0086B93\/data", "dataPathSize" : 1149374464, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/3A005C87-FFAF-456D-83F3-0B4CA0086B93", "udid" : "3A005C87-FFAF-456D-83F3-0B4CA0086B93", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/E470EA7F-2AAE-40B4-AE15-2C82025145A9\/data", "dataPathSize" : 1056837632, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/E470EA7F-2AAE-40B4-AE15-2C82025145A9", "udid" : "E470EA7F-2AAE-40B4-AE15-2C82025145A9", "isAvailable" : false, "logPathSize" : 356352, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/89EAB2C3-C1FB-4B00-9EA6-77B7392B8363\/data", "dataPathSize" : 611545088, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/89EAB2C3-C1FB-4B00-9EA6-77B7392B8363", "udid" : "89EAB2C3-C1FB-4B00-9EA6-77B7392B8363", "isAvailable" : false, "logPathSize" : 339968, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/8485DE58-3E55-4863-A62D-0C7386E7BFE2\/data", "dataPathSize" : 483348480, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/8485DE58-3E55-4863-A62D-0C7386E7BFE2", "udid" : "8485DE58-3E55-4863-A62D-0C7386E7BFE2", "isAvailable" : false, "logPathSize" : 339968, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-", "state" : "Shutdown", "name" : "iPhone SE (2nd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/65EE8E4A-E94A-4B85-821E-08CB34B458A0\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/65EE8E4A-E94A-4B85-821E-08CB34B458A0", "udid" : "65EE8E4A-E94A-4B85-821E-08CB34B458A0", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini", "state" : "Shutdown", "name" : "iPhone 12 mini" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/F8625EBE-1FAD-411B-A92F-A5C9ABA825D5\/data", "dataPathSize" : 1164292096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/F8625EBE-1FAD-411B-A92F-A5C9ABA825D5", "udid" : "F8625EBE-1FAD-411B-A92F-A5C9ABA825D5", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12", "state" : "Shutdown", "name" : "iPhone 12" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D40714B4-515C-4CD1-806A-54DF90BFFBFA\/data", "dataPathSize" : 141942784, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D40714B4-515C-4CD1-806A-54DF90BFFBFA", "udid" : "D40714B4-515C-4CD1-806A-54DF90BFFBFA", "isAvailable" : false, "logPathSize" : 49152, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro", "state" : "Shutdown", "name" : "iPhone 12 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7\/data", "dataPathSize" : 11690598400, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7", "udid" : "FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7", "isAvailable" : false, "logPathSize" : 3616768, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max", "state" : "Shutdown", "name" : "iPhone 12 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/94A3D14F-1C2B-46F8-83BD-9255DC0DFC31\/data", "dataPathSize" : 104562688, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/94A3D14F-1C2B-46F8-83BD-9255DC0DFC31", "udid" : "94A3D14F-1C2B-46F8-83BD-9255DC0DFC31", "isAvailable" : false, "logPathSize" : 20480, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro", "state" : "Shutdown", "name" : "iPhone 13 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/C145D341-67C3-4962-8D1E-EE816717CF72\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/C145D341-67C3-4962-8D1E-EE816717CF72", "udid" : "C145D341-67C3-4962-8D1E-EE816717CF72", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro-Max", "state" : "Shutdown", "name" : "iPhone 13 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/37DDB08E-D5AD-4A58-BF27-6CD57066BD20\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/37DDB08E-D5AD-4A58-BF27-6CD57066BD20", "udid" : "37DDB08E-D5AD-4A58-BF27-6CD57066BD20", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-mini", "state" : "Shutdown", "name" : "iPhone 13 mini" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/140C2BE1-A28C-4ACA-BEBC-768B8BC0F140\/data", "dataPathSize" : 1162850304, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/140C2BE1-A28C-4ACA-BEBC-768B8BC0F140", "udid" : "140C2BE1-A28C-4ACA-BEBC-768B8BC0F140", "isAvailable" : false, "logPathSize" : 376832, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13", "state" : "Shutdown", "name" : "iPhone 13" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/CB40EB24-E371-466F-85C0-561B705E846F\/data", "dataPathSize" : 762023936, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/CB40EB24-E371-466F-85C0-561B705E846F", "udid" : "CB40EB24-E371-466F-85C0-561B705E846F", "isAvailable" : false, "logPathSize" : 270336, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-", "state" : "Shutdown", "name" : "iPod touch (7th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/4B2ED8A6-A508-44CF-B678-2B4C92B96999\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/4B2ED8A6-A508-44CF-B678-2B4C92B96999", "udid" : "4B2ED8A6-A508-44CF-B678-2B4C92B96999", "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\/mac\/Library\/Developer\/CoreSimulator\/Devices\/94D84564-D468-4C8A-904C-F14889AC5AD4\/data", "dataPathSize" : 1240473600, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/94D84564-D468-4C8A-904C-F14889AC5AD4", "udid" : "94D84564-D468-4C8A-904C-F14889AC5AD4", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation", "state" : "Shutdown", "name" : "iPad (9th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/0B0A91C5-2796-4422-901C-E2F7E722744E\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/0B0A91C5-2796-4422-901C-E2F7E722744E", "udid" : "0B0A91C5-2796-4422-901C-E2F7E722744E", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-", "state" : "Shutdown", "name" : "iPad Air (4th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/88154A72-204C-4393-A3A8-56CE0B788E3F\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/88154A72-204C-4393-A3A8-56CE0B788E3F", "udid" : "88154A72-204C-4393-A3A8-56CE0B788E3F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/DC691468-096D-499F-B3DD-F5B7FABB01CF\/data", "dataPathSize" : 1102725120, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/DC691468-096D-499F-B3DD-F5B7FABB01CF", "udid" : "DC691468-096D-499F-B3DD-F5B7FABB01CF", "isAvailable" : false, "logPathSize" : 344064, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/F96EC4C4-7FC6-436D-A203-A95B3CC11055\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/F96EC4C4-7FC6-436D-A203-A95B3CC11055", "udid" : "F96EC4C4-7FC6-436D-A203-A95B3CC11055", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ] } } [+2581 ms] [ { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,3", "identifier" : "508B61A7-1F54-4980-8BF3-F32773902C26", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-1", "modelName" : "iPhone 12 Pro", "name" : "iPhone 12 Pro" }, "modelCode" : "Watch5,3", "identifier" : "6C1344D2-D4E1-4DCD-B6E3-C963879E7E96", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 40mm", "name" : "Apple Watch Series 5 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,3", "identifier" : "73489BB9-5136-4427-8031-1F20C807DA8F", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-1", "modelName" : "iPhone 11 Pro", "name" : "iPhone 11 Pro" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,5", "identifier" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-1", "modelName" : "iPhone 13", "name" : "iPhone 13" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,1", "identifier" : "9E06CB64-2184-40CE-92DA-30FB367AD58C", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-mini-1", "modelName" : "iPhone 12 mini", "name" : "iPhone 12 mini" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad14,1", "identifier" : "D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-mini6-1", "modelName" : "iPad mini (6th generation)", "name" : "iPad mini (6th generation)" }, { "simulator" : false, "operatingSystemVersion" : "12.4 (21F79)", "interface" : "usb", "available" : true, "platform" : "com.apple.platform.macosx", "modelCode" : "MacBookPro14,3", "identifier" : "F38049F4-C303-551B-91D5-2D5DBFD5335C", "architecture" : "x86_64h", "modelUTI" : "com.apple.macbookpro-15-retina-touchid-2017", "modelName" : "MacBook Pro", "name" : "My Mac" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV11,1", "identifier" : "E3BF3610-C89B-4B46-B417-9300513630D5", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k-2nd", "modelName" : "Apple TV 4K (2nd generation)", "name" : "Apple TV 4K (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,3", "identifier" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-max-1", "modelName" : "iPhone 13 Pro Max", "name" : "iPhone 13 Pro Max" }, "modelCode" : "Watch6,2", "identifier" : "84F7E819-BB5B-4028-AD83-893DBD247496", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series6-1", "modelName" : "Apple Watch Series 6 - 44mm", "name" : "Apple Watch Series 6 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,5", "identifier" : "36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-plus-2", "modelName" : "iPhone 8 Plus", "name" : "iPhone 8 Plus" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,10", "identifier" : "FCF19064-75CE-4150-9F89-69E75E07058B", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-12point9-5th-1", "modelName" : "iPad Pro (12.9-inch) (5th generation)", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad12,2", "identifier" : "9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-9-wwan-1", "modelName" : "iPad (9th generation)", "name" : "iPad (9th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,6", "identifier" : "34D906FB-47FF-43C1-BE8D-9536637F7208", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-se3-1", "modelName" : "iPhone SE (3rd generation)", "name" : "iPhone SE (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,3", "identifier" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-max-1", "modelName" : "iPhone 13 Pro Max", "name" : "iPhone 13 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV5,3", "identifier" : "29A9A3DB-DC7A-4C4C-8622-58BAF0C88594", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4", "modelName" : "Apple TV", "name" : "Apple TV" }, { "modelCode" : "iPhone9,2", "simulator" : false, "modelName" : "iPhone 7 Plus (Model 1661, 1784, 1785, 1786)", "error" : { "code" : -13, "failureReason" : "", "underlyingErrors" : [ { "code" : 4, "failureReason" : "", "description" : "Mac’s iPhone is locked.", "recoverySuggestion" : "To use Mac’s iPhone with Xcode, unlock it.", "domain" : "DVTDeviceIneligibilityErrorDomain" } ], "description" : "Mac’s iPhone is not connected", "recoverySuggestion" : "Xcode will continue when Mac’s iPhone is connected.", "domain" : "com.apple.platform.iphoneos" }, "operatingSystemVersion" : "15.3.1 (19D52)", "identifier" : "b566dc22c37bd0a23416b5e05919ba43a4adf8d5", "platform" : "com.apple.platform.iphoneos", "architecture" : "arm64", "interface" : "usb", "available" : false, "name" : "Mac’s iPhone", "modelUTI" : "com.apple.iphone-7-plus-4" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,4", "identifier" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-max-1", "modelName" : "iPhone 12 Pro Max", "name" : "iPhone 12 Pro Max" }, "modelCode" : "Watch5,4", "identifier" : "53166BB9-0CE0-4BDA-AB54-91E7297A44BA", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,3", "identifier" : "508B61A7-1F54-4980-8BF3-F32773902C26", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-1", "modelName" : "iPhone 12 Pro", "name" : "iPhone 12 Pro" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,2", "identifier" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-1", "modelName" : "iPhone 13 Pro", "name" : "iPhone 13 Pro" }, "modelCode" : "Watch6,1", "identifier" : "803F5C88-7737-4F34-89DD-9FDD6132BD7B", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series6-1", "modelName" : "Apple Watch Series 6 - 40mm", "name" : "Apple Watch Series 6 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV11,1", "identifier" : "9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k-2nd", "modelName" : "Apple TV 4K (at 1080p) (2nd generation)", "name" : "Apple TV 4K (at 1080p) (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPod9,1", "identifier" : "63502517-17F2-4861-8383-61FEF8252898", "architecture" : "x86_64", "modelUTI" : "com.apple.ipod-touch-7-2", "modelName" : "iPod touch (7th generation)", "name" : "iPod touch (7th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,2", "identifier" : "95DE544A-EA06-453F-9A77-E0518F5CDC9A", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-1", "modelName" : "iPhone 12", "name" : "iPhone 12" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad6,4", "identifier" : "2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "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" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,5", "identifier" : "A9234744-9C64-4FB1-8DA8-6149EB467F7A", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-11-3rd-1", "modelName" : "iPad Pro (11-inch) (3rd generation)", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,2", "identifier" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-1", "modelName" : "iPhone 13 Pro", "name" : "iPhone 13 Pro" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,5", "identifier" : "49863B6C-F450-4AC1-AB08-89CCEC48D177", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-max-1", "modelName" : "iPhone 11 Pro Max", "name" : "iPhone 11 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,17", "identifier" : "EF23C260-F341-42C0-AF36-3FA5664E94C4", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-air5-1", "modelName" : "iPad Air (5th generation)", "name" : "iPad Air (5th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,4", "identifier" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-max-1", "modelName" : "iPhone 12 Pro Max", "name" : "iPhone 12 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,4", "identifier" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-mini-1", "modelName" : "iPhone 13 mini", "name" : "iPhone 13 mini" }, "modelCode" : "Watch6,6", "identifier" : "E36999FF-0902-4F6C-BC62-22B09F980E03", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series7-1", "modelName" : "Apple Watch Series 7 - 41mm", "name" : "Apple Watch Series 7 - 41mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,4", "identifier" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-mini-1", "modelName" : "iPhone 13 mini", "name" : "iPhone 13 mini" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,4", "identifier" : "5C9C6B50-E57C-4F88-9425-AD2636D925BA", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-2", "modelName" : "iPhone 8", "name" : "iPhone 8" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,5", "identifier" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-1", "modelName" : "iPhone 13", "name" : "iPhone 13" }, "modelCode" : "Watch6,9", "identifier" : "69865D44-17BA-4BA4-858A-D23C75B81D45", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series7-1", "modelName" : "Apple Watch Series 7 - 45mm", "name" : "Apple Watch Series 7 - 45mm" } ]

                2022-06-23 09:09:14.529 xcdevice[2562:24661] Requested but did not find extension point with identifier
                Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in
                com.apple.dt.IDEWatchSupportCore
                2022-06-23 09:09:14.529 xcdevice[2562:24661] Requested but did not find extension point with identifier
                Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS
                of plug-in com.apple.dt.IDEWatchSupportCore

[ +15 ms] Error: Mac’s iPhone is not connected. Xcode will continue when Mac’s iPhone is connected. (code -13) [ +7 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. [ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update. [ +6 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. [ +91 ms] Multiple devices found: [ +60 ms] macOS (desktop) • macos • darwin-x64 • macOS 12.4 21F79 darwin-x64 [ ] Chrome (web) • chrome • web-javascript • Google Chrome 102.0.5005.115

[ +1 ms] Please choose one (To quit, press "q/Q") [ ] : [+4283 ms] Q [ +12 ms] "flutter run" took 7,791ms. [ +31 ms]

0 throwToolExit (package:flutter_tools/src/base/common.dart:10:3)

       #1      DeviceManager._chooseOneOfAvailableDevices (package:flutter_tools/src/device.dart:314:7)
       <asynchronous suspension>
       #2      DeviceManager.findTargetDevices (package:flutter_tools/src/device.dart:302:37)
       <asynchronous suspension>
       #3      FlutterCommand.findAllTargetDevices (package:flutter_tools/src/runner/flutter_command.dart:1378:28)
       <asynchronous suspension>
       #4      RunCommand.validateCommand (package:flutter_tools/src/commands/run.dart:482:15)
       <asynchronous suspension>
       #5      FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:1298:5)
       <asynchronous suspension>
       #6      FlutterCommand.run.<anonymous closure> (package:flutter_tools/src/runner/flutter_command.dart:1183:27)
       <asynchronous suspension>
       #7      AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:150:19)
       <asynchronous suspension>
       #8      CommandRunner.runCommand (package:args/command_runner.dart:209:13)
       <asynchronous suspension>
       #9      FlutterCommandRunner.runCommand.<anonymous closure> (package:flutter_tools/src/runner/flutter_command_runner.dart:281:9)
       <asynchronous suspension>
       #10     AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:150:19)
       <asynchronous suspension>
       #11     FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:229:5)
       <asynchronous suspension>
       #12     run.<anonymous closure>.<anonymous closure> (package:flutter_tools/runner.dart:62:9)
       <asynchronous suspension>
       #13     AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:150:19)
       <asynchronous suspension>
       #14     main (package:flutter_tools/executable.dart:94:3)
       <asynchronous suspension>

[ +260 ms] ensureAnalyticsSent: 254ms [ +1 ms] Running shutdown hooks [ ] Shutdown hooks complete [ ] exiting with code 1

alihassan143 commented 2 years ago

`flutter doctor -v [✓] Flutter (Channel stable, 3.0.2, on macOS 12.4 21F79 darwin-x64, locale en-PK) • Flutter version 3.0.2 at /Users/mac/development/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision cd41fdd495 (2 weeks ago), 2022-06-08 09:52:13 -0700 • Engine revision f15f824b57 • Dart version 2.17.3 • DevTools version 2.12.2

[✓] Android toolchain - develop for Android devices (Android SDK version 32.1.0-rc1) • Android SDK at /Users/mac/Library/Android/sdk • Platform android-32, build-tools 32.1.0-rc1 • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 13.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • CocoaPods version 1.11.3

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

[✓] Android Studio (version 2021.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840)

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

[✓] Connected device (2 available) • macOS (desktop) • macos • darwin-x64 • macOS 12.4 21F79 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 102.0.5005.115 ! Error: Mac’s iPhone is not connected. Xcode will continue when Mac’s iPhone is connected. (code -13)

[✓] HTTP Host Availability • All required HTTP hosts are available`

huycozy commented 2 years ago

Hi @alihassan143

When opening an issue, please try to format the content for better readability.

And from what I can see, the issue is related to a 3rd party plugin rather than to Flutter itself when using GetCupertinoApp that comes from GetX package. So please open the issue in the dedicated repository.

Closing, as this isn't an issue with Flutter itself. If you disagree, please write in the comments, providing your flutter doctor -v, your flutter run -v, your pubspec.yaml, a completed and minimal reproducible code sample that does not use 3rd party plugins and I will reopen it.

Thank you!

alihassan143 commented 2 years ago

@huycozy if i use the simple CupertinoApp it also does the same

alihassan143 commented 2 years ago
flutter doctor -v ```bash [✓] Flutter (Channel stable, 3.0.3, on macOS 12.4 21F79 darwin-x64, locale en-PK) • Flutter version 3.0.3 at /Users/mac/development/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision 676cefaaff (17 hours ago), 2022-06-22 11:34:49 -0700 • Engine revision ffe7b86a1e • Dart version 2.17.5 • DevTools version 2.12.2 [✓] Android toolchain - develop for Android devices (Android SDK version 32.1.0-rc1) • Android SDK at /Users/mac/Library/Android/sdk • Platform android-32, build-tools 32.1.0-rc1 • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 13.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • CocoaPods version 1.11.3 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2021.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) [✓] VS Code (version 1.68.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.42.0 [✓] Connected device (2 available) • macOS (desktop) • macos • darwin-x64 • macOS 12.4 21F79 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 102.0.5005.115 ! Error: Mac’s iPhone is not connected. Xcode will continue when Mac’s iPhone is connected. (code -13) [✓] HTTP Host Availability. ```
flutter run -v ```bash { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/E3BF3610-C89B-4B46-B417-9300513630D5\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/E3BF3610-C89B-4B46-B417-9300513630D5", "udid" : "E3BF3610-C89B-4B46-B417-9300513630D5", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-4K", "state" : "Shutdown", "name" : "Apple TV 4K (2nd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9C012872-43E0-4B95-AC9D-D28CB4BA0F49\/data", "dataPathSize" : 0, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "udid" : "9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p) (2nd generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-15-5" : [ { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/5C9C6B50-E57C-4F88-9425-AD2636D925BA\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/5C9C6B50-E57C-4F88-9425-AD2636D925BA", "udid" : "5C9C6B50-E57C-4F88-9425-AD2636D925BA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/36F29C59-7D90-4D4F-BA32-9B4F62FAA265\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "udid" : "36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "udid" : "B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/73489BB9-5136-4427-8031-1F20C807DA8F\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/73489BB9-5136-4427-8031-1F20C807DA8F", "udid" : "73489BB9-5136-4427-8031-1F20C807DA8F", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/49863B6C-F450-4AC1-AB08-89CCEC48D177\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/49863B6C-F450-4AC1-AB08-89CCEC48D177", "udid" : "49863B6C-F450-4AC1-AB08-89CCEC48D177", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E06CB64-2184-40CE-92DA-30FB367AD58C\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9E06CB64-2184-40CE-92DA-30FB367AD58C", "udid" : "9E06CB64-2184-40CE-92DA-30FB367AD58C", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini", "state" : "Shutdown", "name" : "iPhone 12 mini" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/95DE544A-EA06-453F-9A77-E0518F5CDC9A\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/95DE544A-EA06-453F-9A77-E0518F5CDC9A", "udid" : "95DE544A-EA06-453F-9A77-E0518F5CDC9A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12", "state" : "Shutdown", "name" : "iPhone 12" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/508B61A7-1F54-4980-8BF3-F32773902C26\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/508B61A7-1F54-4980-8BF3-F32773902C26", "udid" : "508B61A7-1F54-4980-8BF3-F32773902C26", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro", "state" : "Shutdown", "name" : "iPhone 12 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/114D8EE2-4FCA-4C52-AEFC-0A950B54620D\/data", "dataPathSize" : 4207304704, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "udid" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "isAvailable" : true, "logPathSize" : 958464, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max", "state" : "Shutdown", "name" : "iPhone 12 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/69D4AEB9-7871-44EA-8BCA-3F9169D51FA3\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "udid" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro", "state" : "Shutdown", "name" : "iPhone 13 Pro" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "udid" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro-Max", "state" : "Shutdown", "name" : "iPhone 13 Pro Max" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/807405E0-6BEB-40A1-ADE0-BFA83C88E240\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/807405E0-6BEB-40A1-ADE0-BFA83C88E240", "udid" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-mini", "state" : "Shutdown", "name" : "iPhone 13 mini" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A15EC128-EDD6-438D-85AD-C3FD48C04F67\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A15EC128-EDD6-438D-85AD-C3FD48C04F67", "udid" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13", "state" : "Shutdown", "name" : "iPhone 13" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/34D906FB-47FF-43C1-BE8D-9536637F7208\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/34D906FB-47FF-43C1-BE8D-9536637F7208", "udid" : "34D906FB-47FF-43C1-BE8D-9536637F7208", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE-3rd-generation", "state" : "Shutdown", "name" : "iPhone SE (3rd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/63502517-17F2-4861-8383-61FEF8252898\/data", "dataPathSize" : 220758016, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/63502517-17F2-4861-8383-61FEF8252898", "udid" : "63502517-17F2-4861-8383-61FEF8252898", "isAvailable" : true, "logPathSize" : 258048, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-", "state" : "Shutdown", "name" : "iPod touch (7th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/2A16F932-F09A-4BBC-B4DA-C10C732F0FB6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "udid" : "2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "udid" : "9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation", "state" : "Shutdown", "name" : "iPad (9th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A9234744-9C64-4FB1-8DA8-6149EB467F7A\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A9234744-9C64-4FB1-8DA8-6149EB467F7A", "udid" : "A9234744-9C64-4FB1-8DA8-6149EB467F7A", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/FCF19064-75CE-4150-9F89-69E75E07058B\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/FCF19064-75CE-4150-9F89-69E75E07058B", "udid" : "FCF19064-75CE-4150-9F89-69E75E07058B", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/EF23C260-F341-42C0-AF36-3FA5664E94C4\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/EF23C260-F341-42C0-AF36-3FA5664E94C4", "udid" : "EF23C260-F341-42C0-AF36-3FA5664E94C4", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-5th-generation", "state" : "Shutdown", "name" : "iPad Air (5th generation)" }, { "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D2251EAB-1E91-4074-BCD3-8D1EE1AAF279\/data", "dataPathSize" : 13316096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "udid" : "D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ], "com.apple.CoreSimulator.SimRuntime.iOS-15-2" : [ { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/23B6F935-C26E-4805-98AB-50391A3D080F\/data", "dataPathSize" : 1695354880, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/23B6F935-C26E-4805-98AB-50391A3D080F", "udid" : "23B6F935-C26E-4805-98AB-50391A3D080F", "isAvailable" : false, "logPathSize" : 421888, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/3A4AF058-D274-4437-A34B-3D18FE0D3BF5\/data", "dataPathSize" : 912244736, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/3A4AF058-D274-4437-A34B-3D18FE0D3BF5", "udid" : "3A4AF058-D274-4437-A34B-3D18FE0D3BF5", "isAvailable" : false, "logPathSize" : 356352, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/3A005C87-FFAF-456D-83F3-0B4CA0086B93\/data", "dataPathSize" : 1149374464, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/3A005C87-FFAF-456D-83F3-0B4CA0086B93", "udid" : "3A005C87-FFAF-456D-83F3-0B4CA0086B93", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/E470EA7F-2AAE-40B4-AE15-2C82025145A9\/data", "dataPathSize" : 1056837632, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/E470EA7F-2AAE-40B4-AE15-2C82025145A9", "udid" : "E470EA7F-2AAE-40B4-AE15-2C82025145A9", "isAvailable" : false, "logPathSize" : 356352, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/89EAB2C3-C1FB-4B00-9EA6-77B7392B8363\/data", "dataPathSize" : 611545088, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/89EAB2C3-C1FB-4B00-9EA6-77B7392B8363", "udid" : "89EAB2C3-C1FB-4B00-9EA6-77B7392B8363", "isAvailable" : false, "logPathSize" : 339968, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/8485DE58-3E55-4863-A62D-0C7386E7BFE2\/data", "dataPathSize" : 483348480, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/8485DE58-3E55-4863-A62D-0C7386E7BFE2", "udid" : "8485DE58-3E55-4863-A62D-0C7386E7BFE2", "isAvailable" : false, "logPathSize" : 339968, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-", "state" : "Shutdown", "name" : "iPhone SE (2nd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/65EE8E4A-E94A-4B85-821E-08CB34B458A0\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/65EE8E4A-E94A-4B85-821E-08CB34B458A0", "udid" : "65EE8E4A-E94A-4B85-821E-08CB34B458A0", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini", "state" : "Shutdown", "name" : "iPhone 12 mini" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/F8625EBE-1FAD-411B-A92F-A5C9ABA825D5\/data", "dataPathSize" : 1164292096, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/F8625EBE-1FAD-411B-A92F-A5C9ABA825D5", "udid" : "F8625EBE-1FAD-411B-A92F-A5C9ABA825D5", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12", "state" : "Shutdown", "name" : "iPhone 12" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D40714B4-515C-4CD1-806A-54DF90BFFBFA\/data", "dataPathSize" : 141942784, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D40714B4-515C-4CD1-806A-54DF90BFFBFA", "udid" : "D40714B4-515C-4CD1-806A-54DF90BFFBFA", "isAvailable" : false, "logPathSize" : 49152, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro", "state" : "Shutdown", "name" : "iPhone 12 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7\/data", "dataPathSize" : 11690598400, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7", "udid" : "FD4C0748-564D-4AAF-A52B-22DAB6CFFEF7", "isAvailable" : false, "logPathSize" : 3616768, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max", "state" : "Shutdown", "name" : "iPhone 12 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/94A3D14F-1C2B-46F8-83BD-9255DC0DFC31\/data", "dataPathSize" : 104562688, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/94A3D14F-1C2B-46F8-83BD-9255DC0DFC31", "udid" : "94A3D14F-1C2B-46F8-83BD-9255DC0DFC31", "isAvailable" : false, "logPathSize" : 20480, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro", "state" : "Shutdown", "name" : "iPhone 13 Pro" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/C145D341-67C3-4962-8D1E-EE816717CF72\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/C145D341-67C3-4962-8D1E-EE816717CF72", "udid" : "C145D341-67C3-4962-8D1E-EE816717CF72", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro-Max", "state" : "Shutdown", "name" : "iPhone 13 Pro Max" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/37DDB08E-D5AD-4A58-BF27-6CD57066BD20\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/37DDB08E-D5AD-4A58-BF27-6CD57066BD20", "udid" : "37DDB08E-D5AD-4A58-BF27-6CD57066BD20", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13-mini", "state" : "Shutdown", "name" : "iPhone 13 mini" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/140C2BE1-A28C-4ACA-BEBC-768B8BC0F140\/data", "dataPathSize" : 1162850304, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/140C2BE1-A28C-4ACA-BEBC-768B8BC0F140", "udid" : "140C2BE1-A28C-4ACA-BEBC-768B8BC0F140", "isAvailable" : false, "logPathSize" : 376832, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-13", "state" : "Shutdown", "name" : "iPhone 13" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/CB40EB24-E371-466F-85C0-561B705E846F\/data", "dataPathSize" : 762023936, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/CB40EB24-E371-466F-85C0-561B705E846F", "udid" : "CB40EB24-E371-466F-85C0-561B705E846F", "isAvailable" : false, "logPathSize" : 270336, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-", "state" : "Shutdown", "name" : "iPod touch (7th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/4B2ED8A6-A508-44CF-B678-2B4C92B96999\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/4B2ED8A6-A508-44CF-B678-2B4C92B96999", "udid" : "4B2ED8A6-A508-44CF-B678-2B4C92B96999", "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\/mac\/Library\/Developer\/CoreSimulator\/Devices\/94D84564-D468-4C8A-904C-F14889AC5AD4\/data", "dataPathSize" : 1240473600, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/94D84564-D468-4C8A-904C-F14889AC5AD4", "udid" : "94D84564-D468-4C8A-904C-F14889AC5AD4", "isAvailable" : false, "logPathSize" : 360448, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation", "state" : "Shutdown", "name" : "iPad (9th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/0B0A91C5-2796-4422-901C-E2F7E722744E\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/0B0A91C5-2796-4422-901C-E2F7E722744E", "udid" : "0B0A91C5-2796-4422-901C-E2F7E722744E", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-", "state" : "Shutdown", "name" : "iPad Air (4th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/88154A72-204C-4393-A3A8-56CE0B788E3F\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/88154A72-204C-4393-A3A8-56CE0B788E3F", "udid" : "88154A72-204C-4393-A3A8-56CE0B788E3F", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/DC691468-096D-499F-B3DD-F5B7FABB01CF\/data", "dataPathSize" : 1102725120, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/DC691468-096D-499F-B3DD-F5B7FABB01CF", "udid" : "DC691468-096D-499F-B3DD-F5B7FABB01CF", "isAvailable" : false, "logPathSize" : 344064, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "availabilityError" : "runtime profile not found", "dataPath" : "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/F96EC4C4-7FC6-436D-A203-A95B3CC11055\/data", "dataPathSize" : 13312000, "logPath" : "\/Users\/mac\/Library\/Logs\/CoreSimulator\/F96EC4C4-7FC6-436D-A203-A95B3CC11055", "udid" : "F96EC4C4-7FC6-436D-A203-A95B3CC11055", "isAvailable" : false, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation", "state" : "Shutdown", "name" : "iPad mini (6th generation)" } ] } } [+2930 ms] [ { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,3", "identifier" : "508B61A7-1F54-4980-8BF3-F32773902C26", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-1", "modelName" : "iPhone 12 Pro", "name" : "iPhone 12 Pro" }, "modelCode" : "Watch5,3", "identifier" : "6C1344D2-D4E1-4DCD-B6E3-C963879E7E96", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 40mm", "name" : "Apple Watch Series 5 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,3", "identifier" : "73489BB9-5136-4427-8031-1F20C807DA8F", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-1", "modelName" : "iPhone 11 Pro", "name" : "iPhone 11 Pro" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,5", "identifier" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-1", "modelName" : "iPhone 13", "name" : "iPhone 13" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,1", "identifier" : "9E06CB64-2184-40CE-92DA-30FB367AD58C", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-mini-1", "modelName" : "iPhone 12 mini", "name" : "iPhone 12 mini" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad14,1", "identifier" : "D2251EAB-1E91-4074-BCD3-8D1EE1AAF279", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-mini6-1", "modelName" : "iPad mini (6th generation)", "name" : "iPad mini (6th generation)" }, { "simulator" : false, "operatingSystemVersion" : "12.4 (21F79)", "interface" : "usb", "available" : true, "platform" : "com.apple.platform.macosx", "modelCode" : "MacBookPro14,3", "identifier" : "F38049F4-C303-551B-91D5-2D5DBFD5335C", "architecture" : "x86_64h", "modelUTI" : "com.apple.macbookpro-15-retina-touchid-2017", "modelName" : "MacBook Pro", "name" : "My Mac" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV11,1", "identifier" : "E3BF3610-C89B-4B46-B417-9300513630D5", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k-2nd", "modelName" : "Apple TV 4K (2nd generation)", "name" : "Apple TV 4K (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,3", "identifier" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-max-1", "modelName" : "iPhone 13 Pro Max", "name" : "iPhone 13 Pro Max" }, "modelCode" : "Watch6,2", "identifier" : "84F7E819-BB5B-4028-AD83-893DBD247496", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series6-1", "modelName" : "Apple Watch Series 6 - 44mm", "name" : "Apple Watch Series 6 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,5", "identifier" : "36F29C59-7D90-4D4F-BA32-9B4F62FAA265", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-plus-2", "modelName" : "iPhone 8 Plus", "name" : "iPhone 8 Plus" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,10", "identifier" : "FCF19064-75CE-4150-9F89-69E75E07058B", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-12point9-5th-1", "modelName" : "iPad Pro (12.9-inch) (5th generation)", "name" : "iPad Pro (12.9-inch) (5th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad12,2", "identifier" : "9E9DB2A9-5D5F-47D6-A2A3-FD1C3FCEC7A6", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-9-wwan-1", "modelName" : "iPad (9th generation)", "name" : "iPad (9th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,6", "identifier" : "34D906FB-47FF-43C1-BE8D-9536637F7208", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-se3-1", "modelName" : "iPhone SE (3rd generation)", "name" : "iPhone SE (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,3", "identifier" : "2638C68F-13EC-4A2B-8CC3-E39AFDDDDF06", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-max-1", "modelName" : "iPhone 13 Pro Max", "name" : "iPhone 13 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV5,3", "identifier" : "29A9A3DB-DC7A-4C4C-8622-58BAF0C88594", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4", "modelName" : "Apple TV", "name" : "Apple TV" }, { "modelCode" : "iPhone9,2", "simulator" : false, "modelName" : "iPhone 7 Plus (Model 1661, 1784, 1785, 1786)", "error" : { "code" : -13, "failureReason" : "", "underlyingErrors" : [ { "code" : 4, "failureReason" : "", "description" : "Mac’s iPhone is locked.", "recoverySuggestion" : "To use Mac’s iPhone with Xcode, unlock it.", "domain" : "DVTDeviceIneligibilityErrorDomain" } ], "description" : "Mac’s iPhone is not connected", "recoverySuggestion" : "Xcode will continue when Mac’s iPhone is connected.", "domain" : "com.apple.platform.iphoneos" }, "operatingSystemVersion" : "15.3.1 (19D52)", "identifier" : "b566dc22c37bd0a23416b5e05919ba43a4adf8d5", "platform" : "com.apple.platform.iphoneos", "architecture" : "arm64", "interface" : "usb", "available" : false, "name" : "Mac’s iPhone", "modelUTI" : "com.apple.iphone-7-plus-4" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,4", "identifier" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-max-1", "modelName" : "iPhone 12 Pro Max", "name" : "iPhone 12 Pro Max" }, "modelCode" : "Watch5,4", "identifier" : "53166BB9-0CE0-4BDA-AB54-91E7297A44BA", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,3", "identifier" : "508B61A7-1F54-4980-8BF3-F32773902C26", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-1", "modelName" : "iPhone 12 Pro", "name" : "iPhone 12 Pro" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,2", "identifier" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-1", "modelName" : "iPhone 13 Pro", "name" : "iPhone 13 Pro" }, "modelCode" : "Watch6,1", "identifier" : "803F5C88-7737-4F34-89DD-9FDD6132BD7B", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series6-1", "modelName" : "Apple Watch Series 6 - 40mm", "name" : "Apple Watch Series 6 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "15.4 (19L439)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV11,1", "identifier" : "9C012872-43E0-4B95-AC9D-D28CB4BA0F49", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k-2nd", "modelName" : "Apple TV 4K (at 1080p) (2nd generation)", "name" : "Apple TV 4K (at 1080p) (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPod9,1", "identifier" : "63502517-17F2-4861-8383-61FEF8252898", "architecture" : "x86_64", "modelUTI" : "com.apple.ipod-touch-7-2", "modelName" : "iPod touch (7th generation)", "name" : "iPod touch (7th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "B079AF1B-B3A2-40AD-A7DC-6A38BC31A5A6", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,2", "identifier" : "95DE544A-EA06-453F-9A77-E0518F5CDC9A", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-1", "modelName" : "iPhone 12", "name" : "iPhone 12" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad6,4", "identifier" : "2A16F932-F09A-4BBC-B4DA-C10C732F0FB6", "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" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,5", "identifier" : "A9234744-9C64-4FB1-8DA8-6149EB467F7A", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-11-3rd-1", "modelName" : "iPad Pro (11-inch) (3rd generation)", "name" : "iPad Pro (11-inch) (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,2", "identifier" : "69D4AEB9-7871-44EA-8BCA-3F9169D51FA3", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-pro-1", "modelName" : "iPhone 13 Pro", "name" : "iPhone 13 Pro" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,5", "identifier" : "49863B6C-F450-4AC1-AB08-89CCEC48D177", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-max-1", "modelName" : "iPhone 11 Pro Max", "name" : "iPhone 11 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad13,17", "identifier" : "EF23C260-F341-42C0-AF36-3FA5664E94C4", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-air5-1", "modelName" : "iPad Air (5th generation)", "name" : "iPad Air (5th generation)" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone13,4", "identifier" : "114D8EE2-4FCA-4C52-AEFC-0A950B54620D", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-12-pro-max-1", "modelName" : "iPhone 12 Pro Max", "name" : "iPhone 12 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,4", "identifier" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-mini-1", "modelName" : "iPhone 13 mini", "name" : "iPhone 13 mini" }, "modelCode" : "Watch6,6", "identifier" : "E36999FF-0902-4F6C-BC62-22B09F980E03", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series7-1", "modelName" : "Apple Watch Series 7 - 41mm", "name" : "Apple Watch Series 7 - 41mm" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,4", "identifier" : "807405E0-6BEB-40A1-ADE0-BFA83C88E240", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-mini-1", "modelName" : "iPhone 13 mini", "name" : "iPhone 13 mini" }, { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,4", "identifier" : "5C9C6B50-E57C-4F88-9425-AD2636D925BA", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-2", "modelName" : "iPhone 8", "name" : "iPhone 8" }, { "simulator" : true, "operatingSystemVersion" : "8.5 (19T241)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "companionDevice" : { "simulator" : true, "operatingSystemVersion" : "15.5 (19F70)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone14,5", "identifier" : "A15EC128-EDD6-438D-85AD-C3FD48C04F67", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-13-1", "modelName" : "iPhone 13", "name" : "iPhone 13" }, "modelCode" : "Watch6,9", "identifier" : "69865D44-17BA-4BA4-858A-D23C75B81D45", "architecture" : "x86_64", "modelUTI" : "com.apple.watch-series7-1", "modelName" : "Apple Watch Series 7 - 45mm", "name" : "Apple Watch Series 7 - 45mm" } ] 2022-06-23 16:19:01.225 xcdevice[37186:342001] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-06-23 16:19:01.226 xcdevice[37186:342001] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore [ +12 ms] Error: Mac’s iPhone is not connected. Xcode will continue when Mac’s iPhone is connected. (code -13) [ +7 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. [ +28 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update. [ +4 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ +13 ms] 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. [ +118 ms] Multiple devices found: [ +81 ms] macOS (desktop) • macos • darwin-x64 • macOS 12.4 21F79 darwin-x64 [ ] Chrome (web) • chrome • web-javascript • Google Chrome 102.0.5005.115 [ ] [1]: macOS (macos) [ ] [2]: Chrome (chrome) [ +1 ms] Please choose one (To quit, press "q/Q") [ ] : [+1815 ms] q [ +17 ms] "flutter run" took 5,849ms. [ +37 ms] #0 throwToolExit (package:flutter_tools/src/base/common.dart:10:3) #1 DeviceManager._chooseOneOfAvailableDevices (package:flutter_tools/src/device.dart:314:7) #2 DeviceManager.findTargetDevices (package:flutter_tools/src/device.dart:302:37) #3 FlutterCommand.findAllTargetDevices (package:flutter_tools/src/runner/flutter_command.dart:1378:28) #4 RunCommand.validateCommand (package:flutter_tools/src/commands/run.dart:482:15) #5 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:1298:5) #6 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1183:27) #7 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19) #8 CommandRunner.runCommand (package:args/command_runner.dart:209:13) #9 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:281:9) #10 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19) #11 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:229:5) #12 run.. (package:flutter_tools/runner.dart:62:9) #13 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19) #14 main (package:flutter_tools/executable.dart:94:3) [ +286 ms] ensureAnalyticsSent: 281ms [ +1 ms] Running shutdown hooks [ ] Shutdown hooks complete [ +1 ms] exiting with code 1 ```
alihassan143 commented 2 years ago
yaml file ```yaml name:example_app description: A new Flutter project. # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev # The following defines the version and build number for your application. # A version number is three numbers separated by dots, like 1.2.43 # followed by an optional build number separated by a +. # Both the version and the builder number may be overridden in flutter # build by specifying --build-name and --build-number, respectively. # In Android, build-name is used as versionName while build-number used as versionCode. # Read more about Android versioning at https://developer.android.com/studio/publish/versioning # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html version: 1.0.2+4 environment: sdk: ">=2.12.0 <3.0.0" # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions # consider running `flutter pub upgrade --major-versions`. Alternatively, # dependencies can be manually updated by changing the version numbers below to # the latest version available on pub.dev. To see which dependencies have newer # versions available, run `flutter pub outdated`. dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.2 image_picker: ^0.8.5+3 path_provider: ^2.0.11 permission_handler: ^9.2.0 flutter_svg: ^1.0.3 image_cropper: ^1.5.0 shared_preferences: ^2.0.15 connectivity_plus: ^2.3.5 path: ^1.8.1 image: ^3.2.0 desktop_drop: ^0.3.3 file_picker: ^4.6.1 syncfusion_flutter_pdf: ^20.1.61-beta lottie: ^1.3.0 dev_dependencies: # change_app_package_name: ^1.0.0 flutter_test: sdk: flutter # flutter_icons: # android: "launcher_icon" # ios: true # image_path: "assets/appicon.png" # adaptive_icon_background: "#7B61FF" # adaptive_icon_foreground: "assets/forbackground.png" # The "flutter_lints" package below contains a set of recommended lints to # encourage good coding practices. The lint set provided by the package is # activated in the `analysis_options.yaml` file located at the root of your # package. See that file for information about deactivating specific lint # rules and activating additional ones. flutter_lints: ^1.0.0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec # The following section is specific to Flutter. flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true # To add assets to your application, add an assets section, like this: assets: - assets/ # - images/a_dot_ham.jpeg # An image asset can refer to one or more resolution-specific "variants", see # https://flutter.dev/assets-and-images/#resolution-aware. # For details regarding adding assets from package dependencies, see # https://flutter.dev/assets-and-images/#from-packages # To add custom fonts to your application, add a fonts section here, # in this "flutter" section. Each entry in this list should have a # "family" key with the font family name, and a "fonts" key with a # list giving the asset and other descriptors for the font. For # example: # fonts: # - family: Schyler # fonts: # - asset: fonts/Schyler-Regular.ttf # - asset: fonts/Schyler-Italic.ttf # style: italic # - family: Trajan Pro # fonts: # - asset: fonts/TrajanPro.ttf # - asset: fonts/TrajanPro_Bold.ttf # weight: 700 # # For details regarding fonts from package dependencies, # see https://flutter.dev/custom-fonts/#from-packages ```
huycozy commented 2 years ago

@alihassan143

[ +1 ms] Please choose one (To quit, press "q/Q") [ ] : [+1815 ms] q

if i use the simple CupertinoApp it also does the same

Once you complete above hints and provide such sample code, I will reopen the issue for further investigation. Thanks!

github-actions[bot] commented 2 years 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.