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
166.35k stars 27.54k forks source link

flutter v2.2.3 call app main build twice or more #85894

Closed sellch00k closed 3 years ago

sellch00k commented 3 years ago

When I update flutter v2.2.3 and Dart 2.13.4 and hit F5 or CTRL+F5, build method start to build 2 or more times. I develop more than 1 project and all projects have same issue. But If u run "flutter run" command from terminal there is no issue with "vscode". Then I run command "flutter downgrade v2.2.2" issue was gone. I think there is proplem with debugger attaching. Please fix this I'd like to use version up to date.

NO ISSUE WITH THIS (But if flutter 2.2.3, dart 2.13.4 there is issue)

flutter doctor -v ```console [√] Flutter (Channel stable, 2.2.2, on Microsoft Windows [Version 10.0.19042.1052], locale tr-TR) • Flutter version 2.2.2 at C:\flutter • Framework revision d79295af24 (3 weeks ago), 2021-06-11 08:56:01 -0700 • Engine revision 91c9fc8fe0 • Dart version 2.13.3 [√] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at C:\Users\slck\AppData\Local\Android\sdk • Platform android-30, build-tools 30.0.3 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01) • All Android licenses accepted. [√] Chrome - develop for the web • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe [√] Android Studio (version 4.1.0) • Android Studio at C:\Program Files\Android\Android Studio • 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 1.8.0_242-release-1644-b01) [√] VS Code (version 1.57.1) • VS Code at C:\Users\slck\AppData\Local\Programs\Microsoft VS Code • Flutter extension version 3.24.0 [√] Connected device (3 available) • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator) • Chrome (web) • chrome • web-javascript • Google Chrome 91.0.4472.124 • Edge (web) • edge • web-javascript • Microsoft Edge 91.0.864.64 ```
TahaTesser commented 3 years ago

Hi @sellch00k Can you please provide a complete reproducible minimal code sample, and complete flutter run --verbose logs running the minimal code sample? Thank you

swillk commented 3 years ago

Hi @TahaTesser I had the same problem. I tried the switching version. Found this problem with flutter2.0.0 above in Mac environment but not when version 1.22.6

simple code(is default template code, only add some `print()`)

import 'package:flutter/material.dart';

void main() {
  print("run app...");
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    print("MyApp build.....");
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(widget.title),
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: Column(
          // Column is also a layout widget. It takes a list of children and
          // arranges them vertically. By default, it sizes itself to fit its
          // children horizontally, and tries to be as tall as its parent.
          //
          // Invoke "debug painting" (press "p" in the console, choose the
          // "Toggle Debug Paint" action from the Flutter Inspector in Android
          // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
          // to see the wireframe for each widget.
          //
          // Column has various properties to control how it sizes itself and
          // how it positions its children. Here we use mainAxisAlignment to
          // center the children vertically; the main axis here is the vertical
          // axis because Columns are vertical (the cross axis would be
          // horizontal).
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

flutter doctor -v

[✓] Flutter (Channel stable, 2.2.2, on macOS 11.3.1 20E241 darwin-x64, locale zh-Hans-CN)
    • Flutter version 2.2.2 at /Users/andy/flutter
    • Framework revision d79295af24 (4 weeks ago), 2021-06-11 08:56:01 -0700
    • Engine revision 91c9fc8fe0
    • Dart version 2.13.3
    • Pub download mirror https://pub.flutter-io.cn
    • Flutter download mirror https://storage.flutter-io.cn

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at /Users/andy/Android
    • Platform android-30, build-tools 30.0.3
    • ANDROID_HOME = /Users/andy/Android
    • ANDROID_SDK_ROOT = /Users/andy/Android
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6916264)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.5, Build version 12E262
    • CocoaPods version 1.10.1

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

[!] Android Studio
    • Android Studio at /Applications/Android Studio Preview.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
    ✗ Unable to find bundled Java version.
    • Try updating or re-installing Android Studio.

[✓] Android Studio (version 4.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.8+10-b944.6916264)

[✓] IntelliJ IDEA Ultimate Edition (version 2020.1.2)
    • IntelliJ at /Applications/IntelliJ IDEA.app
    • Flutter plugin version 52.1.1
    • Dart plugin version 201.7846.93

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

[✓] Connected device (2 available)
    • sdk gphone x86 (mobile) • emulator-5554 • android-x86    • Android 11 (API 30) (emulator)
    • Chrome (web)            • chrome        • web-javascript • Google Chrome 90.0.4430.72

AndroidStudio Run Configurations additional run args:--debug --verbose

[ +110 ms] executing: sysctl hw.optional.arm64
[  +22 ms] Exit code 1 from: sysctl hw.optional.arm64
[        ] sysctl: unknown oid 'hw.optional.arm64'
[   +8 ms] executing: [/Users/andy/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[   +8 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] d79295af24c3ed621c33713ecda14ad196fd9c31
[        ] executing: [/Users/andy/flutter/] git tag --points-at d79295af24c3ed621c33713ecda14ad196fd9c31
[  +21 ms] Exit code 0 from: git tag --points-at d79295af24c3ed621c33713ecda14ad196fd9c31
[        ] 2.2.2
[   +6 ms] executing: [/Users/andy/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[   +7 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/stable
[        ] executing: [/Users/andy/flutter/] git ls-remote --get-url origin
[   +7 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[  +99 ms] executing: [/Users/andy/flutter/] git rev-parse --abbrev-ref HEAD
[   +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] stable
[   +5 ms] executing: sw_vers -productName
[  +14 ms] Exit code 0 from: sw_vers -productName
[        ] macOS
[        ] executing: sw_vers -productVersion
[  +18 ms] Exit code 0 from: sw_vers -productVersion
[        ] 11.3.1
[        ] executing: sw_vers -buildVersion
[  +22 ms] Exit code 0 from: sw_vers -buildVersion
[   +1 ms] 20E241
[  +68 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +66 ms] executing: /Users/andy/Android/platform-tools/adb devices -l
[  +19 ms] executing: sysctl hw.optional.arm64
[   +8 ms] Exit code 1 from: sysctl hw.optional.arm64
[   +1 ms] sysctl: unknown oid 'hw.optional.arm64'
[        ] executing: xcrun xcodebuild -version
[+1257 ms] Exit code 0 from: xcrun xcodebuild -version
[   +1 ms] Xcode 12.5
           Build version 12E262
[   +3 ms] executing: xcrun xcdevice list --timeout 2
[   +4 ms] xcrun simctl list --json devices
[        ] executing: xcrun simctl list --json devices
[  +53 ms] List of devices attached
           emulator-5554          device product:sdk_gphone_x86 model:sdk_gphone_x86 device:generic_x86_arm transport_id:8
[  +10 ms] /Users/andy/Android/platform-tools/adb -s emulator-5554 shell getprop
[  +72 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +91 ms] executing: xcrun xcdevice list --timeout 2
[   +2 ms] xcrun simctl list --json devices
[        ] executing: xcrun simctl list --json devices
[  +32 ms] Skipping pub get: version match.
[ +167 ms] Generating /Users/andy/Documents/Projects/temp/flu_twice/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[  +66 ms] ro.hardware = ranchu
[  +55 ms] Initializing file store
[  +10 ms] Skipping target: gen_localizations
[   +5 ms] complete
[   +5 ms] Launching lib/main.dart on sdk gphone x86 in debug mode...
[   +4 ms] /Users/andy/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/andy/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/andy/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names --experimental-emit-debug-metadata -Dflutter.inspector.structuredErrors=true -DFLUTTER_WEB_AUTO_DETECT=true --output-dill /var/folders/nl/v2v1bfl91y5dbmy2xk4dtfg40000gn/T/flutter_tools.zL50gu/flutter_tool.8C3BUX/app.dill --packages /Users/andy/Documents/Projects/temp/flu_twice/.dart_tool/package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --initialize-from-dill build/ec97fc97316ce73f47c62e6f5be0e204.cache.dill.track.dill --enable-experiment=alternative-invalidation-strategy
[  +10 ms] executing: /Users/andy/Android/build-tools/30.0.3/aapt dump xmltree /Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[  +55 ms] Exit code 0 from: /Users/andy/Android/build-tools/30.0.3/aapt dump xmltree /Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1e
               A: android:compileSdkVersionCodename(0x01010573)="11" (Raw: "11")
               A: package="com.example.flu_twice" (Raw: "com.example.flu_twice")
               A: platformBuildVersionCode=(type 0x10)0x1e
               A: platformBuildVersionName=(type 0x10)0xb
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1e
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: application (line=16)
                 A: android:label(0x01010001)="flu_twice" (Raw: "flu_twice")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=21)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.flu_twice.MainActivity" (Raw: "com.example.flu_twice.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=35)
                     A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=45)
                     A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040000
                   E: intent-filter (line=49)
                     E: action (line=50)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=52)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=59)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[   +8 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[   +1 ms] {
             "devices" : {
               "com.apple.CoreSimulator.SimRuntime.watchOS-7-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2A975DF4-8750-44D9-9E64-92F7E66B75D4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2A975DF4-8750-44D9-9E64-92F7E66B75D4",
                   "udid" : "2A975DF4-8750-44D9-9E64-92F7E66B75D4",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/84C3A9FF-BCE7-43DD-A7E5-139BC58D8157\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/84C3A9FF-BCE7-43DD-A7E5-139BC58D8157",
                   "udid" : "84C3A9FF-BCE7-43DD-A7E5-139BC58D8157",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/9812F440-B72B-44BD-A83E-FC37B7A5E0F0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/9812F440-B72B-44BD-A83E-FC37B7A5E0F0",
                   "udid" : "9812F440-B72B-44BD-A83E-FC37B7A5E0F0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/C9F9DBC7-9DDA-40C6-B0F0-104C7E72385F\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/C9F9DBC7-9DDA-40C6-B0F0-104C7E72385F",
                   "udid" : "C9F9DBC7-9DDA-40C6-B0F0-104C7E72385F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-14-3" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DD561388-B4BB-4F92-9CEB-0C29B89635B5\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DD561388-B4BB-4F92-9CEB-0C29B89635B5",
                   "udid" : "DD561388-B4BB-4F92-9CEB-0C29B89635B5",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0B608566-1432-4F94-99B9-F9DDDAC66075\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0B608566-1432-4F94-99B9-F9DDDAC66075",
                   "udid" : "0B608566-1432-4F94-99B9-F9DDDAC66075",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/76B2FCBA-FAA1-434A-911C-97AF9B2BE9D2\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/76B2FCBA-FAA1-434A-911C-97AF9B2BE9D2",
                   "udid" : "76B2FCBA-FAA1-434A-911C-97AF9B2BE9D2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/3135909D-922A-416C-B4D4-5C28CFECE96D\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/3135909D-922A-416C-B4D4-5C28CFECE96D",
                   "udid" : "3135909D-922A-416C-B4D4-5C28CFECE96D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E248F596-FB04-4E2B-8C03-06C63FD31A45\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E248F596-FB04-4E2B-8C03-06C63FD31A45",
                   "udid" : "E248F596-FB04-4E2B-8C03-06C63FD31A45",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/189BB146-7DF0-4ECA-8DBB-49EFBDFE84DE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/189BB146-7DF0-4ECA-8DBB-49EFBDFE84DE",
                   "udid" : "189BB146-7DF0-4ECA-8DBB-49EFBDFE84DE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-14-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/86B09E6A-349E-442E-8B5E-BFDFD9654049\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/86B09E6A-349E-442E-8B5E-BFDFD9654049",
                   "udid" : "86B09E6A-349E-442E-8B5E-BFDFD9654049",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B616941E-4223-46A0-A3F8-93602F8A1EEC\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B616941E-4223-46A0-A3F8-93602F8A1EEC",
                   "udid" : "B616941E-4223-46A0-A3F8-93602F8A1EEC",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/926EFD94-0054-4923-BF27-8BEFE652F07F\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/926EFD94-0054-4923-BF27-8BEFE652F07F",
                   "udid" : "926EFD94-0054-4923-BF27-8BEFE652F07F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/66C3678C-4BE7-4A15-8701-9965F4B1635C\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/66C3678C-4BE7-4A15-8701-9965F4B1635C",
                   "udid" : "66C3678C-4BE7-4A15-8701-9965F4B1635C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2EF60A56-0C4E-4C04-BF98-9732A842FD0A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2EF60A56-0C4E-4C04-BF98-9732A842FD0A",
                   "udid" : "2EF60A56-0C4E-4C04-BF98-9732A842FD0A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B80B4380-15D8-4C01-8976-06B2056DECD0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B80B4380-15D8-4C01-8976-06B2056DECD0",
                   "udid" : "B80B4380-15D8-4C01-8976-06B2056DECD0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8256C0CA-69D0-4A29-9591-83CBBB58A621\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8256C0CA-69D0-4A29-9591-83CBBB58A621",
                   "udid" : "8256C0CA-69D0-4A29-9591-83CBBB58A621",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPod touch (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/AB1D13D9-06BD-4479-9152-1D2A6CCE5ACE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/AB1D13D9-06BD-4479-9152-1D2A6CCE5ACE",
                   "udid" : "AB1D13D9-06BD-4479-9152-1D2A6CCE5ACE",
                   "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\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DB0B0472-3B8C-4875-800E-B8782E6BAD10\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DB0B0472-3B8C-4875-800E-B8782E6BAD10",
                   "udid" : "DB0B0472-3B8C-4875-800E-B8782E6BAD10",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/889EE5DF-5564-41B7-A0AC-E16787344C4C\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/889EE5DF-5564-41B7-A0AC-E16787344C4C",
                   "udid" : "889EE5DF-5564-41B7-A0AC-E16787344C4C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/5E21FE79-BF8B-40CB-B2C3-2554EDEF7D54\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/5E21FE79-BF8B-40CB-B2C3-2554EDEF7D54",
                   "udid" : "5E21FE79-BF8B-40CB-B2C3-2554EDEF7D54",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (8th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/F558C5E6-878F-469B-A152-9CDAECEE2FE2\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/F558C5E6-878F-469B-A152-9CDAECEE2FE2",
                   "udid" : "F558C5E6-878F-469B-A152-9CDAECEE2FE2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (4th generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-5" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8D94D603-9F87-42B6-B4A8-A4441471BEA9\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8D94D603-9F87-42B6-B4A8-A4441471BEA9",
                   "udid" : "8D94D603-9F87-42B6-B4A8-A4441471BEA9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6B58918C-D1C3-4CB2-ABB4-4BA9A7A860CA\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6B58918C-D1C3-4CB2-ABB4-4BA9A7A860CA",
                   "udid" : "6B58918C-D1C3-4CB2-ABB4-4BA9A7A860CA",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/74C63CDD-E5A6-4FF9-B42E-70A68845BE84\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/74C63CDD-E5A6-4FF9-B42E-70A68845BE84",
                   "udid" : "74C63CDD-E5A6-4FF9-B42E-70A68845BE84",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/61B9CA57-DBFA-4BB2-9735-EAAD4B0BE4D6\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/61B9CA57-DBFA-4BB2-9735-EAAD4B0BE4D6",
                   "udid" : "61B9CA57-DBFA-4BB2-9735-EAAD4B0BE4D6",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/D12E6EFD-7CB2-41C6-8B09-AE460FD73418\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/D12E6EFD-7CB2-41C6-8B09-AE460FD73418",
                   "udid" : "D12E6EFD-7CB2-41C6-8B09-AE460FD73418",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E3C5CF72-9D28-4238-8FD7-5EDE118786E4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E3C5CF72-9D28-4238-8FD7-5EDE118786E4",
                   "udid" : "E3C5CF72-9D28-4238-8FD7-5EDE118786E4",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/058A0E35-EECF-43E5-99B3-4ED942A54DEB\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/058A0E35-EECF-43E5-99B3-4ED942A54DEB",
                   "udid" : "058A0E35-EECF-43E5-99B3-4ED942A54DEB",
                   "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\/andy\/Library\/Developer\/CoreSimulator\/Devices\/59F29CE3-1B27-4893-8E4D-0BF94C3969D8\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/59F29CE3-1B27-4893-8E4D-0BF94C3969D8",
                   "udid" : "59F29CE3-1B27-4893-8E4D-0BF94C3969D8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/4316F3BA-B1F9-4410-8B96-82D9C789D037\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/4316F3BA-B1F9-4410-8B96-82D9C789D037",
                   "udid" : "4316F3BA-B1F9-4410-8B96-82D9C789D037",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6F214BD7-7933-4E2E-88F5-8FBFDE978598\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6F214BD7-7933-4E2E-88F5-8FBFDE978598",
                   "udid" : "6F214BD7-7933-4E2E-88F5-8FBFDE978598",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8EFFB7FC-D7F4-45AA-B0C5-C3B6678937B2\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8EFFB7FC-D7F4-45AA-B0C5-C3B6678937B2",
                   "udid" : "8EFFB7FC-D7F4-45AA-B0C5-C3B6678937B2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-14-5" : [
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/49F1DDF0-C84D-4F35-AC08-F287D0BC62D8\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/49F1DDF0-C84D-4F35-AC08-F287D0BC62D8",
                   "udid" : "49F1DDF0-C84D-4F35-AC08-F287D0BC62D8",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B5B885AE-25EB-489F-A8F4-185A936FD0E5\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B5B885AE-25EB-489F-A8F4-185A936FD0E5",
                   "udid" : "B5B885AE-25EB-489F-A8F4-185A936FD0E5",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (2nd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/53805704-DE0F-46EE-8B2B-5113DFE015D7\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/53805704-DE0F-46EE-8B2B-5113DFE015D7",
                   "udid" : "53805704-DE0F-46EE-8B2B-5113DFE015D7",
                   "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-14-4" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/CFA7BC37-4A23-4A70-9E53-295AAC1320A1\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/CFA7BC37-4A23-4A70-9E53-295AAC1320A1",
                   "udid" : "CFA7BC37-4A23-4A70-9E53-295AAC1320A1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/CF75A330-43D1-414D-8CF3-F50441964E6D\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/CF75A330-43D1-414D-8CF3-F50441964E6D",
                   "udid" : "CF75A330-43D1-414D-8CF3-F50441964E6D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8DC1D68F-2CD8-4EB9-A0C1-A0D753B1415A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8DC1D68F-2CD8-4EB9-A0C1-A0D753B1415A",
                   "udid" : "8DC1D68F-2CD8-4EB9-A0C1-A0D753B1415A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/27BD2454-575B-47F9-A358-79442D552CDE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/27BD2454-575B-47F9-A358-79442D552CDE",
                   "udid" : "27BD2454-575B-47F9-A358-79442D552CDE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/45876681-8EFF-465D-AEA4-671CB400EEAE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/45876681-8EFF-465D-AEA4-671CB400EEAE",
                   "udid" : "45876681-8EFF-465D-AEA4-671CB400EEAE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0488FFAE-6A90-43D5-BAD4-1B5253A6093C\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0488FFAE-6A90-43D5-BAD4-1B5253A6093C",
                   "udid" : "0488FFAE-6A90-43D5-BAD4-1B5253A6093C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/1C9E53BE-A5EA-4214-9424-1277AFC7DEA5\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/1C9E53BE-A5EA-4214-9424-1277AFC7DEA5",
                   "udid" : "1C9E53BE-A5EA-4214-9424-1277AFC7DEA5",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 mini"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2055D861-270F-4844-B5F4-F05B5287FA9A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2055D861-270F-4844-B5F4-F05B5287FA9A",
                   "udid" : "2055D861-270F-4844-B5F4-F05B5287FA9A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12",
                   "state" : "Shutdown",
                   "name" : "iPhone 12"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/EDFCFCE7-32F7-485B-B7C7-F948A0F47303\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/EDFCFCE7-32F7-485B-B7C7-F948A0F47303",
                   "udid" : "EDFCFCE7-32F7-485B-B7C7-F948A0F47303",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/1FF10486-6870-4741-BF0E-AB4339A25F4A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/1FF10486-6870-4741-BF0E-AB4339A25F4A",
                   "udid" : "1FF10486-6870-4741-BF0E-AB4339A25F4A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/367B9BEA-DC34-48E2-9E1B-B3AE556279F1\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/367B9BEA-DC34-48E2-9E1B-B3AE556279F1",
                   "udid" : "367B9BEA-DC34-48E2-9E1B-B3AE556279F1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPod touch (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/266ECDED-96A1-43D4-AAED-FA7C03961701\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/266ECDED-96A1-43D4-AAED-FA7C03961701",
                   "udid" : "266ECDED-96A1-43D4-AAED-FA7C03961701",
                   "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\/andy\/Library\/Developer\/CoreSimulator\/Devices\/68385417-A4C2-4B7A-829E-6EFC8D294FCF\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/68385417-A4C2-4B7A-829E-6EFC8D294FCF",
                   "udid" : "68385417-A4C2-4B7A-829E-6EFC8D294FCF",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E3E3102A-87A6-4AE0-B99D-A908153E9CB9\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E3E3102A-87A6-4AE0-B99D-A908153E9CB9",
                   "udid" : "E3E3102A-87A6-4AE0-B99D-A908153E9CB9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/78907250-D8A6-4FE9-8CDD-98D3CB18E5AD\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/78907250-D8A6-4FE9-8CDD-98D3CB18E5AD",
                   "udid" : "78907250-D8A6-4FE9-8CDD-98D3CB18E5AD",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (8th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/51C83A90-5EFC-4679-829F-0A0D5A08F445\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/51C83A90-5EFC-4679-829F-0A0D5A08F445",
                   "udid" : "51C83A90-5EFC-4679-829F-0A0D5A08F445",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (4th generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/26CF290B-C8BE-4D29-AAD2-332673D524CD\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/26CF290B-C8BE-4D29-AAD2-332673D524CD",
                   "udid" : "26CF290B-C8BE-4D29-AAD2-332673D524CD",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/388A1916-BC68-468C-B8A0-F9EF27C3BE44\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/388A1916-BC68-468C-B8A0-F9EF27C3BE44",
                   "udid" : "388A1916-BC68-468C-B8A0-F9EF27C3BE44",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DF9C0932-C853-4AF4-8546-745151BA0390\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DF9C0932-C853-4AF4-8546-745151BA0390",
                   "udid" : "DF9C0932-C853-4AF4-8546-745151BA0390",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/73494258-F819-4FB7-9082-A97765F5ADF0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/73494258-F819-4FB7-9082-A97765F5ADF0",
                   "udid" : "73494258-F819-4FB7-9082-A97765F5ADF0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-7-4" : [
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35",
                   "udid" : "2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8BA919BF-F533-41E7-B5A1-0EF74A6A19EB\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8BA919BF-F533-41E7-B5A1-0EF74A6A19EB",
                   "udid" : "8BA919BF-F533-41E7-B5A1-0EF74A6A19EB",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6850E51F-BDA6-402F-9AA7-25D5660644DB\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6850E51F-BDA6-402F-9AA7-25D5660644DB",
                   "udid" : "6850E51F-BDA6-402F-9AA7-25D5660644DB",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 40mm"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B",
                   "udid" : "8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-14-5" : [
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8",
                   "udid" : "B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/D0DE5203-6DA3-452B-9C46-BB4AE25CEC48\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/D0DE5203-6DA3-452B-9C46-BB4AE25CEC48",
                   "udid" : "D0DE5203-6DA3-452B-9C46-BB4AE25CEC48",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2201789C-C67A-4502-80C0-66171D041232\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2201789C-C67A-4502-80C0-66171D041232",
                   "udid" : "2201789C-C67A-4502-80C0-66171D041232",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/AFCB1A16-01F4-4050-A8E1-516F42AAA2E4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/AFCB1A16-01F4-4050-A8E1-516F42AAA2E4",
                   "udid" : "AFCB1A16-01F4-4050-A8E1-516F42AAA2E4",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E6DCDC87-18C7-460D-9758-E065102D046A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E6DCDC87-18C7-460D-9758-E065102D046A",
                   "udid" : "E6DCDC87-18C7-460D-9758-E065102D046A",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0DE03678-4397-4224-A028-230441D50691\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0DE03678-4397-4224-A028-230441D50691",
                   "udid" : "0DE03678-4397-4224-A028-230441D50691",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6A63795A-F026-4B47-B022-3775C18E3CF4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6A63795A-F026-4B47-B022-3775C18E3CF4",
                   "udid" : "6A63795A-F026-4B47-B022-3775C18E3CF4",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 mini"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/5FB4751D-10B3-4671-992B-D0E5D6BE6B62\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/5FB4751D-10B3-4671-992B-D0E5D6BE6B62",
                   "udid" : "5FB4751D-10B3-4671-992B-D0E5D6BE6B62",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12",
                   "state" : "Shutdown",
                   "name" : "iPhone 12"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91",
                   "udid" : "EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/089702FC-BED3-47AB-9B0F-DD6783CFF2B3\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/089702FC-BED3-47AB-9B0F-DD6783CFF2B3",
                   "udid" : "089702FC-BED3-47AB-9B0F-DD6783CFF2B3",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro Max"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B072C521-8E07-4C09-A824-5CF8379A4884\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B072C521-8E07-4C09-A824-5CF8379A4884",
                   "udid" : "B072C521-8E07-4C09-A824-5CF8379A4884",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPod touch (7th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2E89B113-4A12-44B5-AF48-A757678D1636\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2E89B113-4A12-44B5-AF48-A757678D1636",
                   "udid" : "2E89B113-4A12-44B5-AF48-A757678D1636",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/20D737F5-9FCD-4448-8B76-B791DA5FBEFA\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
                   "udid" : "20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (8th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
                   "udid" : "3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (4th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8CFABB51-EB46-4303-AA87-43BD658EC028\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8CFABB51-EB46-4303-AA87-43BD658EC028",
                   "udid" : "8CFABB51-EB46-4303-AA87-43BD658EC028",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (3rd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DD2525DA-A908-49FD-B86B-888D5B02A84D\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DD2525DA-A908-49FD-B86B-888D5B02A84D",
                   "udid" : "DD2525DA-A908-49FD-B86B-888D5B02A84D",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (5th generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-14-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0893AEA9-19B4-464F-9D56-918BCCC4FDBE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0893AEA9-19B4-464F-9D56-918BCCC4FDBE",
                   "udid" : "0893AEA9-19B4-464F-9D56-918BCCC4FDBE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/C4544040-F02F-468F-8807-43C1FA6B3278\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/C4544040-F02F-468F-8807-43C1FA6B3278",
                   "udid" : "C4544040-F02F-468F-8807-43C1FA6B3278",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/790AC9CC-F639-402F-8E67-AAD09F4A887A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/790AC9CC-F639-402F-8E67-AAD09F4A887A",
                   "udid" : "790AC9CC-F639-402F-8E67-AAD09F4A887A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-7-2" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/888A09CA-7372-4D77-8E50-91138C64F0E0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/888A09CA-7372-4D77-8E50-91138C64F0E0",
                   "udid" : "888A09CA-7372-4D77-8E50-91138C64F0E0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/5591A003-EAA8-4D64-BC4F-049B941BB2E3\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/5591A003-EAA8-4D64-BC4F-049B941BB2E3",
                   "udid" : "5591A003-EAA8-4D64-BC4F-049B941BB2E3",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/24352FAF-C21F-48A5-B270-01CF21A58737\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/24352FAF-C21F-48A5-B270-01CF21A58737",
                   "udid" : "24352FAF-C21F-48A5-B270-01CF21A58737",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/7DFA51CF-6A97-429E-8189-8D4050865495\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/7DFA51CF-6A97-429E-8189-8D4050865495",
                   "udid" : "7DFA51CF-6A97-429E-8189-8D4050865495",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 44mm"
                 }
               ]
             }
           }
[  +44 ms] <- compile package:flu_twice/main.dart
[ +114 ms] --------- beginning of main
           07-09 14:17:53.649 E/netmgr  (  480): Failed to open QEMU pipe 'qemud:network': Invalid argument
[  +30 ms] executing: /Users/andy/Android/platform-tools/adb version
[  +26 ms] Android Debug Bridge version 1.0.41
           Version 31.0.2-7242960
           Installed as /Users/andy/Android/platform-tools/adb
[   +3 ms] executing: /Users/andy/Android/platform-tools/adb start-server
[  +49 ms] Building APK
Running Gradle task 'assembleDebug'...
[  +88 ms] Using gradle from /Users/andy/Documents/Projects/temp/flu_twice/android/gradlew.
[+2317 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio Preview.app/Contents/Info.plist
[  +20 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio Preview.app/Contents/Info.plist
[        ] {"CFBundleName":"Android Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_PACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudioPreview2021.1","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.vendor.name":"Google","idea.home.path":"$APP_PACKAGE\/Contents"}},"NSDesktopFolderUsageDescription":"An application in Android Studio requests access to the user's Desktop folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-203.7717.56.2111.7361063","CFBundleDevelopmentRegion":"English","NSCameraUsageDescription":"An application in Android Studio requests access to the device's camera.","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFBundleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"EAP AI-203.7717.56.2111.7361063","NSMicrophoneUsageDescription":"An application in Android Studio requests access to the device's microphone.","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","NSLocationUsageDescription":"An application in Android Studio requests access to the user's location information.","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.studio-EAP","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDescription":"An application in Android Studio requests access to the user's Documents folder.","NSDownloadsFolderUsageDescription":"An application in Android Studio requests access to the user's Downloads folder.","NSNetworkVolumesUsageDescription":"An application in Android Studio requests access to files on a network volume.","CFBundleGetInfoString":"Android Studio EAP AI-203.7717.56.2111.7361063, build AI-203.7717.56.2111.7361063. Copyright JetBrains s.r.o., (c) 2000-2021","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a removable volume."}
[   +4 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[  +21 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[   +1 ms] {"CFBundleName":"Android Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_PACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio4.2","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.vendor.name":"Google","idea.home.path":"$APP_PACKAGE\/Contents"}},"NSDesktopFolderUsageDescription":"An application in Android Studio requests access to the user's Desktop folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-202.7660.26.42.7486908","CFBundleDevelopmentRegion":"English","NSCameraUsageDescription":"An application in Android Studio requests access to the device's camera.","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFBundleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"4.2","NSMicrophoneUsageDescription":"An application in Android Studio requests access to the device's microphone.","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","NSLocationUsageDescription":"An application in Android Studio requests access to the user's location information.","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.studio","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDescription":"An application in Android Studio requests access to the user's Documents folder.","NSDownloadsFolderUsageDescription":"An application in Android Studio requests access to the user's Downloads folder.","NSNetworkVolumesUsageDescription":"An application in Android Studio requests access to files on a network volume.","CFBundleGetInfoString":"Android Studio 4.2, build AI-202.7660.26.42.7486908. Copyright JetBrains s.r.o., (c) 2000-2021","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a removable volume."}
[   +4 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ +161 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[   +1 ms] openjdk version "11.0.8" 2020-07-14
           OpenJDK Runtime Environment (build 11.0.8+10-b944.6916264)
           OpenJDK 64-Bit Server VM (build 11.0.8+10-b944.6916264, mixed mode)
[   +6 ms] executing: [/Users/andy/Documents/Projects/temp/flu_twice/android/] /Users/andy/Documents/Projects/temp/flu_twice/android/gradlew -Pverbose=true -Ptarget-platform=android-x86 -Ptarget=/Users/andy/Documents/Projects/temp/flu_twice/lib/main.dart -Pdart-defines=Zmx1dHRlci5pbnNwZWN0b3Iuc3RydWN0dXJlZEVycm9ycz10cnVl,RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ== -Pdart-obfuscation=false -Ptrack-widget-creation=true -Ptree-shake-icons=false -Pfilesystem-scheme=org-dartlang-root assembleDebug
[ +105 ms] {
             "devices" : {
               "com.apple.CoreSimulator.SimRuntime.watchOS-7-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2A975DF4-8750-44D9-9E64-92F7E66B75D4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2A975DF4-8750-44D9-9E64-92F7E66B75D4",
                   "udid" : "2A975DF4-8750-44D9-9E64-92F7E66B75D4",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/84C3A9FF-BCE7-43DD-A7E5-139BC58D8157\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/84C3A9FF-BCE7-43DD-A7E5-139BC58D8157",
                   "udid" : "84C3A9FF-BCE7-43DD-A7E5-139BC58D8157",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/9812F440-B72B-44BD-A83E-FC37B7A5E0F0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/9812F440-B72B-44BD-A83E-FC37B7A5E0F0",
                   "udid" : "9812F440-B72B-44BD-A83E-FC37B7A5E0F0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/C9F9DBC7-9DDA-40C6-B0F0-104C7E72385F\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/C9F9DBC7-9DDA-40C6-B0F0-104C7E72385F",
                   "udid" : "C9F9DBC7-9DDA-40C6-B0F0-104C7E72385F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-14-3" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DD561388-B4BB-4F92-9CEB-0C29B89635B5\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DD561388-B4BB-4F92-9CEB-0C29B89635B5",
                   "udid" : "DD561388-B4BB-4F92-9CEB-0C29B89635B5",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0B608566-1432-4F94-99B9-F9DDDAC66075\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0B608566-1432-4F94-99B9-F9DDDAC66075",
                   "udid" : "0B608566-1432-4F94-99B9-F9DDDAC66075",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/76B2FCBA-FAA1-434A-911C-97AF9B2BE9D2\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/76B2FCBA-FAA1-434A-911C-97AF9B2BE9D2",
                   "udid" : "76B2FCBA-FAA1-434A-911C-97AF9B2BE9D2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/3135909D-922A-416C-B4D4-5C28CFECE96D\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/3135909D-922A-416C-B4D4-5C28CFECE96D",
                   "udid" : "3135909D-922A-416C-B4D4-5C28CFECE96D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E248F596-FB04-4E2B-8C03-06C63FD31A45\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E248F596-FB04-4E2B-8C03-06C63FD31A45",
                   "udid" : "E248F596-FB04-4E2B-8C03-06C63FD31A45",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/189BB146-7DF0-4ECA-8DBB-49EFBDFE84DE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/189BB146-7DF0-4ECA-8DBB-49EFBDFE84DE",
                   "udid" : "189BB146-7DF0-4ECA-8DBB-49EFBDFE84DE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-14-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/86B09E6A-349E-442E-8B5E-BFDFD9654049\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/86B09E6A-349E-442E-8B5E-BFDFD9654049",
                   "udid" : "86B09E6A-349E-442E-8B5E-BFDFD9654049",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B616941E-4223-46A0-A3F8-93602F8A1EEC\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B616941E-4223-46A0-A3F8-93602F8A1EEC",
                   "udid" : "B616941E-4223-46A0-A3F8-93602F8A1EEC",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/926EFD94-0054-4923-BF27-8BEFE652F07F\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/926EFD94-0054-4923-BF27-8BEFE652F07F",
                   "udid" : "926EFD94-0054-4923-BF27-8BEFE652F07F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/66C3678C-4BE7-4A15-8701-9965F4B1635C\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/66C3678C-4BE7-4A15-8701-9965F4B1635C",
                   "udid" : "66C3678C-4BE7-4A15-8701-9965F4B1635C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2EF60A56-0C4E-4C04-BF98-9732A842FD0A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2EF60A56-0C4E-4C04-BF98-9732A842FD0A",
                   "udid" : "2EF60A56-0C4E-4C04-BF98-9732A842FD0A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B80B4380-15D8-4C01-8976-06B2056DECD0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B80B4380-15D8-4C01-8976-06B2056DECD0",
                   "udid" : "B80B4380-15D8-4C01-8976-06B2056DECD0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8256C0CA-69D0-4A29-9591-83CBBB58A621\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8256C0CA-69D0-4A29-9591-83CBBB58A621",
                   "udid" : "8256C0CA-69D0-4A29-9591-83CBBB58A621",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPod touch (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/AB1D13D9-06BD-4479-9152-1D2A6CCE5ACE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/AB1D13D9-06BD-4479-9152-1D2A6CCE5ACE",
                   "udid" : "AB1D13D9-06BD-4479-9152-1D2A6CCE5ACE",
                   "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\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DB0B0472-3B8C-4875-800E-B8782E6BAD10\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DB0B0472-3B8C-4875-800E-B8782E6BAD10",
                   "udid" : "DB0B0472-3B8C-4875-800E-B8782E6BAD10",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/889EE5DF-5564-41B7-A0AC-E16787344C4C\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/889EE5DF-5564-41B7-A0AC-E16787344C4C",
                   "udid" : "889EE5DF-5564-41B7-A0AC-E16787344C4C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/5E21FE79-BF8B-40CB-B2C3-2554EDEF7D54\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/5E21FE79-BF8B-40CB-B2C3-2554EDEF7D54",
                   "udid" : "5E21FE79-BF8B-40CB-B2C3-2554EDEF7D54",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (8th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/F558C5E6-878F-469B-A152-9CDAECEE2FE2\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/F558C5E6-878F-469B-A152-9CDAECEE2FE2",
                   "udid" : "F558C5E6-878F-469B-A152-9CDAECEE2FE2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (4th generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-5" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8D94D603-9F87-42B6-B4A8-A4441471BEA9\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8D94D603-9F87-42B6-B4A8-A4441471BEA9",
                   "udid" : "8D94D603-9F87-42B6-B4A8-A4441471BEA9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6B58918C-D1C3-4CB2-ABB4-4BA9A7A860CA\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6B58918C-D1C3-4CB2-ABB4-4BA9A7A860CA",
                   "udid" : "6B58918C-D1C3-4CB2-ABB4-4BA9A7A860CA",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/74C63CDD-E5A6-4FF9-B42E-70A68845BE84\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/74C63CDD-E5A6-4FF9-B42E-70A68845BE84",
                   "udid" : "74C63CDD-E5A6-4FF9-B42E-70A68845BE84",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/61B9CA57-DBFA-4BB2-9735-EAAD4B0BE4D6\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/61B9CA57-DBFA-4BB2-9735-EAAD4B0BE4D6",
                   "udid" : "61B9CA57-DBFA-4BB2-9735-EAAD4B0BE4D6",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/D12E6EFD-7CB2-41C6-8B09-AE460FD73418\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/D12E6EFD-7CB2-41C6-8B09-AE460FD73418",
                   "udid" : "D12E6EFD-7CB2-41C6-8B09-AE460FD73418",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E3C5CF72-9D28-4238-8FD7-5EDE118786E4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E3C5CF72-9D28-4238-8FD7-5EDE118786E4",
                   "udid" : "E3C5CF72-9D28-4238-8FD7-5EDE118786E4",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/058A0E35-EECF-43E5-99B3-4ED942A54DEB\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/058A0E35-EECF-43E5-99B3-4ED942A54DEB",
                   "udid" : "058A0E35-EECF-43E5-99B3-4ED942A54DEB",
                   "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\/andy\/Library\/Developer\/CoreSimulator\/Devices\/59F29CE3-1B27-4893-8E4D-0BF94C3969D8\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/59F29CE3-1B27-4893-8E4D-0BF94C3969D8",
                   "udid" : "59F29CE3-1B27-4893-8E4D-0BF94C3969D8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/4316F3BA-B1F9-4410-8B96-82D9C789D037\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/4316F3BA-B1F9-4410-8B96-82D9C789D037",
                   "udid" : "4316F3BA-B1F9-4410-8B96-82D9C789D037",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6F214BD7-7933-4E2E-88F5-8FBFDE978598\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6F214BD7-7933-4E2E-88F5-8FBFDE978598",
                   "udid" : "6F214BD7-7933-4E2E-88F5-8FBFDE978598",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8EFFB7FC-D7F4-45AA-B0C5-C3B6678937B2\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8EFFB7FC-D7F4-45AA-B0C5-C3B6678937B2",
                   "udid" : "8EFFB7FC-D7F4-45AA-B0C5-C3B6678937B2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-14-5" : [
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/49F1DDF0-C84D-4F35-AC08-F287D0BC62D8\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/49F1DDF0-C84D-4F35-AC08-F287D0BC62D8",
                   "udid" : "49F1DDF0-C84D-4F35-AC08-F287D0BC62D8",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B5B885AE-25EB-489F-A8F4-185A936FD0E5\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B5B885AE-25EB-489F-A8F4-185A936FD0E5",
                   "udid" : "B5B885AE-25EB-489F-A8F4-185A936FD0E5",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (2nd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/53805704-DE0F-46EE-8B2B-5113DFE015D7\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/53805704-DE0F-46EE-8B2B-5113DFE015D7",
                   "udid" : "53805704-DE0F-46EE-8B2B-5113DFE015D7",
                   "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-14-4" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/CFA7BC37-4A23-4A70-9E53-295AAC1320A1\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/CFA7BC37-4A23-4A70-9E53-295AAC1320A1",
                   "udid" : "CFA7BC37-4A23-4A70-9E53-295AAC1320A1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/CF75A330-43D1-414D-8CF3-F50441964E6D\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/CF75A330-43D1-414D-8CF3-F50441964E6D",
                   "udid" : "CF75A330-43D1-414D-8CF3-F50441964E6D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8DC1D68F-2CD8-4EB9-A0C1-A0D753B1415A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8DC1D68F-2CD8-4EB9-A0C1-A0D753B1415A",
                   "udid" : "8DC1D68F-2CD8-4EB9-A0C1-A0D753B1415A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/27BD2454-575B-47F9-A358-79442D552CDE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/27BD2454-575B-47F9-A358-79442D552CDE",
                   "udid" : "27BD2454-575B-47F9-A358-79442D552CDE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/45876681-8EFF-465D-AEA4-671CB400EEAE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/45876681-8EFF-465D-AEA4-671CB400EEAE",
                   "udid" : "45876681-8EFF-465D-AEA4-671CB400EEAE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0488FFAE-6A90-43D5-BAD4-1B5253A6093C\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0488FFAE-6A90-43D5-BAD4-1B5253A6093C",
                   "udid" : "0488FFAE-6A90-43D5-BAD4-1B5253A6093C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/1C9E53BE-A5EA-4214-9424-1277AFC7DEA5\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/1C9E53BE-A5EA-4214-9424-1277AFC7DEA5",
                   "udid" : "1C9E53BE-A5EA-4214-9424-1277AFC7DEA5",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 mini"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2055D861-270F-4844-B5F4-F05B5287FA9A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2055D861-270F-4844-B5F4-F05B5287FA9A",
                   "udid" : "2055D861-270F-4844-B5F4-F05B5287FA9A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12",
                   "state" : "Shutdown",
                   "name" : "iPhone 12"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/EDFCFCE7-32F7-485B-B7C7-F948A0F47303\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/EDFCFCE7-32F7-485B-B7C7-F948A0F47303",
                   "udid" : "EDFCFCE7-32F7-485B-B7C7-F948A0F47303",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/1FF10486-6870-4741-BF0E-AB4339A25F4A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/1FF10486-6870-4741-BF0E-AB4339A25F4A",
                   "udid" : "1FF10486-6870-4741-BF0E-AB4339A25F4A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/367B9BEA-DC34-48E2-9E1B-B3AE556279F1\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/367B9BEA-DC34-48E2-9E1B-B3AE556279F1",
                   "udid" : "367B9BEA-DC34-48E2-9E1B-B3AE556279F1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPod touch (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/266ECDED-96A1-43D4-AAED-FA7C03961701\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/266ECDED-96A1-43D4-AAED-FA7C03961701",
                   "udid" : "266ECDED-96A1-43D4-AAED-FA7C03961701",
                   "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\/andy\/Library\/Developer\/CoreSimulator\/Devices\/68385417-A4C2-4B7A-829E-6EFC8D294FCF\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/68385417-A4C2-4B7A-829E-6EFC8D294FCF",
                   "udid" : "68385417-A4C2-4B7A-829E-6EFC8D294FCF",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E3E3102A-87A6-4AE0-B99D-A908153E9CB9\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E3E3102A-87A6-4AE0-B99D-A908153E9CB9",
                   "udid" : "E3E3102A-87A6-4AE0-B99D-A908153E9CB9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/78907250-D8A6-4FE9-8CDD-98D3CB18E5AD\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/78907250-D8A6-4FE9-8CDD-98D3CB18E5AD",
                   "udid" : "78907250-D8A6-4FE9-8CDD-98D3CB18E5AD",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (8th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/51C83A90-5EFC-4679-829F-0A0D5A08F445\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/51C83A90-5EFC-4679-829F-0A0D5A08F445",
                   "udid" : "51C83A90-5EFC-4679-829F-0A0D5A08F445",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (4th generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/26CF290B-C8BE-4D29-AAD2-332673D524CD\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/26CF290B-C8BE-4D29-AAD2-332673D524CD",
                   "udid" : "26CF290B-C8BE-4D29-AAD2-332673D524CD",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/388A1916-BC68-468C-B8A0-F9EF27C3BE44\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/388A1916-BC68-468C-B8A0-F9EF27C3BE44",
                   "udid" : "388A1916-BC68-468C-B8A0-F9EF27C3BE44",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DF9C0932-C853-4AF4-8546-745151BA0390\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DF9C0932-C853-4AF4-8546-745151BA0390",
                   "udid" : "DF9C0932-C853-4AF4-8546-745151BA0390",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/73494258-F819-4FB7-9082-A97765F5ADF0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/73494258-F819-4FB7-9082-A97765F5ADF0",
                   "udid" : "73494258-F819-4FB7-9082-A97765F5ADF0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-7-4" : [
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35",
                   "udid" : "2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8BA919BF-F533-41E7-B5A1-0EF74A6A19EB\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8BA919BF-F533-41E7-B5A1-0EF74A6A19EB",
                   "udid" : "8BA919BF-F533-41E7-B5A1-0EF74A6A19EB",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6850E51F-BDA6-402F-9AA7-25D5660644DB\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6850E51F-BDA6-402F-9AA7-25D5660644DB",
                   "udid" : "6850E51F-BDA6-402F-9AA7-25D5660644DB",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 40mm"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B",
                   "udid" : "8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-14-5" : [
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8",
                   "udid" : "B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/D0DE5203-6DA3-452B-9C46-BB4AE25CEC48\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/D0DE5203-6DA3-452B-9C46-BB4AE25CEC48",
                   "udid" : "D0DE5203-6DA3-452B-9C46-BB4AE25CEC48",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2201789C-C67A-4502-80C0-66171D041232\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2201789C-C67A-4502-80C0-66171D041232",
                   "udid" : "2201789C-C67A-4502-80C0-66171D041232",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/AFCB1A16-01F4-4050-A8E1-516F42AAA2E4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/AFCB1A16-01F4-4050-A8E1-516F42AAA2E4",
                   "udid" : "AFCB1A16-01F4-4050-A8E1-516F42AAA2E4",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/E6DCDC87-18C7-460D-9758-E065102D046A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/E6DCDC87-18C7-460D-9758-E065102D046A",
                   "udid" : "E6DCDC87-18C7-460D-9758-E065102D046A",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0DE03678-4397-4224-A028-230441D50691\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0DE03678-4397-4224-A028-230441D50691",
                   "udid" : "0DE03678-4397-4224-A028-230441D50691",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/6A63795A-F026-4B47-B022-3775C18E3CF4\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/6A63795A-F026-4B47-B022-3775C18E3CF4",
                   "udid" : "6A63795A-F026-4B47-B022-3775C18E3CF4",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 mini"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/5FB4751D-10B3-4671-992B-D0E5D6BE6B62\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/5FB4751D-10B3-4671-992B-D0E5D6BE6B62",
                   "udid" : "5FB4751D-10B3-4671-992B-D0E5D6BE6B62",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12",
                   "state" : "Shutdown",
                   "name" : "iPhone 12"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91",
                   "udid" : "EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/089702FC-BED3-47AB-9B0F-DD6783CFF2B3\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/089702FC-BED3-47AB-9B0F-DD6783CFF2B3",
                   "udid" : "089702FC-BED3-47AB-9B0F-DD6783CFF2B3",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 12 Pro Max"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/B072C521-8E07-4C09-A824-5CF8379A4884\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B072C521-8E07-4C09-A824-5CF8379A4884",
                   "udid" : "B072C521-8E07-4C09-A824-5CF8379A4884",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPod touch (7th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/2E89B113-4A12-44B5-AF48-A757678D1636\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2E89B113-4A12-44B5-AF48-A757678D1636",
                   "udid" : "2E89B113-4A12-44B5-AF48-A757678D1636",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/20D737F5-9FCD-4448-8B76-B791DA5FBEFA\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
                   "udid" : "20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (8th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
                   "udid" : "3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (4th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/8CFABB51-EB46-4303-AA87-43BD658EC028\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8CFABB51-EB46-4303-AA87-43BD658EC028",
                   "udid" : "8CFABB51-EB46-4303-AA87-43BD658EC028",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (3rd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/DD2525DA-A908-49FD-B86B-888D5B02A84D\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DD2525DA-A908-49FD-B86B-888D5B02A84D",
                   "udid" : "DD2525DA-A908-49FD-B86B-888D5B02A84D",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (5th generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-14-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/0893AEA9-19B4-464F-9D56-918BCCC4FDBE\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0893AEA9-19B4-464F-9D56-918BCCC4FDBE",
                   "udid" : "0893AEA9-19B4-464F-9D56-918BCCC4FDBE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/C4544040-F02F-468F-8807-43C1FA6B3278\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/C4544040-F02F-468F-8807-43C1FA6B3278",
                   "udid" : "C4544040-F02F-468F-8807-43C1FA6B3278",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/790AC9CC-F639-402F-8E67-AAD09F4A887A\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/790AC9CC-F639-402F-8E67-AAD09F4A887A",
                   "udid" : "790AC9CC-F639-402F-8E67-AAD09F4A887A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-7-2" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/888A09CA-7372-4D77-8E50-91138C64F0E0\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/888A09CA-7372-4D77-8E50-91138C64F0E0",
                   "udid" : "888A09CA-7372-4D77-8E50-91138C64F0E0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/5591A003-EAA8-4D64-BC4F-049B941BB2E3\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/5591A003-EAA8-4D64-BC4F-049B941BB2E3",
                   "udid" : "5591A003-EAA8-4D64-BC4F-049B941BB2E3",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/24352FAF-C21F-48A5-B270-01CF21A58737\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/24352FAF-C21F-48A5-B270-01CF21A58737",
                   "udid" : "24352FAF-C21F-48A5-B270-01CF21A58737",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/andy\/Library\/Developer\/CoreSimulator\/Devices\/7DFA51CF-6A97-429E-8189-8D4050865495\/data",
                   "logPath" : "\/Users\/andy\/Library\/Logs\/CoreSimulator\/7DFA51CF-6A97-429E-8189-8D4050865495",
                   "udid" : "7DFA51CF-6A97-429E-8189-8D4050865495",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 6 - 44mm"
                 }
               ]
             }
           }
[+1631 ms] > Task :app:compileFlutterBuildDebug UP-TO-DATE
[   +1 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[        ] > Task :app:preBuild UP-TO-DATE
[        ] > Task :app:preDebugBuild UP-TO-DATE
[        ] > Task :app:compileDebugAidl NO-SOURCE
[        ] > Task :app:compileDebugRenderscript NO-SOURCE
[        ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[  +66 ms] > Task :app:checkDebugAarMetadata UP-TO-DATE
[        ] > Task :app:cleanMergeDebugAssets
[        ] > Task :app:mergeDebugShaders UP-TO-DATE
[        ] > Task :app:compileDebugShaders NO-SOURCE
[        ] > Task :app:generateDebugAssets UP-TO-DATE
[        ] > Task :app:mergeDebugAssets
[ +399 ms] > Task :app:copyFlutterAssetsDebug
[        ] > Task :app:generateDebugResValues UP-TO-DATE
[        ] > Task :app:generateDebugResources UP-TO-DATE
[        ] > Task :app:mergeDebugResources UP-TO-DATE
[        ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[        ] > Task :app:extractDeepLinksDebug UP-TO-DATE
[        ] > Task :app:processDebugMainManifest UP-TO-DATE
[        ] > Task :app:processDebugManifest UP-TO-DATE
[        ] > Task :app:processDebugManifestForPackage UP-TO-DATE
[  +97 ms] > Task :app:processDebugResources UP-TO-DATE
[        ] > Task :app:compileDebugKotlin UP-TO-DATE
[        ] > Task :app:javaPreCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :app:compileDebugSources UP-TO-DATE
[        ] > Task :app:mergeDebugNativeDebugMetadata NO-SOURCE
[        ] > Task :app:compressDebugAssets UP-TO-DATE
[        ] > Task :app:processDebugJavaRes NO-SOURCE
[        ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[        ] > Task :app:dexBuilderDebug UP-TO-DATE
[        ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[        ] > Task :app:mergeExtDexDebug UP-TO-DATE
[        ] > Task :app:mergeDexDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[  +34 ms] [
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPod9,1",
               "identifier" : "B072C521-8E07-4C09-A824-5CF8379A4884",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.ipod-touch-7-2",
               "modelName" : "iPod touch (7th generation)",
               "name" : "iPod touch (7th generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,8",
               "identifier" : "0DE03678-4397-4224-A028-230441D50691",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-se-1",
               "modelName" : "iPhone SE (2nd generation)",
               "name" : "iPhone SE (2nd generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,1",
               "identifier" : "6A63795A-F026-4B47-B022-3775C18E3CF4",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-mini-1",
               "modelName" : "iPhone 12 mini",
               "name" : "iPhone 12 mini"
             },
             {
               "modelCode" : "iPhone10,3",
               "simulator" : false,
               "modelName" : "iPhone X (Model A1865, A1901, A1902, A1903)",
               "error" : {
                 "code" : -13,
                 "failureReason" : "",
                 "underlyingErrors" : [
                   {
                     "code" : 3,
                     "failureReason" : "",
                     "description" : "顾小良的iPhone is locked.",
                     "recoverySuggestion" : "To use 顾小良的iPhone with Xcode, unlock it.",
                     "domain" : "DVTDeviceIneligibilityErrorDomain"
                   }
                 ],
                 "description" : "顾小良的iPhone is not connected",
                 "recoverySuggestion" : "Xcode will continue when 顾小良的iPhone is connected.",
                 "domain" : "com.apple.platform.iphoneos"
               },
               "operatingSystemVersion" : "14.5 (18E199)",
               "identifier" : "ddcf9af7fd9b62bb9bc1aeede463f0902279b898",
               "platform" : "com.apple.platform.iphoneos",
               "architecture" : "arm64",
               "interface" : "usb",
               "available" : false,
               "name" : "顾小良的iPhone",
               "modelUTI" : "com.apple.iphone-x-1"
             },
             {
               "modelCode" : "iPhone12,1",
               "simulator" : false,
               "modelName" : "iPhone 11",
               "error" : {
                 "code" : -13,
                 "failureReason" : "",
                 "underlyingErrors" : [
                   {
                     "code" : 3,
                     "failureReason" : "",
                     "description" : "骑上我心爱的小摩托~ is locked.",
                     "recoverySuggestion" : "To use 骑上我心爱的小摩托~ with Xcode, unlock it.",
                     "domain" : "DVTDeviceIneligibilityErrorDomain"
                   }
                 ],
                 "description" : "骑上我心爱的小摩托~ is not connected",
                 "recoverySuggestion" : "Xcode will continue when 骑上我心爱的小摩托~ is connected.",
                 "domain" : "com.apple.platform.iphoneos"
               },
               "operatingSystemVersion" : "14.3 (18C66)",
               "identifier" : "00008030-001C118C34B8802E",
               "platform" : "com.apple.platform.iphoneos",
               "architecture" : "arm64e",
               "interface" : "usb",
               "available" : false,
               "name" : "骑上我心爱的小摩托~",
               "modelUTI" : "com.apple.iphone-11-2"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad6,4",
               "identifier" : "2E89B113-4A12-44B5-AF48-A757678D1636",
               "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" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone10,5",
               "identifier" : "D0DE5203-6DA3-452B-9C46-BB4AE25CEC48",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-8-plus-2",
               "modelName" : "iPhone 8 Plus",
               "name" : "iPhone 8 Plus"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad11,7",
               "identifier" : "20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.ipad-8-wwan-1",
               "modelName" : "iPad (8th generation)",
               "name" : "iPad (8th generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,3",
               "identifier" : "EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-pro-1",
               "modelName" : "iPhone 12 Pro",
               "name" : "iPhone 12 Pro"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad13,5",
               "identifier" : "8CFABB51-EB46-4303-AA87-43BD658EC028",
               "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" : "14.5 (18L191)",
               "available" : true,
               "platform" : "com.apple.platform.appletvsimulator",
               "modelCode" : "AppleTV11,1",
               "identifier" : "B5B885AE-25EB-489F-A8F4-185A936FD0E5",
               "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" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,4",
               "identifier" : "089702FC-BED3-47AB-9B0F-DD6783CFF2B3",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-pro-max-1",
               "modelName" : "iPhone 12 Pro Max",
               "name" : "iPhone 12 Pro Max"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch5,4",
               "identifier" : "8BA919BF-F533-41E7-B5A1-0EF74A6A19EB",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series5-1",
               "modelName" : "Apple Watch Series 5 - 44mm",
               "name" : "Apple Watch Series 5 - 44mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone10,4",
               "identifier" : "B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-8-2",
               "modelName" : "iPhone 8",
               "name" : "iPhone 8"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18L191)",
               "available" : true,
               "platform" : "com.apple.platform.appletvsimulator",
               "modelCode" : "AppleTV11,1",
               "identifier" : "53805704-DE0F-46EE-8B2B-5113DFE015D7",
               "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" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch6,2",
               "identifier" : "8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series6-1",
               "modelName" : "Apple Watch Series 6 - 44mm",
               "name" : "Apple Watch Series 6 - 44mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18L191)",
               "available" : true,
               "platform" : "com.apple.platform.appletvsimulator",
               "modelCode" : "AppleTV5,3",
               "identifier" : "49F1DDF0-C84D-4F35-AC08-F287D0BC62D8",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.apple-tv-4",
               "modelName" : "Apple TV",
               "name" : "Apple TV"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,5",
               "identifier" : "E6DCDC87-18C7-460D-9758-E065102D046A",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-11-pro-max-1",
               "modelName" : "iPhone 11 Pro Max",
               "name" : "iPhone 11 Pro Max"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad13,2",
               "identifier" : "3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.ipad-air4-1",
               "modelName" : "iPad Air (4th generation)",
               "name" : "iPad Air (4th generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,3",
               "identifier" : "AFCB1A16-01F4-4050-A8E1-516F42AAA2E4",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-11-pro-1",
               "modelName" : "iPhone 11 Pro",
               "name" : "iPhone 11 Pro"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,2",
               "identifier" : "5FB4751D-10B3-4671-992B-D0E5D6BE6B62",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-1",
               "modelName" : "iPhone 12",
               "name" : "iPhone 12"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,1",
               "identifier" : "2201789C-C67A-4502-80C0-66171D041232",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-11-1",
               "modelName" : "iPhone 11",
               "name" : "iPhone 11"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch6,1",
               "identifier" : "6850E51F-BDA6-402F-9AA7-25D5660644DB",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series6-1",
               "modelName" : "Apple Watch Series 6 - 40mm",
               "name" : "Apple Watch Series 6 - 40mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch5,3",
               "identifier" : "2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series5-1",
               "modelName" : "Apple Watch Series 5 - 40mm",
               "name" : "Apple Watch Series 5 - 40mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad13,10",
               "identifier" : "DD2525DA-A908-49FD-B86B-888D5B02A84D",
               "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)"
             }
           ]
[   +5 ms] Error: 顾小良的iPhone is not connected. Xcode will continue when 顾小良的iPhone is connected. (code -13)
[        ] Error: 骑上我心爱的小摩托~ is not connected. Xcode will continue when 骑上我心爱的小摩托~ is connected. (code -13)
[        ] [
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPod9,1",
               "identifier" : "B072C521-8E07-4C09-A824-5CF8379A4884",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.ipod-touch-7-2",
               "modelName" : "iPod touch (7th generation)",
               "name" : "iPod touch (7th generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,8",
               "identifier" : "0DE03678-4397-4224-A028-230441D50691",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-se-1",
               "modelName" : "iPhone SE (2nd generation)",
               "name" : "iPhone SE (2nd generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,1",
               "identifier" : "6A63795A-F026-4B47-B022-3775C18E3CF4",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-mini-1",
               "modelName" : "iPhone 12 mini",
               "name" : "iPhone 12 mini"
             },
             {
               "modelCode" : "iPhone10,3",
               "simulator" : false,
               "modelName" : "iPhone X (Model A1865, A1901, A1902, A1903)",
               "error" : {
                 "code" : -13,
                 "failureReason" : "",
                 "underlyingErrors" : [
                   {
                     "code" : 3,
                     "failureReason" : "",
                     "description" : "顾小良的iPhone is locked.",
                     "recoverySuggestion" : "To use 顾小良的iPhone with Xcode, unlock it.",
                     "domain" : "DVTDeviceIneligibilityErrorDomain"
                   }
                 ],
                 "description" : "顾小良的iPhone is not connected",
                 "recoverySuggestion" : "Xcode will continue when 顾小良的iPhone is connected.",
                 "domain" : "com.apple.platform.iphoneos"
               },
               "operatingSystemVersion" : "14.5 (18E199)",
               "identifier" : "ddcf9af7fd9b62bb9bc1aeede463f0902279b898",
               "platform" : "com.apple.platform.iphoneos",
               "architecture" : "arm64",
               "interface" : "usb",
               "available" : false,
               "name" : "顾小良的iPhone",
               "modelUTI" : "com.apple.iphone-x-1"
             },
             {
               "modelCode" : "iPhone12,1",
               "simulator" : false,
               "modelName" : "iPhone 11",
               "error" : {
                 "code" : -13,
                 "failureReason" : "",
                 "underlyingErrors" : [
                   {
                     "code" : 3,
                     "failureReason" : "",
                     "description" : "骑上我心爱的小摩托~ is locked.",
                     "recoverySuggestion" : "To use 骑上我心爱的小摩托~ with Xcode, unlock it.",
                     "domain" : "DVTDeviceIneligibilityErrorDomain"
                   }
                 ],
                 "description" : "骑上我心爱的小摩托~ is not connected",
                 "recoverySuggestion" : "Xcode will continue when 骑上我心爱的小摩托~ is connected.",
                 "domain" : "com.apple.platform.iphoneos"
               },
               "operatingSystemVersion" : "14.3 (18C66)",
               "identifier" : "00008030-001C118C34B8802E",
               "platform" : "com.apple.platform.iphoneos",
               "architecture" : "arm64e",
               "interface" : "usb",
               "available" : false,
               "name" : "骑上我心爱的小摩托~",
               "modelUTI" : "com.apple.iphone-11-2"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad6,4",
               "identifier" : "2E89B113-4A12-44B5-AF48-A757678D1636",
               "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" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone10,5",
               "identifier" : "D0DE5203-6DA3-452B-9C46-BB4AE25CEC48",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-8-plus-2",
               "modelName" : "iPhone 8 Plus",
               "name" : "iPhone 8 Plus"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad11,7",
               "identifier" : "20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.ipad-8-wwan-1",
               "modelName" : "iPad (8th generation)",
               "name" : "iPad (8th generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,3",
               "identifier" : "EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-pro-1",
               "modelName" : "iPhone 12 Pro",
               "name" : "iPhone 12 Pro"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad13,5",
               "identifier" : "8CFABB51-EB46-4303-AA87-43BD658EC028",
               "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" : "14.5 (18L191)",
               "available" : true,
               "platform" : "com.apple.platform.appletvsimulator",
               "modelCode" : "AppleTV11,1",
               "identifier" : "B5B885AE-25EB-489F-A8F4-185A936FD0E5",
               "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" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,4",
               "identifier" : "089702FC-BED3-47AB-9B0F-DD6783CFF2B3",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-pro-max-1",
               "modelName" : "iPhone 12 Pro Max",
               "name" : "iPhone 12 Pro Max"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch5,4",
               "identifier" : "8BA919BF-F533-41E7-B5A1-0EF74A6A19EB",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series5-1",
               "modelName" : "Apple Watch Series 5 - 44mm",
               "name" : "Apple Watch Series 5 - 44mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone10,4",
               "identifier" : "B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-8-2",
               "modelName" : "iPhone 8",
               "name" : "iPhone 8"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18L191)",
               "available" : true,
               "platform" : "com.apple.platform.appletvsimulator",
               "modelCode" : "AppleTV11,1",
               "identifier" : "53805704-DE0F-46EE-8B2B-5113DFE015D7",
               "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" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch6,2",
               "identifier" : "8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series6-1",
               "modelName" : "Apple Watch Series 6 - 44mm",
               "name" : "Apple Watch Series 6 - 44mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18L191)",
               "available" : true,
               "platform" : "com.apple.platform.appletvsimulator",
               "modelCode" : "AppleTV5,3",
               "identifier" : "49F1DDF0-C84D-4F35-AC08-F287D0BC62D8",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.apple-tv-4",
               "modelName" : "Apple TV",
               "name" : "Apple TV"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,5",
               "identifier" : "E6DCDC87-18C7-460D-9758-E065102D046A",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-11-pro-max-1",
               "modelName" : "iPhone 11 Pro Max",
               "name" : "iPhone 11 Pro Max"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad13,2",
               "identifier" : "3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.ipad-air4-1",
               "modelName" : "iPad Air (4th generation)",
               "name" : "iPad Air (4th generation)"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,3",
               "identifier" : "AFCB1A16-01F4-4050-A8E1-516F42AAA2E4",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-11-pro-1",
               "modelName" : "iPhone 11 Pro",
               "name" : "iPhone 11 Pro"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone13,2",
               "identifier" : "5FB4751D-10B3-4671-992B-D0E5D6BE6B62",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-12-1",
               "modelName" : "iPhone 12",
               "name" : "iPhone 12"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPhone12,1",
               "identifier" : "2201789C-C67A-4502-80C0-66171D041232",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.iphone-11-1",
               "modelName" : "iPhone 11",
               "name" : "iPhone 11"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch6,1",
               "identifier" : "6850E51F-BDA6-402F-9AA7-25D5660644DB",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series6-1",
               "modelName" : "Apple Watch Series 6 - 40mm",
               "name" : "Apple Watch Series 6 - 40mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "7.4 (18T187)",
               "available" : true,
               "platform" : "com.apple.platform.watchsimulator",
               "modelCode" : "Watch5,3",
               "identifier" : "2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35",
               "architecture" : "x86_64",
               "modelUTI" : "com.apple.watch-series5-1",
               "modelName" : "Apple Watch Series 5 - 40mm",
               "name" : "Apple Watch Series 5 - 40mm"
             },
             {
               "simulator" : true,
               "operatingSystemVersion" : "14.5 (18E182)",
               "available" : true,
               "platform" : "com.apple.platform.iphonesimulator",
               "modelCode" : "iPad13,10",
               "identifier" : "DD2525DA-A908-49FD-B86B-888D5B02A84D",
               "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)"
             }
           ]
[   +2 ms] Error: 顾小良的iPhone is not connected. Xcode will continue when 顾小良的iPhone is connected. (code -13)
[        ] Error: 骑上我心爱的小摩托~ is not connected. Xcode will continue when 骑上我心爱的小摩托~ is connected. (code -13)
[  +54 ms] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :app:validateSigningDebug UP-TO-DATE
[        ] > Task :app:packageDebug UP-TO-DATE
[ +100 ms] > Task :app:assembleDebug
[        ] Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
[        ] Use '--warning-mode all' to show the individual deprecation warnings.
[        ] See https://docs.gradle.org/6.7/userguide/command_line_interface.html#sec:command_line_warnings
[        ] BUILD SUCCESSFUL in 2s
[        ] 32 actionable tasks: 4 executed, 28 up-to-date
[ +428 ms] calculateSha: LocalDirectory: '/Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk'/app.apk
[ +462 ms] ✓  Built build/app/outputs/flutter-apk/app-debug.apk.
[   +3 ms] executing: /Users/andy/Android/build-tools/30.0.3/aapt dump xmltree /Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[  +15 ms] Exit code 0 from: /Users/andy/Android/build-tools/30.0.3/aapt dump xmltree /Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1e
               A: android:compileSdkVersionCodename(0x01010573)="11" (Raw: "11")
               A: package="com.example.flu_twice" (Raw: "com.example.flu_twice")
               A: platformBuildVersionCode=(type 0x10)0x1e
               A: platformBuildVersionName=(type 0x10)0xb
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1e
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: application (line=16)
                 A: android:label(0x01010001)="flu_twice" (Raw: "flu_twice")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=21)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.flu_twice.MainActivity" (Raw: "com.example.flu_twice.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=35)
                     A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=45)
                     A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040000
                   E: intent-filter (line=49)
                     E: action (line=50)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=52)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=59)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[   +2 ms] Stopping app 'app.apk' on sdk gphone x86.
[        ] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell am force-stop com.example.flu_twice
[  +78 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell pm list packages com.example.flu_twice
[  +72 ms] package:com.example.flu_twice
[   +3 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.example.flu_twice.sha1
[  +37 ms] cba3d63b64fc67f53db0e7f0cc7c0c1c36abbd4c
[   +1 ms] Latest build already installed.
[        ] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[  +68 ms] --------- beginning of main
           07-09 14:18:09.011 I/cmd     (18689): oneway function results will be dropped but finished with status OK and parcel size 4
[  +25 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez enable-checked-mode true --ez verify-entry-points true --ez start-paused true com.example.flu_twice/com.example.flu_twice.MainActivity
[  +88 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.flu_twice/.MainActivity (has extras) }
[        ] Waiting for observatory port to be available...
[+1110 ms] Observatory URL on device: http://127.0.0.1:39441/ZPHm-QLSz7M=/
[   +1 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:39441
[  +12 ms] 55704
[   +2 ms] Forwarded host port 55704 to device port 39441 for Observatory
[+2673 ms] Caching compiled dill
[  +35 ms] Connecting to service protocol: http://127.0.0.1:55704/ZPHm-QLSz7M=/
[ +331 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:55704/ZPHm-QLSz7M=/.
[ +103 ms] DDS is listening at http://127.0.0.1:55718/gZKa4owWPH4=/.
[  +56 ms] Successfully connected to service protocol: http://127.0.0.1:55704/ZPHm-QLSz7M=/
[  +25 ms] DevFS: Creating new filesystem on the device (null)
[  +52 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.flu_twice/code_cache/flu_twiceVIKTBM/flu_twice/)
[   +2 ms] Updating assets
Debug service listening on ws://127.0.0.1:55718/gZKa4owWPH4=/ws
Syncing files to device sdk gphone x86...
[  +73 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +2 ms] <- recompile package:flu_twice/main.dart 8d122f4f-9c70-495b-81ba-f96852bd3fd7
[        ] <- 8d122f4f-9c70-495b-81ba-f96852bd3fd7
[  +75 ms] Updating files.
[        ] DevFS: Sync finished
[        ] Synced 0.0MB.
[        ] <- accept
[  +13 ms] Connected to _flutterView/0xf354e020.
[ +473 ms] I/flutter (18711): run app...
[ +401 ms] I/flutter (18711): MyApp build.....
[+2049 ms] I/flutter (18711): MyApp build.....
[+397825 ms] Service protocol connection closed.
[   +1 ms] Lost connection to device.
[   +3 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward --list
[  +19 ms] Exit code 0 from: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward --list
[   +2 ms] emulator-5554 tcp:55704 tcp:39441
[   +3 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward --remove tcp:55704
[  +13 ms] DevFS: Deleting filesystem on the device (file:///data/user/0/com.example.flu_twice/code_cache/flu_twiceVIKTBM/flu_twice/)
[  +25 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward --list
[  +17 ms] Exit code 0 from: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward --list
[   +2 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward --list
[  +23 ms] Exit code 0 from: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward --list
[  +24 ms] "flutter run" took 414,185ms.

Terminal run flutter run --debug --verbose

                            "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro
                            -Max",
                            "state" : "Shutdown",
                            "name" : "iPhone 12 Pro Max"
                          },
                          {
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/B072C521-8E07-4C09-A824-5CF8379A4884\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/B072C5
                            21-8E07-4C09-A824-5CF8379A4884",
                            "udid" : "B072C521-8E07-4C09-A824-5CF8379A4884",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7
                            th-generation-",
                            "state" : "Shutdown",
                            "name" : "iPod touch (7th generation)"
                          },
                          {
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/2E89B113-4A12-44B5-AF48-A757678D1636\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/2E89B1
                            13-4A12-44B5-AF48-A757678D1636",
                            "udid" : "2E89B113-4A12-44B5-AF48-A757678D1636",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7
                            -inch-",
                            "state" : "Shutdown",
                            "name" : "iPad Pro (9.7-inch)"
                          },
                          {
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/20D737F5-9FCD-4448-8B76-B791DA5FBEFA\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/20D737
                            F5-9FCD-4448-8B76-B791DA5FBEFA",
                            "udid" : "20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.iPad--8th-gen
                            eration-",
                            "state" : "Shutdown",
                            "name" : "iPad (8th generation)"
                          },
                          {
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/3DDDDB
                            F7-29DC-4ADA-AC09-DFDD6E57CB58",
                            "udid" : "3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th
                            -generation-",
                            "state" : "Shutdown",
                            "name" : "iPad Air (4th generation)"
                          },
                          {
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/8CFABB51-EB46-4303-AA87-43BD658EC028\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/8CFABB
                            51-EB46-4303-AA87-43BD658EC028",
                            "udid" : "8CFABB51-EB46-4303-AA87-43BD658EC028",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-i
                            nch-3rd-generation",
                            "state" : "Shutdown",
                            "name" : "iPad Pro (11-inch) (3rd generation)"
                          },
                          {
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/DD2525DA-A908-49FD-B86B-888D5B02A84D\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/DD2525
                            DA-A908-49FD-B86B-888D5B02A84D",
                            "udid" : "DD2525DA-A908-49FD-B86B-888D5B02A84D",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9
                            -inch-5th-generation",
                            "state" : "Shutdown",
                            "name" : "iPad Pro (12.9-inch) (5th generation)"
                          }
                        ],
                        "com.apple.CoreSimulator.SimRuntime.tvOS-14-0" : [
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/0893AEA9-19B4-464F-9D56-918BCCC4FDBE\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/0893AE
                            A9-19B4-464F-9D56-918BCCC4FDBE",
                            "udid" : "0893AEA9-19B4-464F-9D56-918BCCC4FDBE",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080
                            p",
                            "state" : "Shutdown",
                            "name" : "Apple TV"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/C4544040-F02F-468F-8807-43C1FA6B3278\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/C45440
                            40-F02F-468F-8807-43C1FA6B3278",
                            "udid" : "C4544040-F02F-468F-8807-43C1FA6B3278",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4
                            K",
                            "state" : "Shutdown",
                            "name" : "Apple TV 4K"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/790AC9CC-F639-402F-8E67-AAD09F4A887A\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/790AC9
                            CC-F639-402F-8E67-AAD09F4A887A",
                            "udid" : "790AC9CC-F639-402F-8E67-AAD09F4A887A",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1
                            080p",
                            "state" : "Shutdown",
                            "name" : "Apple TV 4K (at 1080p)"
                          }
                        ],
                        "com.apple.CoreSimulator.SimRuntime.watchOS-7-2" : [
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/888A09CA-7372-4D77-8E50-91138C64F0E0\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/888A09
                            CA-7372-4D77-8E50-91138C64F0E0",
                            "udid" : "888A09CA-7372-4D77-8E50-91138C64F0E0",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S
                            eries-5-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 40mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/5591A003-EAA8-4D64-BC4F-049B941BB2E3\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/5591A0
                            03-EAA8-4D64-BC4F-049B941BB2E3",
                            "udid" : "5591A003-EAA8-4D64-BC4F-049B941BB2E3",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S
                            eries-5-44mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 44mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/24352FAF-C21F-48A5-B270-01CF21A58737\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/24352F
                            AF-C21F-48A5-B270-01CF21A58737",
                            "udid" : "24352FAF-C21F-48A5-B270-01CF21A58737",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S
                            eries-6-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 6 - 40mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" :
                            "\/Users\/andy\/Library\/Developer\/CoreSimulator\/D
                            evices\/7DFA51CF-6A97-429E-8189-8D4050865495\/data",
                            "logPath" :
                            "\/Users\/andy\/Library\/Logs\/CoreSimulator\/7DFA51
                            CF-6A97-429E-8189-8D4050865495",
                            "udid" : "7DFA51CF-6A97-429E-8189-8D4050865495",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" :
                            "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-S
                            eries-6-44mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 6 - 44mm"
                          }
                        ]
                      }
                    }
[+3489 ms] [
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPod9,1",
                        "identifier" : "B072C521-8E07-4C09-A824-5CF8379A4884",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipod-touch-7-2",
                        "modelName" : "iPod touch (7th generation)",
                        "name" : "iPod touch (7th generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,8",
                        "identifier" : "0DE03678-4397-4224-A028-230441D50691",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-se-1",
                        "modelName" : "iPhone SE (2nd generation)",
                        "name" : "iPhone SE (2nd generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone13,1",
                        "identifier" : "6A63795A-F026-4B47-B022-3775C18E3CF4",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-12-mini-1",
                        "modelName" : "iPhone 12 mini",
                        "name" : "iPhone 12 mini"
                      },
                      {
                        "modelCode" : "iPhone10,3",
                        "simulator" : false,
                        "modelName" : "iPhone X (Model A1865, A1901, A1902,
                        A1903)",
                        "error" : {
                          "code" : -13,
                          "failureReason" : "",
                          "underlyingErrors" : [
                            {
                              "code" : 3,
                              "failureReason" : "",
                              "description" : "顾小良的iPhone is locked.",
                              "recoverySuggestion" : "To use 顾小良的iPhone with
                              Xcode, unlock it.",
                              "domain" : "DVTDeviceIneligibilityErrorDomain"
                            }
                          ],
                          "description" : "顾小良的iPhone is not connected",
                          "recoverySuggestion" : "Xcode will continue when
                          顾小良的iPhone is connected.",
                          "domain" : "com.apple.platform.iphoneos"
                        },
                        "operatingSystemVersion" : "14.5 (18E199)",
                        "identifier" :
                        "ddcf9af7fd9b62bb9bc1aeede463f0902279b898",
                        "platform" : "com.apple.platform.iphoneos",
                        "architecture" : "arm64",
                        "interface" : "usb",
                        "available" : false,
                        "name" : "顾小良的iPhone",
                        "modelUTI" : "com.apple.iphone-x-1"
                      },
                      {
                        "modelCode" : "iPhone12,1",
                        "simulator" : false,
                        "modelName" : "iPhone 11",
                        "error" : {
                          "code" : -13,
                          "failureReason" : "",
                          "underlyingErrors" : [
                            {
                              "code" : 3,
                              "failureReason" : "",
                              "description" : "骑上我心爱的小摩托~ is locked.",
                              "recoverySuggestion" : "To use 骑上我心爱的小摩托~ with
                              Xcode, unlock it.",
                              "domain" : "DVTDeviceIneligibilityErrorDomain"
                            }
                          ],
                          "description" : "骑上我心爱的小摩托~ is not connected",
                          "recoverySuggestion" : "Xcode will continue when
                          骑上我心爱的小摩托~ is connected.",
                          "domain" : "com.apple.platform.iphoneos"
                        },
                        "operatingSystemVersion" : "14.3 (18C66)",
                        "identifier" : "00008030-001C118C34B8802E",
                        "platform" : "com.apple.platform.iphoneos",
                        "architecture" : "arm64e",
                        "interface" : "usb",
                        "available" : false,
                        "name" : "骑上我心爱的小摩托~",
                        "modelUTI" : "com.apple.iphone-11-2"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad6,4",
                        "identifier" : "2E89B113-4A12-44B5-AF48-A757678D1636",
                        "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" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone10,5",
                        "identifier" : "D0DE5203-6DA3-452B-9C46-BB4AE25CEC48",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-8-plus-2",
                        "modelName" : "iPhone 8 Plus",
                        "name" : "iPhone 8 Plus"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad11,7",
                        "identifier" : "20D737F5-9FCD-4448-8B76-B791DA5FBEFA",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-8-wwan-1",
                        "modelName" : "iPad (8th generation)",
                        "name" : "iPad (8th generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone13,3",
                        "identifier" : "EA7CD3AD-7DC2-4E3F-AF96-F79725B2BF91",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-12-pro-1",
                        "modelName" : "iPhone 12 Pro",
                        "name" : "iPhone 12 Pro"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad13,5",
                        "identifier" : "8CFABB51-EB46-4303-AA87-43BD658EC028",
                        "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" : "14.5 (18L191)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV11,1",
                        "identifier" : "B5B885AE-25EB-489F-A8F4-185A936FD0E5",
                        "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" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone13,4",
                        "identifier" : "089702FC-BED3-47AB-9B0F-DD6783CFF2B3",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-12-pro-max-1",
                        "modelName" : "iPhone 12 Pro Max",
                        "name" : "iPhone 12 Pro Max"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "7.4 (18T187)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch5,4",
                        "identifier" : "8BA919BF-F533-41E7-B5A1-0EF74A6A19EB",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.watch-series5-1",
                        "modelName" : "Apple Watch Series 5 - 44mm",
                        "name" : "Apple Watch Series 5 - 44mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone10,4",
                        "identifier" : "B4CBA1BA-31F4-4619-8E7D-2354C9CD6AB8",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-8-2",
                        "modelName" : "iPhone 8",
                        "name" : "iPhone 8"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18L191)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV11,1",
                        "identifier" : "53805704-DE0F-46EE-8B2B-5113DFE015D7",
                        "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" : "7.4 (18T187)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch6,2",
                        "identifier" : "8D2B18E9-C3D3-4EC5-9162-2765AAFEC26B",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.watch-series6-1",
                        "modelName" : "Apple Watch Series 6 - 44mm",
                        "name" : "Apple Watch Series 6 - 44mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18L191)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV5,3",
                        "identifier" : "49F1DDF0-C84D-4F35-AC08-F287D0BC62D8",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.apple-tv-4",
                        "modelName" : "Apple TV",
                        "name" : "Apple TV"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,5",
                        "identifier" : "E6DCDC87-18C7-460D-9758-E065102D046A",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-pro-max-1",
                        "modelName" : "iPhone 11 Pro Max",
                        "name" : "iPhone 11 Pro Max"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad13,2",
                        "identifier" : "3DDDDBF7-29DC-4ADA-AC09-DFDD6E57CB58",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-air4-1",
                        "modelName" : "iPad Air (4th generation)",
                        "name" : "iPad Air (4th generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,3",
                        "identifier" : "AFCB1A16-01F4-4050-A8E1-516F42AAA2E4",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-pro-1",
                        "modelName" : "iPhone 11 Pro",
                        "name" : "iPhone 11 Pro"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone13,2",
                        "identifier" : "5FB4751D-10B3-4671-992B-D0E5D6BE6B62",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-12-1",
                        "modelName" : "iPhone 12",
                        "name" : "iPhone 12"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,1",
                        "identifier" : "2201789C-C67A-4502-80C0-66171D041232",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-1",
                        "modelName" : "iPhone 11",
                        "name" : "iPhone 11"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "7.4 (18T187)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch6,1",
                        "identifier" : "6850E51F-BDA6-402F-9AA7-25D5660644DB",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.watch-series6-1",
                        "modelName" : "Apple Watch Series 6 - 40mm",
                        "name" : "Apple Watch Series 6 - 40mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "7.4 (18T187)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch5,3",
                        "identifier" : "2B5BA2A1-CC59-4DB3-B694-EFCFDC0BAF35",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.watch-series5-1",
                        "modelName" : "Apple Watch Series 5 - 40mm",
                        "name" : "Apple Watch Series 5 - 40mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "14.5 (18E182)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad13,10",
                        "identifier" : "DD2525DA-A908-49FD-B86B-888D5B02A84D",
                        "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)"
                      }
                    ]
[  +12 ms] Error: 顾小良的iPhone is not connected. Xcode will continue when
顾小良的iPhone is connected. (code -13)
[        ] Error: 骑上我心爱的小摩托~ is not connected. Xcode will continue when
骑上我心爱的小摩托~ is connected. (code -13)
[   +3 ms] /Users/andy/Android/platform-tools/adb -s emulator-5554 shell getprop
[  +52 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping
update.
[   +6 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping
update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping
update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required,
skipping update.
[   +1 ms] 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.
[ +123 ms] Skipping pub get: version match.
[ +253 ms] Generating
/Users/andy/Documents/Projects/temp/flu_twice/android/app/src/main/java/io/flutt
er/plugins/GeneratedPluginRegistrant.java
[ +146 ms] ro.hardware = ranchu
[  +45 ms] Using hardware rendering with device sdk gphone x86. If you notice
graphics
           artifacts, consider enabling software rendering with
           "--enable-software-rendering".
[  +83 ms] Initializing file store
[  +32 ms] Skipping target: gen_localizations
[  +18 ms] complete
[  +13 ms] Launching lib/main.dart on sdk gphone x86 in debug mode...
[  +16 ms] /Users/andy/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev
/Users/andy/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.s
napshot --sdk-root
/Users/andy/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/
--incremental --target=flutter --debugger-module-names
--experimental-emit-debug-metadata -DFLUTTER_WEB_AUTO_DETECT=true --output-dill
/var/folders/nl/v2v1bfl91y5dbmy2xk4dtfg40000gn/T/flutter_tools.0MdC6w/flutter_to
ol.Jg5NKw/app.dill --packages
/Users/andy/Documents/Projects/temp/flu_twice/.dart_tool/package_config.json
-Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts
--track-widget-creation --filesystem-scheme org-dartlang-root
--initialize-from-dill
build/3c113a45063dc6628e68a4111abcacad.cache.dill.track.dill
--enable-experiment=alternative-invalidation-strategy
[  +26 ms] executing: /Users/andy/Android/build-tools/30.0.3/aapt dump xmltree
/Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.
apk AndroidManifest.xml
[  +32 ms] Exit code 0 from: /Users/andy/Android/build-tools/30.0.3/aapt dump
xmltree
/Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.
apk AndroidManifest.xml
[   +2 ms] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1e
               A: android:compileSdkVersionCodename(0x01010573)="11" (Raw: "11")
               A: package="com.example.flu_twice" (Raw: "com.example.flu_twice")
               A: platformBuildVersionCode=(type 0x10)0x1e
               A: platformBuildVersionName=(type 0x10)0xb
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1e
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw:
                 "android.permission.INTERNET")
               E: application (line=16)
                 A: android:label(0x01010001)="flu_twice" (Raw: "flu_twice")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A:
                 android:appComponentFactory(0x0101057a)="androidx.core.app.Core
                 ComponentFactory" (Raw:
                 "androidx.core.app.CoreComponentFactory")
                 E: activity (line=21)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A:
                   android:name(0x01010003)="com.example.flu_twice.MainActivity"
                   (Raw: "com.example.flu_twice.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type
                   0x12)0xffffffff
                   E: meta-data (line=35)
                     A:
                     android:name(0x01010003)="io.flutter.embedding.android.Norm
                     alTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=45)
                     A:
                     android:name(0x01010003)="io.flutter.embedding.android.Spla
                     shScreenDrawable" (Raw:
                     "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040000
                   E: intent-filter (line=49)
                     E: action (line=50)
                       A: android:name(0x01010003)="android.intent.action.MAIN"
                       (Raw: "android.intent.action.MAIN")
                     E: category (line=52)
                       A:
                       android:name(0x01010003)="android.intent.category.LAUNCHE
                       R" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=59)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw:
                   "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[  +17 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554
shell -x logcat -v time -t 1
[  +28 ms] <- compile package:flu_twice/main.dart
[  +45 ms] --------- beginning of main
           07-09 14:24:47.279 E/Uploader(15659): Clearcut transport failed to
           make network request. Use 30040 milliseconds.
           07-09 14:24:47.279 E/Uploader(15659):
           java.net.SocketTimeoutException: failed to connect to
           play.googleapis.com/216.58.220.202 (port 443) from /10.0.2.16 (port
           37154) after 30000ms
           07-09 14:24:47.279 E/Uploader(15659):    at
           libcore.io.IoBridge.connectErrno(IoBridge.java:190)
           07-09 14:24:47.279 E/Uploader(15659):    at
           libcore.io.IoBridge.connect(IoBridge.java:134)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.net.PlainSocketImpl.socketConnect(PlainSocketImpl.java:142)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.ja
           va:390)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocket
           Impl.java:230)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java
           :212)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.net.SocksSocketImpl.connect(SocksSocketImpl.java:436)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.net.Socket.connect(Socket.java:621)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.Platform.connectSocket(Platform.java:182)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.io.RealConnection.connectSocket(RealConne
           ction.java:145)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.io.RealConnection.connect(RealConnection.
           java:116)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.http.StreamAllocation.findConnection(Stre
           amAllocation.java:186)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.http.StreamAllocation.findHealthyConnecti
           on(StreamAllocation.java:128)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.http.StreamAllocation.newStream(StreamAll
           ocation.java:97)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:2
           89)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.ja
           va:232)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.huc.HttpURLConnectionImpl.execute(HttpURL
           ConnectionImpl.java:465)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.huc.HttpURLConnectionImpl.connect(HttpURL
           ConnectionImpl.java:131)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.huc.HttpURLConnectionImpl.getOutputStream
           (HttpURLConnectionImpl.java:262)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.huc.DelegatingHttpsURLConnection.getOutpu
           tStream(DelegatingHttpsURLConnection.java:219)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.android.okhttp.internal.huc.HttpsURLConnectionImpl.getOutputStrea
           m(HttpsURLConnectionImpl.java:30)
           07-09 14:24:47.279 E/Uploader(15659):    at
           abll.a(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):30)
           07-09 14:24:47.279 E/Uploader(15659):    at
           abll.execute(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):8)
           07-09 14:24:47.279 E/Uploader(15659):    at
           abll.execute(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):7)
           07-09 14:24:47.279 E/Uploader(15659):    at
           qzh.a(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):8)
           07-09 14:24:47.279 E/Uploader(15659):    at
           qzh.a(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):31)
           07-09 14:24:47.279 E/Uploader(15659):    at
           qzw.a(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):115)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.google.android.gms.clearcut.uploader.QosUploaderChimeraService.a(
           :com.google.android.gms@201817022@20.18.17 (040700-311416286):62)
           07-09 14:24:47.279 E/Uploader(15659):    at
           com.google.android.gms.clearcut.uploader.QosUploaderChimeraService.a(
           :com.google.android.gms@201817022@20.18.17 (040700-311416286):2)
           07-09 14:24:47.279 E/Uploader(15659):    at adyp.call(Unknown Source:4)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.util.concurrent.FutureTask.run(FutureTask.java:266)
           07-09 14:24:47.279 E/Uploader(15659):    at
           sji.b(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):12)
           07-09 14:24:47.279 E/Uploader(15659):    at
           sji.run(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):7)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.
           java:1167)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
           .java:641)
           07-09 14:24:47.279 E/Uploader(15659):    at
           spj.run(:com.google.android.gms@201817022@20.18.17
           (040700-311416286):0)
           07-09 14:24:47.279 E/Uploader(15659):    at
           java.lang.Thread.run(Thread.java:923)
[  +27 ms] executing: /Users/andy/Android/platform-tools/adb version
[  +23 ms] Android Debug Bridge version 1.0.41
           Version 31.0.2-7242960
           Installed as /Users/andy/Android/platform-tools/adb
[   +3 ms] executing: /Users/andy/Android/platform-tools/adb start-server
[  +16 ms] Building APK
[  +29 ms] Running Gradle task 'assembleDebug'...
[   +5 ms] Using gradle from
/Users/andy/Documents/Projects/temp/flu_twice/android/gradlew.
[ +811 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio Preview.app/Contents/Info.plist
[ +141 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio Preview.app/Contents/Info.plist
[   +1 ms] {"CFBundleName":"Android
Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_P
ACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudioPreview2021.1","idea.
executable":"studio","idea.platform.prefix":"AndroidStudio","idea.vendor.name":"Google","idea.home.path":"$APP_PACKAGE\/Contents"}},"NSDesktopFolderUsageDescription":"An application in Android Studio
requests access to the user's Desktop folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-203.7717.56.2111.7361063","CFBundleDevelopmentRegion":"English","NSCameraUsageDescription":"An
application in Android Studio requests access to the device's camera.","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project
File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All
documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFB
undleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"EAP AI-203.7717.56.2111.7361063","NSMicrophoneUsageDescription":"An application in Android Studio requests access
to the device's microphone.","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","NSLocationUsageDescription":"An application in Android Studio requests access to the user's location
information.","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.stu
dio-EAP","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDescription":"An application in Android Studio
requests access to the user's Documents folder.","NSDownloadsFolderUsageDescription":"An application in Android Studio requests access to the user's Downloads
folder.","NSNetworkVolumesUsageDescription":"An application in Android Studio requests access to files on a network volume.","CFBundleGetInfoString":"Android Studio EAP AI-203.7717.56.2111.7361063, build
AI-203.7717.56.2111.7361063. Copyright JetBrains s.r.o., (c) 2000-2021","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a removable volume."}
[  +31 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[  +64 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[        ] {"CFBundleName":"Android
Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_P
ACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.sele
ctor":"AndroidStudio4.2","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.vendor.name":"Google","idea.home.path":"$APP_PACKAGE\/Contents"}},"NSDesktopFolderUsageDescription":"An
application in Android Studio requests access to the user's Desktop
folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-202.7660.26.42.7486908","CFBundleDevelopmentRegion":"English","NSCameraUsageDescription":"An application in Android Studio requests
access to the device's camera.","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project
File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All
documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFB
undleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"4.2","NSMicrophoneUsageDescription":"An application in Android Studio requests access to the device's
microphone.","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","NSLocationUsageDescription":"An application in Android Studio requests access to the user's location
information.","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.stu
dio","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDescription":"An application in Android Studio
requests access to the user's Documents folder.","NSDownloadsFolderUsageDescription":"An application in Android Studio requests access to the user's Downloads
folder.","NSNetworkVolumesUsageDescription":"An application in Android Studio requests access to files on a network volume.","CFBundleGetInfoString":"Android Studio 4.2, build AI-202.7660.26.42.7486908.
Copyright JetBrains s.r.o., (c) 2000-2021","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a removable volume."}
[  +10 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ +144 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[        ] openjdk version "11.0.8" 2020-07-14
           OpenJDK Runtime Environment (build 11.0.8+10-b944.6916264)
           OpenJDK 64-Bit Server VM (build 11.0.8+10-b944.6916264, mixed mode)
[   +2 ms] executing: [/Users/andy/Documents/Projects/temp/flu_twice/android/] /Users/andy/Documents/Projects/temp/flu_twice/android/gradlew -Pverbose=true -Ptarget-platform=android-x86
-Ptarget=/Users/andy/Documents/Projects/temp/flu_twice/lib/main.dart -Pdart-defines=RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ== -Pdart-obfuscation=false -Ptrack-widget-creation=true -Ptree-shake-icons=false
-Pfilesystem-scheme=org-dartlang-root assembleDebug
[+3304 ms] > Task :app:compileFlutterBuildDebug
[        ] [  +97 ms] executing: sysctl hw.optional.arm64
[        ] [  +23 ms] Exit code 1 from: sysctl hw.optional.arm64
[        ] [        ] sysctl: unknown oid 'hw.optional.arm64'
[        ] [   +7 ms] executing: [/Users/andy/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [   +9 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [        ] d79295af24c3ed621c33713ecda14ad196fd9c31
[        ] [        ] executing: [/Users/andy/flutter/] git tag --points-at d79295af24c3ed621c33713ecda14ad196fd9c31
[        ] [  +71 ms] Exit code 0 from: git tag --points-at d79295af24c3ed621c33713ecda14ad196fd9c31
[        ] [        ] 2.2.2
[        ] [   +8 ms] executing: [/Users/andy/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[        ] [  +10 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] [        ] origin/stable
[        ] [        ] executing: [/Users/andy/flutter/] git ls-remote --get-url origin
[        ] [   +7 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] [        ] https://github.com/flutter/flutter.git
[        ] [  +86 ms] executing: [/Users/andy/flutter/] git rev-parse --abbrev-ref HEAD
[        ] [  +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] [        ] stable
[        ] [   +6 ms] executing: sw_vers -productName
[        ] [  +16 ms] Exit code 0 from: sw_vers -productName
[        ] [        ] macOS
[        ] [        ] executing: sw_vers -productVersion
[        ] [  +15 ms] Exit code 0 from: sw_vers -productVersion
[        ] [        ] 11.3.1
[        ] [        ] executing: sw_vers -buildVersion
[        ] [  +15 ms] Exit code 0 from: sw_vers -buildVersion
[        ] [        ] 20E241
[        ] [  +44 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [   +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[        ] [ +107 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[        ] [   +2 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[        ] [        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'PubDependencies' is not required, skipping update.
[        ] [  +43 ms] Initializing file store
[        ] [   +8 ms] Done initializing file store
[        ] [  +47 ms] Skipping target: gen_localizations
[        ] [ +508 ms] Skipping target: kernel_snapshot
[        ] [ +331 ms] Skipping target: debug_android_application
[        ] [        ] Persisting file store
[        ] [  +10 ms] Done persisting file store
[        ] [   +8 ms] build succeeded.
[        ] [  +13 ms] "flutter assemble" took 1,091ms.
[  +78 ms] [ +258 ms] ensureAnalyticsSent: 254ms
[        ] [   +1 ms] Running shutdown hooks
[        ] [        ] Shutdown hooks complete
[        ] [        ] exiting with code 0
[        ] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[        ] > Task :app:preBuild UP-TO-DATE
[        ] > Task :app:preDebugBuild UP-TO-DATE
[        ] > Task :app:compileDebugAidl NO-SOURCE
[  +97 ms] > Task :app:compileDebugRenderscript NO-SOURCE
[        ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :app:checkDebugAarMetadata UP-TO-DATE
[        ] > Task :app:cleanMergeDebugAssets
[        ] > Task :app:mergeDebugShaders UP-TO-DATE
[        ] > Task :app:compileDebugShaders NO-SOURCE
[        ] > Task :app:generateDebugAssets UP-TO-DATE
[        ] > Task :app:mergeDebugAssets
[ +302 ms] > Task :app:copyFlutterAssetsDebug
[        ] > Task :app:generateDebugResValues UP-TO-DATE
[        ] > Task :app:generateDebugResources UP-TO-DATE
[        ] > Task :app:mergeDebugResources UP-TO-DATE
[        ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[        ] > Task :app:extractDeepLinksDebug UP-TO-DATE
[        ] > Task :app:processDebugMainManifest UP-TO-DATE
[        ] > Task :app:processDebugManifest UP-TO-DATE
[        ] > Task :app:processDebugManifestForPackage UP-TO-DATE
[  +96 ms] > Task :app:processDebugResources UP-TO-DATE
[        ] > Task :app:compileDebugKotlin UP-TO-DATE
[        ] > Task :app:javaPreCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :app:compileDebugSources UP-TO-DATE
[        ] > Task :app:mergeDebugNativeDebugMetadata NO-SOURCE
[        ] > Task :app:compressDebugAssets UP-TO-DATE
[        ] > Task :app:processDebugJavaRes NO-SOURCE
[        ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[        ] > Task :app:dexBuilderDebug UP-TO-DATE
[        ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[        ] > Task :app:mergeExtDexDebug UP-TO-DATE
[        ] > Task :app:mergeDexDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :app:validateSigningDebug UP-TO-DATE
[        ] > Task :app:packageDebug UP-TO-DATE
[  +99 ms] > Task :app:assembleDebug
[        ] Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
[        ] Use '--warning-mode all' to show the individual deprecation warnings.
[        ] See https://docs.gradle.org/6.7/userguide/command_line_interface.html#sec:command_line_warnings
[        ] BUILD SUCCESSFUL in 3s
[        ] 32 actionable tasks: 5 executed, 27 up-to-date
[ +400 ms] Running Gradle task 'assembleDebug'... (completed in 5.6s)
[  +35 ms] calculateSha: LocalDirectory: '/Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk'/app.apk
[ +471 ms] ✓  Built build/app/outputs/flutter-apk/app-debug.apk.
[   +3 ms] executing: /Users/andy/Android/build-tools/30.0.3/aapt dump xmltree /Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[  +12 ms] Exit code 0 from: /Users/andy/Android/build-tools/30.0.3/aapt dump xmltree /Users/andy/Documents/Projects/temp/flu_twice/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1e
               A: android:compileSdkVersionCodename(0x01010573)="11" (Raw: "11")
               A: package="com.example.flu_twice" (Raw: "com.example.flu_twice")
               A: platformBuildVersionCode=(type 0x10)0x1e
               A: platformBuildVersionName=(type 0x10)0xb
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1e
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: application (line=16)
                 A: android:label(0x01010001)="flu_twice" (Raw: "flu_twice")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=21)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.flu_twice.MainActivity" (Raw: "com.example.flu_twice.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=35)
                     A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=45)
                     A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040000
                   E: intent-filter (line=49)
                     E: action (line=50)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=52)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=59)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[   +3 ms] Stopping app 'app.apk' on sdk gphone x86.
[        ] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell am force-stop com.example.flu_twice
[ +189 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell pm list packages com.example.flu_twice
[ +321 ms] package:com.example.flu_twice
[   +3 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.example.flu_twice.sha1
[  +92 ms] cba3d63b64fc67f53db0e7f0cc7c0c1c36abbd4c
[   +1 ms] Latest build already installed.
[        ] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ +101 ms] --------- beginning of main
                    07-09 14:24:54.577 I/Zygote  (  303): Process 18711 exited due to signal 9 (Killed)
[  +21 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling
true --ez enable-checked-mode true --ez verify-entry-points true com.example.flu_twice/com.example.flu_twice.MainActivity
[ +282 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.flu_twice/.MainActivity (has extras) }
[   +1 ms] Waiting for observatory port to be available...
[+1667 ms] Observatory URL on device: http://127.0.0.1:44529/MJzdcTLC0h0=/
[   +1 ms] executing: /Users/andy/Android/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:44529
[  +13 ms] 56895
[        ] Forwarded host port 56895 to device port 44529 for Observatory
[ +365 ms] I/flutter (18964): run app...
[ +680 ms] I/flutter (18964): MyApp build.....
[  +19 ms] Caching compiled dill
[  +49 ms] Connecting to service protocol: http://127.0.0.1:56895/MJzdcTLC0h0=/
[ +358 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:56895/MJzdcTLC0h0=/.
[ +124 ms] DDS is listening at http://127.0.0.1:56902/b38EDKrEDXo=/.
[  +80 ms] Successfully connected to service protocol: http://127.0.0.1:56895/MJzdcTLC0h0=/
[  +34 ms] DevFS: Creating new filesystem on the device (null)
[  +63 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.flu_twice/code_cache/flu_twiceGOYJBN/flu_twice/)
[   +3 ms] Updating assets
[ +134 ms] Syncing files to device sdk gphone x86...
[   +2 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +3 ms] <- recompile package:flu_twice/main.dart a5becad0-811a-4b2a-bc3a-bd4e4256ff11
[        ] <- a5becad0-811a-4b2a-bc3a-bd4e4256ff11
[  +93 ms] Updating files.
[        ] DevFS: Sync finished
[   +4 ms] Syncing files to device sdk gphone x86... (completed in 101ms)
[        ] Synced 0.0MB.
[   +1 ms] <- accept
[  +58 ms] Connected to _flutterView/0xf354f820.
[   +4 ms] Flutter run key commands.
[   +2 ms] r Hot reload. 🔥🔥🔥
[   +1 ms] R Hot restart.
[        ] h Repeat this help message.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] 💪 Running with sound null safety 💪
[        ] An Observatory debugger and profiler on sdk gphone x86 is available at: http://127.0.0.1:56902/b38EDKrEDXo=/
[ +622 ms] The Flutter DevTools debugger and profiler on sdk gphone x86 is available at: http://127.0.0.1:9105?uri=http%3A%2F%2F127.0.0.1%3A56902%2Fb38EDKrEDXo%3D%2F

japhetobsioma commented 3 years ago

Hi, I have the same issue. I'm using the default counter app made in flutter create.

Counter App ```dart import 'dart:developer'; import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { log('Building $runtimeType'); return MaterialApp( title: 'Flutter Demo', theme: ThemeData( // This is the theme of your application. // // Try running your application with "flutter run". You'll see the // application has a blue toolbar. Then, without quitting the app, try // changing the primarySwatch below to Colors.green and then invoke // "hot reload" (press "r" in the console where you ran "flutter run", // or simply save your changes to "hot reload" in a Flutter IDE). // Notice that the counter didn't reset back to zero; the application // is not restarted. primarySwatch: Colors.blue, ), home: MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key? key, required this.title}) : super(key: key); // This widget is the home page of your application. It is stateful, meaning // that it has a State object (defined below) that contains fields that affect // how it looks. // This class is the configuration for the state. It holds the values (in this // case the title) provided by the parent (in this case the App widget) and // used by the build method of the State. Fields in a Widget subclass are // always marked "final". final String title; @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State { int _counter = 0; void _incrementCounter() { setState(() { // This call to setState tells the Flutter framework that something has // changed in this State, which causes it to rerun the build method below // so that the display can reflect the updated values. If we changed // _counter without calling setState(), then the build method would not be // called again, and so nothing would appear to happen. _counter++; }); } @override Widget build(BuildContext context) { log('Building $runtimeType'); // This method is rerun every time setState is called, for instance as done // by the _incrementCounter method above. // // The Flutter framework has been optimized to make rerunning build methods // fast, so that you can just rebuild anything that needs updating rather // than having to individually change instances of widgets. return Scaffold( appBar: AppBar( // Here we take the value from the MyHomePage object that was created by // the App.build method, and use it to set our appbar title. title: Text(widget.title), ), body: Center( // Center is a layout widget. It takes a single child and positions it // in the middle of the parent. child: Column( // Column is also a layout widget. It takes a list of children and // arranges them vertically. By default, it sizes itself to fit its // children horizontally, and tries to be as tall as its parent. // // Invoke "debug painting" (press "p" in the console, choose the // "Toggle Debug Paint" action from the Flutter Inspector in Android // Studio, or the "Toggle Debug Paint" command in Visual Studio Code) // to see the wireframe for each widget. // // Column has various properties to control how it sizes itself and // how it positions its children. Here we use mainAxisAlignment to // center the children vertically; the main axis here is the vertical // axis because Columns are vertical (the cross axis would be // horizontal). mainAxisAlignment: MainAxisAlignment.center, children: [ Text( 'You have pushed the button this many times:', ), Text( '$_counter', style: Theme.of(context).textTheme.headline4, ), ], ), ), floatingActionButton: FloatingActionButton( onPressed: _incrementCounter, tooltip: 'Increment', child: Icon(Icons.add), ), // This trailing comma makes auto-formatting nicer for build methods. ); } } ```
Logs from Counter App ``` Launching lib\main.dart on Chrome in debug mode... lib\main.dart:1 This app is linked to the debug service: ws://127.0.0.1:64945/Pt_GSTcnFzc%3D/ws Debug service listening on ws://127.0.0.1:64945/Pt_GSTcnFzc=/ws Running with sound null safety Connecting to VM Service at ws://127.0.0.1:64945/Pt_GSTcnFzc=/ws [log] Building MyApp [log] Building _MyHomePageState [log] Building MyApp [log] Building _MyHomePageState [log] Building MyApp [log] Building _MyHomePageState Exited (1) ```
flutter doctor -v ``` [√] Flutter (Channel stable, 2.2.3, on Microsoft Windows [Version 10.0.17763.2029], locale en-US) • Flutter version 2.2.3 at C:\src\flutter • Framework revision f4abaa0735 (9 days ago), 2021-07-01 12:46:11 -0700 • Engine revision 241c87ad80 • Dart version 2.13.4 [√] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at C:\Users\Japhet\AppData\Local\Android\sdk • Platform android-30, build-tools 30.0.3 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6842174) • All Android licenses accepted. [√] Chrome - develop for the web • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe [√] Android Studio • Android Studio at C:\Program Files\Android\Android Studio • 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 • android-studio-dir = C:\Program Files\Android\Android Studio • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6842174) [√] VS Code (version 1.58.0) • VS Code at C:\Users\Japhet\AppData\Local\Programs\Microsoft VS Code • Flutter extension version 3.24.0 [√] Connected device (2 available) • SM J415GN (mobile) • 192.168.0.150:5555 • android-arm • Android 9 (API 28) • Chrome (web) • chrome • web-javascript • Google Chrome 91.0.4472.124 • No issues found! ```
TahaTesser commented 3 years ago

Hi @sellch00k This is not an issue, the build function could be called multiple times, Closing as duplicate of https://github.com/flutter/flutter/issues/33566 https://github.com/flutter/flutter/issues/86315

yakeer commented 3 years ago

Happens to me as well, so in order to eliminate the option that it's a logic problem in my code, I created a new flutter project, and ran it out of the box.

The build has hit twice. Using flutter 2.2.3. Happens also on MacOS and also on Windows. using Visual Studio code.

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