jonsamwell / flutter_gherkin

A Gherkin parsers and runner for Dart and Flutter which is very similar to cucumber
MIT License
206 stars 113 forks source link

Error returned when all scenarios are passing #74

Closed DenisBronx closed 3 years ago

DenisBronx commented 4 years ago

I'm unable to get a successful result when running the tests. When I run the tests with this command flutter --no-color test --machine test_driver/app_test.dart I get the following output:

{"suite":{"id":0,"platform":"vm","path":"/Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app_test.dart"},"type":"suite","time":0}
{"test":{"id":1,"name":"loading /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app_test.dart","suiteID":0,"groupIDs":[],"metadata":{"skip":false,"skipReason":null},"line":null,"column":null,"url":null},"type":"testStart","time":2}
{"count":1,"type":"allSuites","time":5}
Shell: Found feature file './test_driver/account/acceptance/features/get_accounts.feature'
Shell: Parsing feature file: './test_driver/account/acceptance/features/get_accounts.feature'
Shell: Found feature file './test_driver/authentication/acceptance/features/logout.feature'
Shell: Parsing feature file: './test_driver/authentication/acceptance/features/logout.feature'
Shell: Found feature file './test_driver/authentication/acceptance/features/recover_account.feature'
Shell: Parsing feature file: './test_driver/authentication/acceptance/features/recover_account.feature'
Shell: Found 3 feature file(s) to run
Shell: Executing features in random order
Shell: Starting Flutter app under test 'test_driver/app.dart', this might take a few moments
Shell: Attempting to running feature '[Authentication] Logout' # ./test_driver/authentication/acceptance/features/logout.feature:1
Shell: Creating new world for scenario 'Successful logout' # ./test_driver/authentication/acceptance/features/logout.feature:3
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:56002/hZCYQQHYtPE=/
Shell: VMServiceFlutterDriver Isolate found with number: 3832523638888479
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Successful logout # ./test_driver/authentication/acceptance/features/logout.feature:3
Shell: Attempting to run step 'Given user logs out' # ./test_driver/authentication/acceptance/features/logout.feature:4
Shell:    √ Given user logs out # ./test_driver/authentication/acceptance/features/logout.feature:4 took 4ms
Shell: Attempting to run step 'When logout is successful' # ./test_driver/authentication/acceptance/features/logout.feature:5
Shell:    √ When logout is successful # ./test_driver/authentication/acceptance/features/logout.feature:5 took 7ms
Shell: Attempting to run step 'Then user info is removed' # ./test_driver/authentication/acceptance/features/logout.feature:6
Shell:    √ Then user info is removed # ./test_driver/authentication/acceptance/features/logout.feature:6 took 1ms
Shell: PASSED: Scenario Successful logout # ./test_driver/authentication/acceptance/features/logout.feature:3
Shell: Creating new world for scenario 'Unsuccessful logout' # ./test_driver/authentication/acceptance/features/logout.feature:8
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:56002/hZCYQQHYtPE=/
Shell: VMServiceFlutterDriver Isolate found with number: 3832523638888479
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Unsuccessful logout # ./test_driver/authentication/acceptance/features/logout.feature:8
Shell: Attempting to run step 'Given user logs out' # ./test_driver/authentication/acceptance/features/logout.feature:9
Shell:    √ Given user logs out # ./test_driver/authentication/acceptance/features/logout.feature:9 took 0ms
Shell: Attempting to run step 'When logout is not successful' # ./test_driver/authentication/acceptance/features/logout.feature:10
Shell:    √ When logout is not successful # ./test_driver/authentication/acceptance/features/logout.feature:10 took 1ms
Shell: Attempting to run step 'Then user info is removed' # ./test_driver/authentication/acceptance/features/logout.feature:11
Shell:    √ Then user info is removed # ./test_driver/authentication/acceptance/features/logout.feature:11 took 0ms
Shell: PASSED: Scenario Unsuccessful logout # ./test_driver/authentication/acceptance/features/logout.feature:8
Shell: Finished running feature '[Authentication] Logout' # ./test_driver/authentication/acceptance/features/logout.feature:1
Shell: Attempting to running feature '[Authentication] Recover Account' # ./test_driver/authentication/acceptance/features/recover_account.feature:1
Shell: Creating new world for scenario 'Account recovered' # ./test_driver/authentication/acceptance/features/recover_account.feature:3
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:56002/hZCYQQHYtPE=/
Shell: VMServiceFlutterDriver Isolate found with number: 3832523638888479
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Account recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:3
Shell: Attempting to run step 'Given A grant code is exchanged' # ./test_driver/authentication/acceptance/features/recover_account.feature:4
Shell:    √ Given A grant code is exchanged # ./test_driver/authentication/acceptance/features/recover_account.feature:4 took 0ms
Shell: Attempting to run step 'When A successful token response is received' # ./test_driver/authentication/acceptance/features/recover_account.feature:5
Shell:    √ When A successful token response is received # ./test_driver/authentication/acceptance/features/recover_account.feature:5 took 42ms
Shell: Attempting to run step 'Then User is logged' # ./test_driver/authentication/acceptance/features/recover_account.feature:6
Shell:    √ Then User is logged # ./test_driver/authentication/acceptance/features/recover_account.feature:6 took 1ms
Shell: Attempting to run step 'And User info is retrieved' # ./test_driver/authentication/acceptance/features/recover_account.feature:7
Shell:    √ And User info is retrieved # ./test_driver/authentication/acceptance/features/recover_account.feature:7 took 0ms
Shell: PASSED: Scenario Account recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:3
Shell: Creating new world for scenario 'Account not recovered' # ./test_driver/authentication/acceptance/features/recover_account.feature:9
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:56002/hZCYQQHYtPE=/
Shell: VMServiceFlutterDriver Isolate found with number: 3832523638888479
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Account not recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:9
Shell: Attempting to run step 'Given A grant code is exchanged' # ./test_driver/authentication/acceptance/features/recover_account.feature:10
Shell:    √ Given A grant code is exchanged # ./test_driver/authentication/acceptance/features/recover_account.feature:10 took 0ms
Shell: Attempting to run step 'When A token error response is received' # ./test_driver/authentication/acceptance/features/recover_account.feature:11
Shell:    √ When A token error response is received # ./test_driver/authentication/acceptance/features/recover_account.feature:11 took 3ms
Shell: Attempting to run step 'Then User is not logged' # ./test_driver/authentication/acceptance/features/recover_account.feature:12
Shell:    √ Then User is not logged # ./test_driver/authentication/acceptance/features/recover_account.feature:12 took 0ms
Shell: PASSED: Scenario Account not recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:9
Shell: Finished running feature '[Authentication] Recover Account' # ./test_driver/authentication/acceptance/features/recover_account.feature:1
Shell: Attempting to running feature '[Accounts] Get the account list for a user' # ./test_driver/account/acceptance/features/get_accounts.feature:1
Shell: Creating new world for scenario 'Get the account list info' # ./test_driver/account/acceptance/features/get_accounts.feature:3
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:56002/hZCYQQHYtPE=/
Shell: VMServiceFlutterDriver Isolate found with number: 3832523638888479
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Get the account list info # ./test_driver/account/acceptance/features/get_accounts.feature:3
Shell: Attempting to run step 'Given a user requests the account list' # ./test_driver/account/acceptance/features/get_accounts.feature:4
Shell:    √ Given a user requests the account list # ./test_driver/account/acceptance/features/get_accounts.feature:4 took 0ms
Shell: Attempting to run step 'When the account list is retrieved' # ./test_driver/account/acceptance/features/get_accounts.feature:5
Shell:    √ When the account list is retrieved # ./test_driver/account/acceptance/features/get_accounts.feature:5 took 7ms
Shell: Attempting to run step 'Then the account list is returned' # ./test_driver/account/acceptance/features/get_accounts.feature:6
Shell:    √ Then the account list is returned # ./test_driver/account/acceptance/features/get_accounts.feature:6 took 0ms
Shell: PASSED: Scenario Get the account list info # ./test_driver/account/acceptance/features/get_accounts.feature:3
Shell: Creating new world for scenario 'Failed to get account list info' # ./test_driver/account/acceptance/features/get_accounts.feature:8
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:56002/hZCYQQHYtPE=/
Shell: VMServiceFlutterDriver Isolate found with number: 3832523638888479
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Failed to get account list info # ./test_driver/account/acceptance/features/get_accounts.feature:8
Shell: Attempting to run step 'Given a user requests the account list' # ./test_driver/account/acceptance/features/get_accounts.feature:9
Shell:    √ Given a user requests the account list # ./test_driver/account/acceptance/features/get_accounts.feature:9 took 0ms
Shell: Attempting to run step 'When an account list error is retrieved' # ./test_driver/account/acceptance/features/get_accounts.feature:10
Shell:    √ When an account list error is retrieved # ./test_driver/account/acceptance/features/get_accounts.feature:10 took 3ms
Shell: Attempting to run step 'Then the error is returned' # ./test_driver/account/acceptance/features/get_accounts.feature:11
Shell:    √ Then the error is returned # ./test_driver/account/acceptance/features/get_accounts.feature:11 took 0ms
Shell: PASSED: Scenario Failed to get account list info # ./test_driver/account/acceptance/features/get_accounts.feature:8
Shell: Finished running feature '[Accounts] Get the account list for a user' # ./test_driver/account/acceptance/features/get_accounts.feature:1
Shell: 6 scenarios (6 passed)
Shell: 19 steps (19 passed)
Shell: 0:00:01.604000
Shell: Terminating Flutter app under test
{"testID":1,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":76324}
{"success":true,"type":"done","time":76376}

But it is returned as an error by both my git-hooks and my CI.

When I run from Intellij, I get this error instead

Screenshot 2020-07-08 at 19 03 36

How can I fix this issue? Thanks in advance!

jonsamwell commented 4 years ago

Hi @DenisBronx,

Yeah I've encountered this before. It is due to FlutterDriver helpfully logging ANYTHING to the stderr if nothing is listening to it's output stream.

If you include this reporter https://github.com/jonsamwell/flutter_gherkin/blob/master/lib/src/flutter/reporters/flutter_driver_reporter.dart in your reporters config it will capture the output from the driver and only push it to the stderr stream if it is an error.

https://github.com/jonsamwell/flutter_gherkin/blob/master/example/test_driver/app_test.dart#L17

Let me know if this fixes it for you.

DenisBronx commented 4 years ago

Hey @jonsamwell I already have that reporter, sorry for not mentioning it. This is my configuration:

Future<void> main() {
  final config = FlutterTestConfiguration()
    ..features = [Glob("test_driver/**/features/**.feature")]
    ..reporters = [
      ProgressReporter(),
      TestRunSummaryReporter(),
      JsonReporter(path: '$testOutputsDirectory/report.json'),
      FlutterDriverReporter(
        logErrorMessages: true,
        logInfoMessages: true,
        logWarningMessages: true,
      ),
      StdoutReporter()
    ]
    ..stepDefinitions = [
      ...getRecoverAccountSteps(),
      ...getLogoutSteps(),
      ...getFetchAccountSteps(),
    ]
    ..targetDeviceId = "all"
    ..buildFlavor = "wip"
    ..restartAppBetweenScenarios = false
    ..targetAppPath = "test_driver/app.dart"
    ..exitAfterTestRun = false;
  return GherkinRunner().execute(config);
}
jonsamwell commented 4 years ago

What flutter version is this running on? Could you change the logging level to verbose and see if anything comes out of that

jonsamwell commented 4 years ago

Sorry could you also set the config properties verboseFlutterProcessLogs & logFlutterProcessOutput and paste the logs here

DenisBronx commented 4 years ago

I'm using flutter v1.17.5, this is the full log:

{"protocolVersion":"0.1.1","runnerVersion":"1.14.4","pid":63654,"type":"start","time":0}
{"suite":{"id":0,"platform":"vm","path":"/Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app_test.dart"},"type":"suite","time":0}
{"test":{"id":1,"name":"loading /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app_test.dart","suiteID":0,"groupIDs":[],"metadata":{"skip":false,"skipReason":null},"line":null,"column":null,"url":null},"type":"testStart","time":2}
{"count":1,"type":"allSuites","time":5}
Shell: Found feature file './test_driver/account/acceptance/features/get_accounts.feature'
Shell: Parsing feature file: './test_driver/account/acceptance/features/get_accounts.feature'
Shell: Found feature file './test_driver/authentication/acceptance/features/logout.feature'
Shell: Parsing feature file: './test_driver/authentication/acceptance/features/logout.feature'
Shell: Found feature file './test_driver/authentication/acceptance/features/recover_account.feature'
Shell: Parsing feature file: './test_driver/authentication/acceptance/features/recover_account.feature'
Shell: Found 3 feature file(s) to run
Shell: Executing features in random order
Shell: Starting Flutter app under test 'test_driver/app.dart', this might take a few moments
Shell: Invoking from working directory `./` command: `flutter run --target=test_driver/app.dart --flavor=wip --device-id=all --verbose`
Shell: [  +24 ms] executing: [/Users/denisbrandi/development/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
Shell: [  +35 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
Shell: [        ] 8af6b2f038c1172e61d418869363a28dffec3cb4
Shell: [        ] executing: [/Users/denisbrandi/development/flutter/] git tag --contains HEAD
Shell: [ +189 ms] Exit code 0 from: git tag --contains HEAD
Shell: [   +1 ms] 1.17.5
Shell: [   +8 ms] executing: [/Users/denisbrandi/development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
Shell: [   +6 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
Shell: [        ] origin/stable
Shell: [        ] executing: [/Users/denisbrandi/development/flutter/] git ls-remote --get-url origin
Shell: [   +6 ms] Exit code 0 from: git ls-remote --get-url origin
Shell: [        ] https://github.com/flutter/flutter.git
Shell: [  +76 ms] executing: [/Users/denisbrandi/development/flutter/] git rev-parse --abbrev-ref HEAD
Shell: [   +9 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
Shell: [        ] stable
Shell: [   +6 ms] executing: sw_vers -productName
Shell: [  +20 ms] Exit code 0 from: sw_vers -productName
Shell: [        ] Mac OS X
Shell: [        ] executing: sw_vers -productVersion
Shell: [  +20 ms] Exit code 0 from: sw_vers -productVersion
Shell: [        ] 10.15.3
Shell: [        ] executing: sw_vers -buildVersion
Shell: [  +19 ms] Exit code 0 from: sw_vers -buildVersion
Shell: [        ] 19D76
Shell: [  +23 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
Shell: [   +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
Shell: [  +24 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb devices -l
Shell: [   +8 ms] executing: /usr/bin/xcode-select --print-path
Shell: [   +9 ms] Exit code 0 from: /usr/bin/xcode-select --print-path
Shell: [        ] /Applications/Xcode.app/Contents/Developer
Shell: [   +1 ms] executing: /usr/bin/xcodebuild -version
Shell: [ +264 ms] Exit code 0 from: /usr/bin/xcodebuild -version
Shell: [        ] Xcode 11.5
Shell:            Build version 11E608c
Shell: [   +2 ms] executing: xcrun --find xcdevice
Shell: [  +10 ms] Exit code 0 from: xcrun --find xcdevice
Shell: [        ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice
Shell: [        ] executing: xcrun xcdevice list --timeout 2
Shell: [   +4 ms] /usr/bin/xcrun simctl list --json devices
Shell: [        ] executing: /usr/bin/xcrun simctl list --json devices
Shell: [  +42 ms] List of devices attached
Shell:            FA79K1A06046           device usb:341835776X product:walleye model:Pixel_2 device:walleye transport_id:4
Shell: [ +156 ms] {
Shell:              "devices" : {
Shell:                "com.apple.CoreSimulator.SimRuntime.iOS-13-1" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/83108F18-EA63-45B5-B7C4-EE91C9ABB2A8\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/83108F18-EA63-45B5-B7C4-EE91C9ABB2A8",
Shell:                    "udid" : "83108F18-EA63-45B5-B7C4-EE91C9ABB2A8",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/949BC43E-DF1B-49D1-803D-1CCC70D2EEFD\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/949BC43E-DF1B-49D1-803D-1CCC70D2EEFD",
Shell:                    "udid" : "949BC43E-DF1B-49D1-803D-1CCC70D2EEFD",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/509DBB92-F3E7-4548-88F3-7F96D307D86D\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/509DBB92-F3E7-4548-88F3-7F96D307D86D",
Shell:                    "udid" : "509DBB92-F3E7-4548-88F3-7F96D307D86D",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/8FD5D0BE-9C07-4B97-ADF9-2C1A8FC19B42\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/8FD5D0BE-9C07-4B97-ADF9-2C1A8FC19B42",
Shell:                    "udid" : "8FD5D0BE-9C07-4B97-ADF9-2C1A8FC19B42",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/BC44AB9B-7A29-42D7-8C0A-D29F306E4F1D\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/BC44AB9B-7A29-42D7-8C0A-D29F306E4F1D",
Shell:                    "udid" : "BC44AB9B-7A29-42D7-8C0A-D29F306E4F1D",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro Max"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/55E55EA1-8079-4C22-896E-C93AC770451B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/55E55EA1-8079-4C22-896E-C93AC770451B",
Shell:                    "udid" : "55E55EA1-8079-4C22-896E-C93AC770451B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (9.7-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/599549B7-DD5A-441A-9881-C5533B437D7B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/599549B7-DD5A-441A-9881-C5533B437D7B",
Shell:                    "udid" : "599549B7-DD5A-441A-9881-C5533B437D7B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (11-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/5212971F-4AD7-41FE-BD9C-042BA660CF99\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/5212971F-4AD7-41FE-BD9C-042BA660CF99",
Shell:                    "udid" : "5212971F-4AD7-41FE-BD9C-042BA660CF99",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (3rd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/970F3399-719F-4F2A-8E26-E03FB7FDA36C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/970F3399-719F-4F2A-8E26-E03FB7FDA36C",
Shell:                    "udid" : "970F3399-719F-4F2A-8E26-E03FB7FDA36C",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air (3rd generation)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.watchOS-5-1" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/9384B1F1-5940-44B3-8857-BAB30EB7CA19\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/9384B1F1-5940-44B3-8857-BAB30EB7CA19",
Shell:                    "udid" : "9384B1F1-5940-44B3-8857-BAB30EB7CA19",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 2 - 38mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A3275C62-38EA-41EC-80A1-4211C5F88FDF\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A3275C62-38EA-41EC-80A1-4211C5F88FDF",
Shell:                    "udid" : "A3275C62-38EA-41EC-80A1-4211C5F88FDF",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 2 - 42mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/C2C5E3CB-1F8B-49CD-8FFF-323B8E2C6C65\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/C2C5E3CB-1F8B-49CD-8FFF-323B8E2C6C65",
Shell:                    "udid" : "C2C5E3CB-1F8B-49CD-8FFF-323B8E2C6C65",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 3 - 38mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/73351175-802C-4D97-87FA-7082BFAC49FE\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/73351175-802C-4D97-87FA-7082BFAC49FE",
Shell:                    "udid" : "73351175-802C-4D97-87FA-7082BFAC49FE",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 3 - 42mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/356BD20A-DC40-4574-91C1-3D49A1390D3B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/356BD20A-DC40-4574-91C1-3D49A1390D3B",
Shell:                    "udid" : "356BD20A-DC40-4574-91C1-3D49A1390D3B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/EE564417-1FA1-4D9E-B894-537F8F938E36\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/EE564417-1FA1-4D9E-B894-537F8F938E36",
Shell:                    "udid" : "EE564417-1FA1-4D9E-B894-537F8F938E36",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 44mm"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.watchOS-6-0" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/003432A6-2257-4501-AFBA-2DB099BC45E9\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/003432A6-2257-4501-AFBA-2DB099BC45E9",
Shell:                    "udid" : "003432A6-2257-4501-AFBA-2DB099BC45E9",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/66913D2A-D581-4BA3-A43A-62133386EADF\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/66913D2A-D581-4BA3-A43A-62133386EADF",
Shell:                    "udid" : "66913D2A-D581-4BA3-A43A-62133386EADF",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 44mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B6F63C06-B39E-430F-AC9F-4B84EADF9827\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B6F63C06-B39E-430F-AC9F-4B84EADF9827",
Shell:                    "udid" : "B6F63C06-B39E-430F-AC9F-4B84EADF9827",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 5 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/3CD725FC-9296-409D-B79B-F0727407075A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/3CD725FC-9296-409D-B79B-F0727407075A",
Shell:                    "udid" : "3CD725FC-9296-409D-B79B-F0727407075A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 5 - 44mm"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.tvOS-13-3" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/28A1360B-E1DA-40F5-9D20-39583DBB0353\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/28A1360B-E1DA-40F5-9D20-39583DBB0353",
Shell:                    "udid" : "28A1360B-E1DA-40F5-9D20-39583DBB0353",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/FE523226-AB30-4C45-9DA0-300F84F83A13\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/FE523226-AB30-4C45-9DA0-300F84F83A13",
Shell:                    "udid" : "FE523226-AB30-4C45-9DA0-300F84F83A13",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/12A6F1C8-C16E-4392-8A5B-63EC6984AD36\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/12A6F1C8-C16E-4392-8A5B-63EC6984AD36",
Shell:                    "udid" : "12A6F1C8-C16E-4392-8A5B-63EC6984AD36",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K (at 1080p)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.iOS-13-3" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/10BA6E58-DE5D-401C-9704-07094E97B401\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/10BA6E58-DE5D-401C-9704-07094E97B401",
Shell:                    "udid" : "10BA6E58-DE5D-401C-9704-07094E97B401",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/592D0A84-875B-410A-88C0-E0CE82CD83B4\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/592D0A84-875B-410A-88C0-E0CE82CD83B4",
Shell:                    "udid" : "592D0A84-875B-410A-88C0-E0CE82CD83B4",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/D435F39F-F6E7-4CB9-81B8-56F907CEA867\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/D435F39F-F6E7-4CB9-81B8-56F907CEA867",
Shell:                    "udid" : "D435F39F-F6E7-4CB9-81B8-56F907CEA867",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/CF29C918-9F2B-4168-B4E5-E379052F8D84\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/CF29C918-9F2B-4168-B4E5-E379052F8D84",
Shell:                    "udid" : "CF29C918-9F2B-4168-B4E5-E379052F8D84",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/4ABEAADC-6E77-46B8-B815-DE15960378EF\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/4ABEAADC-6E77-46B8-B815-DE15960378EF",
Shell:                    "udid" : "4ABEAADC-6E77-46B8-B815-DE15960378EF",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro Max"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/2707F97A-A013-4BD8-8198-67DEDF5C3576\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/2707F97A-A013-4BD8-8198-67DEDF5C3576",
Shell:                    "udid" : "2707F97A-A013-4BD8-8198-67DEDF5C3576",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (9.7-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/1B9AB6AC-4471-4A33-B4A7-36C669ADD43A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/1B9AB6AC-4471-4A33-B4A7-36C669ADD43A",
Shell:                    "udid" : "1B9AB6AC-4471-4A33-B4A7-36C669ADD43A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (7th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/1CC9CE97-56F7-48A9-BFB6-06FFDE483903\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/1CC9CE97-56F7-48A9-BFB6-06FFDE483903",
Shell:                    "udid" : "1CC9CE97-56F7-48A9-BFB6-06FFDE483903",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (11-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/8C922175-4C9E-41B7-92D7-5DEE799A8887\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/8C922175-4C9E-41B7-92D7-5DEE799A8887",
Shell:                    "udid" : "8C922175-4C9E-41B7-92D7-5DEE799A8887",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (3rd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/E4831CED-9AC5-436C-A1BB-2A5FAF620C0E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/E4831CED-9AC5-436C-A1BB-2A5FAF620C0E",
Shell:                    "udid" : "E4831CED-9AC5-436C-A1BB-2A5FAF620C0E",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air (3rd generation)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.tvOS-12-4" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/9BA19876-C26B-4537-8040-15138BE06DFD\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/9BA19876-C26B-4537-8040-15138BE06DFD",
Shell:                    "udid" : "9BA19876-C26B-4537-8040-15138BE06DFD",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/FF1A3F5C-2E3B-443C-9FD2-5E48B30BC9DD\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/FF1A3F5C-2E3B-443C-9FD2-5E48B30BC9DD",
Shell:                    "udid" : "FF1A3F5C-2E3B-443C-9FD2-5E48B30BC9DD",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/27736259-5304-45F0-9781-A25656EF5636\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/27736259-5304-45F0-9781-A25656EF5636",
Shell:                    "udid" : "27736259-5304-45F0-9781-A25656EF5636",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K (at 1080p)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F736FCB8-1968-4243-AAC3-8968EE0065FC\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F736FCB8-1968-4243-AAC3-8968EE0065FC",
Shell:                    "udid" : "F736FCB8-1968-4243-AAC3-8968EE0065FC",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/C12A4BD4-507E-4A2C-B02E-D55C40C4752E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/C12A4BD4-507E-4A2C-B02E-D55C40C4752E",
Shell:                    "udid" : "C12A4BD4-507E-4A2C-B02E-D55C40C4752E",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/5EB5A10B-44D9-499A-A40E-FB316AF51B6C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/5EB5A10B-44D9-499A-A40E-FB316AF51B6C",
Shell:                    "udid" : "5EB5A10B-44D9-499A-A40E-FB316AF51B6C",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K (at 1080p)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.iOS-13-4" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/13D3DFAE-6FE7-4302-890A-9F1BC4274642\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/13D3DFAE-6FE7-4302-890A-9F1BC4274642",
Shell:                    "udid" : "13D3DFAE-6FE7-4302-890A-9F1BC4274642",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/CEA3469B-6CE8-4013-B232-834334A72DA3\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/CEA3469B-6CE8-4013-B232-834334A72DA3",
Shell:                    "udid" : "CEA3469B-6CE8-4013-B232-834334A72DA3",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/218468B2-DF32-433A-A5D5-E81D4AB39616\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/218468B2-DF32-433A-A5D5-E81D4AB39616",
Shell:                    "udid" : "218468B2-DF32-433A-A5D5-E81D4AB39616",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/05CE2408-0E5E-4D85-BBC1-954D58C6E9F3\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/05CE2408-0E5E-4D85-BBC1-954D58C6E9F3",
Shell:                    "udid" : "05CE2408-0E5E-4D85-BBC1-954D58C6E9F3",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/0A84BA8F-E342-43B6-A8F5-DD7F9B36337A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/0A84BA8F-E342-43B6-A8F5-DD7F9B36337A",
Shell:                    "udid" : "0A84BA8F-E342-43B6-A8F5-DD7F9B36337A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro Max"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F399804E-5D79-4F9B-A4A4-D8A5124A0952\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F399804E-5D79-4F9B-A4A4-D8A5124A0952",
Shell:                    "udid" : "F399804E-5D79-4F9B-A4A4-D8A5124A0952",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone SE (2nd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/E17CCE18-5FD8-4512-8118-C37913037258\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/E17CCE18-5FD8-4512-8118-C37913037258",
Shell:                    "udid" : "E17CCE18-5FD8-4512-8118-C37913037258",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (9.7-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/99E8809B-94B3-41C8-BA10-3606DC582B2A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/99E8809B-94B3-41C8-BA10-3606DC582B2A",
Shell:                    "udid" : "99E8809B-94B3-41C8-BA10-3606DC582B2A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (7th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/47F987A4-819E-494D-B46B-526792413CF1\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/47F987A4-819E-494D-B46B-526792413CF1",
Shell:                    "udid" : "47F987A4-819E-494D-B46B-526792413CF1",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (11-inch) (2nd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/592E00DE-A6B6-40D6-A609-33C9831F3F08\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/592E00DE-A6B6-40D6-A609-33C9831F3F08",
Shell:                    "udid" : "592E00DE-A6B6-40D6-A609-33C9831F3F08",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (4th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/3BA734B4-F497-4B0B-B9E1-E1AC9C48AB1E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/3BA734B4-F497-4B0B-B9E1-E1AC9C48AB1E",
Shell:                    "udid" : "3BA734B4-F497-4B0B-B9E1-E1AC9C48AB1E",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air (3rd generation)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.iOS-13-5" : [
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/AEBE506C-1944-4854-9F37-025D4375DBCE\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/AEBE506C-1944-4854-9F37-025D4375DBCE",
Shell:                    "udid" : "AEBE506C-1944-4854-9F37-025D4375DBCE",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B3230A31-0EEB-4D44-8BFD-B95CEC9085A1\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B3230A31-0EEB-4D44-8BFD-B95CEC9085A1",
Shell:                    "udid" : "B3230A31-0EEB-4D44-8BFD-B95CEC9085A1",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8 Plus"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B7DC5811-F239-40ED-9354-A97B75916B4F\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B7DC5811-F239-40ED-9354-A97B75916B4F",
Shell:                    "udid" : "B7DC5811-F239-40ED-9354-A97B75916B4F",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/248BAEAC-A825-4692-B5B4-8A83911B0C5D\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/248BAEAC-A825-4692-B5B4-8A83911B0C5D",
Shell:                    "udid" : "248BAEAC-A825-4692-B5B4-8A83911B0C5D",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/9ADF88A7-3909-483F-B5FF-56B45D11EC7A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/9ADF88A7-3909-483F-B5FF-56B45D11EC7A",
Shell:                    "udid" : "9ADF88A7-3909-483F-B5FF-56B45D11EC7A",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 11 Pro Max"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/1DD8ACA5-3C28-4509-A2FD-966386DD4A2F\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/1DD8ACA5-3C28-4509-A2FD-966386DD4A2F",
Shell:                    "udid" : "1DD8ACA5-3C28-4509-A2FD-966386DD4A2F",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone SE (2nd generation)"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/6DD0596E-3099-4D52-9BEF-DE0C216D9585\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/6DD0596E-3099-4D52-9BEF-DE0C216D9585",
Shell:                    "udid" : "6DD0596E-3099-4D52-9BEF-DE0C216D9585",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (9.7-inch)"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/5C674749-8F30-4959-A567-2C33C16C1A56\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/5C674749-8F30-4959-A567-2C33C16C1A56",
Shell:                    "udid" : "5C674749-8F30-4959-A567-2C33C16C1A56",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (7th generation)"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/FD6E303E-5880-4C3D-B2F2-F6798C986A90\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/FD6E303E-5880-4C3D-B2F2-F6798C986A90",
Shell:                    "udid" : "FD6E303E-5880-4C3D-B2F2-F6798C986A90",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (11-inch) (2nd generation)"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F7EB873D-8829-44C7-9696-0949ACDD4A1C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F7EB873D-8829-44C7-9696-0949ACDD4A1C",
Shell:                    "udid" : "F7EB873D-8829-44C7-9696-0949ACDD4A1C",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (4th generation)"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F7FC4F5C-B29B-4D5B-93B9-DEE430D3F62D\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F7FC4F5C-B29B-4D5B-93B9-DEE430D3F62D",
Shell:                    "udid" : "F7FC4F5C-B29B-4D5B-93B9-DEE430D3F62D",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air (3rd generation)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.watchOS-6-1" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/263C92E5-9D68-41FC-9F6E-22467550E4F3\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/263C92E5-9D68-41FC-9F6E-22467550E4F3",
Shell:                    "udid" : "263C92E5-9D68-41FC-9F6E-22467550E4F3",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/E6610DF1-B8BA-4364-B460-BB970334C7AD\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/E6610DF1-B8BA-4364-B460-BB970334C7AD",
Shell:                    "udid" : "E6610DF1-B8BA-4364-B460-BB970334C7AD",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 44mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/020A08BE-2EA1-4449-A14A-E4623373FB43\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/020A08BE-2EA1-4449-A14A-E4623373FB43",
Shell:                    "udid" : "020A08BE-2EA1-4449-A14A-E4623373FB43",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 5 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/3A22D314-F00B-4A4F-BC3C-7083266DBBFF\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/3A22D314-F00B-4A4F-BC3C-7083266DBBFF",
Shell:                    "udid" : "3A22D314-F00B-4A4F-BC3C-7083266DBBFF",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 5 - 44mm"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.watchOS-5-2" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/6F09B3B2-FAFD-4F05-8322-804E4F151A6C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/6F09B3B2-FAFD-4F05-8322-804E4F151A6C",
Shell:                    "udid" : "6F09B3B2-FAFD-4F05-8322-804E4F151A6C",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 2 - 38mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/8DFBD212-D16B-4B74-A918-2C7E4A4418B7\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/8DFBD212-D16B-4B74-A918-2C7E4A4418B7",
Shell:                    "udid" : "8DFBD212-D16B-4B74-A918-2C7E4A4418B7",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 2 - 42mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/0400AB80-7FA6-4F0B-9EFA-861EA5D61562\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/0400AB80-7FA6-4F0B-9EFA-861EA5D61562",
Shell:                    "udid" : "0400AB80-7FA6-4F0B-9EFA-861EA5D61562",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 3 - 38mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/80EFCE6A-065D-4438-A0DF-CBF49BA63DC6\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/80EFCE6A-065D-4438-A0DF-CBF49BA63DC6",
Shell:                    "udid" : "80EFCE6A-065D-4438-A0DF-CBF49BA63DC6",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 3 - 42mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/8F49736E-8B56-4E96-8471-D3EEDBA1DCE2\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/8F49736E-8B56-4E96-8471-D3EEDBA1DCE2",
Shell:                    "udid" : "8F49736E-8B56-4E96-8471-D3EEDBA1DCE2",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/09EC71C6-D5AE-404F-A3C6-4603F29A53D9\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/09EC71C6-D5AE-404F-A3C6-4603F29A53D9",
Shell:                    "udid" : "09EC71C6-D5AE-404F-A3C6-4603F29A53D9",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 44mm"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.iOS-12-1" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/C61B24DC-D0F5-4F2A-943E-D537C6E71475\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/C61B24DC-D0F5-4F2A-943E-D537C6E71475",
Shell:                    "udid" : "C61B24DC-D0F5-4F2A-943E-D537C6E71475",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 5s"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/73166FC3-0A2E-4631-A1BC-94597ABBEB83\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/73166FC3-0A2E-4631-A1BC-94597ABBEB83",
Shell:                    "udid" : "73166FC3-0A2E-4631-A1BC-94597ABBEB83",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/540154EB-7754-4803-B859-CEAE07426FC3\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/540154EB-7754-4803-B859-CEAE07426FC3",
Shell:                    "udid" : "540154EB-7754-4803-B859-CEAE07426FC3",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/418C7570-07C8-4B4B-8D2E-8DB45345C390\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/418C7570-07C8-4B4B-8D2E-8DB45345C390",
Shell:                    "udid" : "418C7570-07C8-4B4B-8D2E-8DB45345C390",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6s"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B9631966-B0AF-429E-B5AD-3F689FC5CFDA\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B9631966-B0AF-429E-B5AD-3F689FC5CFDA",
Shell:                    "udid" : "B9631966-B0AF-429E-B5AD-3F689FC5CFDA",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6s Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/E05BA5EA-EC6C-4FEC-BFCC-D8C7980002ED\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/E05BA5EA-EC6C-4FEC-BFCC-D8C7980002ED",
Shell:                    "udid" : "E05BA5EA-EC6C-4FEC-BFCC-D8C7980002ED",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone SE"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/CD6407F2-DA7E-4F7D-A1A9-E53AFA539CBC\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/CD6407F2-DA7E-4F7D-A1A9-E53AFA539CBC",
Shell:                    "udid" : "CD6407F2-DA7E-4F7D-A1A9-E53AFA539CBC",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 7"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/455A61B5-A749-4D0C-B3F9-B0E4186359D0\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/455A61B5-A749-4D0C-B3F9-B0E4186359D0",
Shell:                    "udid" : "455A61B5-A749-4D0C-B3F9-B0E4186359D0",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 7 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/ACB040B3-BB47-46EE-BD08-35A1D277E5D3\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/ACB040B3-BB47-46EE-BD08-35A1D277E5D3",
Shell:                    "udid" : "ACB040B3-BB47-46EE-BD08-35A1D277E5D3",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/D5D17540-CE00-4F89-A5D3-1E9C9AB1099C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/D5D17540-CE00-4F89-A5D3-1E9C9AB1099C",
Shell:                    "udid" : "D5D17540-CE00-4F89-A5D3-1E9C9AB1099C",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A64D3E5D-705E-4750-96FD-48A857A10B24\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A64D3E5D-705E-4750-96FD-48A857A10B24",
Shell:                    "udid" : "A64D3E5D-705E-4750-96FD-48A857A10B24",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone X"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/DB79B56C-DC74-4926-A4B4-4B5C4D7DF665\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/DB79B56C-DC74-4926-A4B4-4B5C4D7DF665",
Shell:                    "udid" : "DB79B56C-DC74-4926-A4B4-4B5C4D7DF665",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone XS"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/97A37BF7-CB5A-46EC-B643-7E51F50B30E1\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/97A37BF7-CB5A-46EC-B643-7E51F50B30E1",
Shell:                    "udid" : "97A37BF7-CB5A-46EC-B643-7E51F50B30E1",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone XS Max"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/6F2BACCB-94E5-4DF5-AD77-F41F719EA48F\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/6F2BACCB-94E5-4DF5-AD77-F41F719EA48F",
Shell:                    "udid" : "6F2BACCB-94E5-4DF5-AD77-F41F719EA48F",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone XR"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/36296003-1427-4ACE-9635-D5DBE9AC00F7\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/36296003-1427-4ACE-9635-D5DBE9AC00F7",
Shell:                    "udid" : "36296003-1427-4ACE-9635-D5DBE9AC00F7",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/2F2EBF24-2530-4167-A48A-C669386C517E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/2F2EBF24-2530-4167-A48A-C669386C517E",
Shell:                    "udid" : "2F2EBF24-2530-4167-A48A-C669386C517E",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air 2"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/6D8C47AF-E0DF-4A83-BE7C-7F97A4D60938\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/6D8C47AF-E0DF-4A83-BE7C-7F97A4D60938",
Shell:                    "udid" : "6D8C47AF-E0DF-4A83-BE7C-7F97A4D60938",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (9.7-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/C29BEF3E-0BF4-458A-9884-4529573C816D\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/C29BEF3E-0BF4-458A-9884-4529573C816D",
Shell:                    "udid" : "C29BEF3E-0BF4-458A-9884-4529573C816D",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/166F4B33-AF01-460D-8AB1-0EBADD0D988D\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/166F4B33-AF01-460D-8AB1-0EBADD0D988D",
Shell:                    "udid" : "166F4B33-AF01-460D-8AB1-0EBADD0D988D",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (5th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/20A8089D-3A72-4512-878A-FC00236E2815\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/20A8089D-3A72-4512-878A-FC00236E2815",
Shell:                    "udid" : "20A8089D-3A72-4512-878A-FC00236E2815",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (2nd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/7F35EA0D-F72A-4250-8CA1-36BF1891BFB9\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/7F35EA0D-F72A-4250-8CA1-36BF1891BFB9",
Shell:                    "udid" : "7F35EA0D-F72A-4250-8CA1-36BF1891BFB9",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (10.5-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/C5136BE5-C480-4C7D-A69C-004EC7F6449C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/C5136BE5-C480-4C7D-A69C-004EC7F6449C",
Shell:                    "udid" : "C5136BE5-C480-4C7D-A69C-004EC7F6449C",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (6th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/55678883-2CC7-4FEC-850D-15573917F8F6\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/55678883-2CC7-4FEC-850D-15573917F8F6",
Shell:                    "udid" : "55678883-2CC7-4FEC-850D-15573917F8F6",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (11-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/86F462A6-7E71-4B3C-8F80-EE778F34B22E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/86F462A6-7E71-4B3C-8F80-EE778F34B22E",
Shell:                    "udid" : "86F462A6-7E71-4B3C-8F80-EE778F34B22E",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (3rd generation)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.iOS-12-2" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/FD4E9316-F855-42D6-AFE1-AC5DA556D1ED\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/FD4E9316-F855-42D6-AFE1-AC5DA556D1ED",
Shell:                    "udid" : "FD4E9316-F855-42D6-AFE1-AC5DA556D1ED",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 5s"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/53785283-C8F2-433F-8EDA-62CF73E162D6\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/53785283-C8F2-433F-8EDA-62CF73E162D6",
Shell:                    "udid" : "53785283-C8F2-433F-8EDA-62CF73E162D6",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F4D54A87-5DF6-4F1A-92FC-B540B3824067\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F4D54A87-5DF6-4F1A-92FC-B540B3824067",
Shell:                    "udid" : "F4D54A87-5DF6-4F1A-92FC-B540B3824067",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B93ADB90-EF1F-4623-9A31-F0095EF8ED33\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B93ADB90-EF1F-4623-9A31-F0095EF8ED33",
Shell:                    "udid" : "B93ADB90-EF1F-4623-9A31-F0095EF8ED33",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6s"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A4D708F4-4F54-4937-A541-06C3209A151C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A4D708F4-4F54-4937-A541-06C3209A151C",
Shell:                    "udid" : "A4D708F4-4F54-4937-A541-06C3209A151C",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6s Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/202B54FB-DB21-451E-8197-76D72F2FB2DB\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/202B54FB-DB21-451E-8197-76D72F2FB2DB",
Shell:                    "udid" : "202B54FB-DB21-451E-8197-76D72F2FB2DB",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone SE"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/48F26B60-01BE-401A-B6F5-CB559811F63B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/48F26B60-01BE-401A-B6F5-CB559811F63B",
Shell:                    "udid" : "48F26B60-01BE-401A-B6F5-CB559811F63B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 7"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/030AFA32-9E8E-486A-847B-864955482E17\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/030AFA32-9E8E-486A-847B-864955482E17",
Shell:                    "udid" : "030AFA32-9E8E-486A-847B-864955482E17",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 7 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/451270DB-4924-464E-9F7F-9C947D3BC82E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/451270DB-4924-464E-9F7F-9C947D3BC82E",
Shell:                    "udid" : "451270DB-4924-464E-9F7F-9C947D3BC82E",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/2360E46B-218C-497D-9AAF-77F4C81F7D80\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/2360E46B-218C-497D-9AAF-77F4C81F7D80",
Shell:                    "udid" : "2360E46B-218C-497D-9AAF-77F4C81F7D80",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/0A068491-D605-4E47-85B1-3223144B653A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/0A068491-D605-4E47-85B1-3223144B653A",
Shell:                    "udid" : "0A068491-D605-4E47-85B1-3223144B653A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone X"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A1505528-FE96-4CDC-B5C1-9DD74FFFFDA6\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A1505528-FE96-4CDC-B5C1-9DD74FFFFDA6",
Shell:                    "udid" : "A1505528-FE96-4CDC-B5C1-9DD74FFFFDA6",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone Xs"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/763D23D5-FB4C-47DF-A05B-4C36B404AC34\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/763D23D5-FB4C-47DF-A05B-4C36B404AC34",
Shell:                    "udid" : "763D23D5-FB4C-47DF-A05B-4C36B404AC34",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone Xs Max"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/0255C7C7-7060-45E4-92AA-B3353AF0C34F\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/0255C7C7-7060-45E4-92AA-B3353AF0C34F",
Shell:                    "udid" : "0255C7C7-7060-45E4-92AA-B3353AF0C34F",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone Xʀ"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/39A7AD39-C7E2-4E26-B117-EB6A423D0DDA\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/39A7AD39-C7E2-4E26-B117-EB6A423D0DDA",
Shell:                    "udid" : "39A7AD39-C7E2-4E26-B117-EB6A423D0DDA",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/597EF026-245A-4206-B8FE-F7BD8C7BD3F2\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/597EF026-245A-4206-B8FE-F7BD8C7BD3F2",
Shell:                    "udid" : "597EF026-245A-4206-B8FE-F7BD8C7BD3F2",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air 2"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/5E0ED695-5338-4654-969A-2AEF71BAF250\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/5E0ED695-5338-4654-969A-2AEF71BAF250",
Shell:                    "udid" : "5E0ED695-5338-4654-969A-2AEF71BAF250",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (9.7-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/0BC66005-A197-41EC-A878-A0791684CF71\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/0BC66005-A197-41EC-A878-A0791684CF71",
Shell:                    "udid" : "0BC66005-A197-41EC-A878-A0791684CF71",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/185BB891-55F0-4F03-BCC0-BC7CFFB5035A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/185BB891-55F0-4F03-BCC0-BC7CFFB5035A",
Shell:                    "udid" : "185BB891-55F0-4F03-BCC0-BC7CFFB5035A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (5th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/4A461E72-84E0-4E9F-B05A-B46AA0E98A76\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/4A461E72-84E0-4E9F-B05A-B46AA0E98A76",
Shell:                    "udid" : "4A461E72-84E0-4E9F-B05A-B46AA0E98A76",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (2nd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/67DB16F8-6092-4565-83D3-F99BFE8DBF34\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/67DB16F8-6092-4565-83D3-F99BFE8DBF34",
Shell:                    "udid" : "67DB16F8-6092-4565-83D3-F99BFE8DBF34",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (10.5-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/15F2B819-9925-4313-B766-330F973598E9\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/15F2B819-9925-4313-B766-330F973598E9",
Shell:                    "udid" : "15F2B819-9925-4313-B766-330F973598E9",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (6th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/51793A92-A9F8-4751-848F-A8CEF91FD176\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/51793A92-A9F8-4751-848F-A8CEF91FD176",
Shell:                    "udid" : "51793A92-A9F8-4751-848F-A8CEF91FD176",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (11-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/BA064688-54AE-4F36-8513-95E0B698E3AF\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/BA064688-54AE-4F36-8513-95E0B698E3AF",
Shell:                    "udid" : "BA064688-54AE-4F36-8513-95E0B698E3AF",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (3rd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/5709A2BD-4C6C-4582-B505-C0A973FB2662\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/5709A2BD-4C6C-4582-B505-C0A973FB2662",
Shell:                    "udid" : "5709A2BD-4C6C-4582-B505-C0A973FB2662",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air (3rd generation)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/E3ED1B03-5F09-4662-8F1A-15CD0271642F\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/E3ED1B03-5F09-4662-8F1A-15CD0271642F",
Shell:                    "udid" : "E3ED1B03-5F09-4662-8F1A-15CD0271642F",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/8FB3B131-932A-4ED5-B5C4-07E85B6B1AF4\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/8FB3B131-932A-4ED5-B5C4-07E85B6B1AF4",
Shell:                    "udid" : "8FB3B131-932A-4ED5-B5C4-07E85B6B1AF4",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 44mm"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/7DF502C2-8F87-40ED-B49A-B17D85BB2225\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/7DF502C2-8F87-40ED-B49A-B17D85BB2225",
Shell:                    "udid" : "7DF502C2-8F87-40ED-B49A-B17D85BB2225",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 5 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/FA34138E-D63E-49B9-9460-C35CD9414B8E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/FA34138E-D63E-49B9-9460-C35CD9414B8E",
Shell:                    "udid" : "FA34138E-D63E-49B9-9460-C35CD9414B8E",
Shell:                    "isAvailable" : true,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 5 - 44mm"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.tvOS-12-1" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/7F6C2618-839C-4AE2-B8DC-7C6A14355FAA\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/7F6C2618-839C-4AE2-B8DC-7C6A14355FAA",
Shell:                    "udid" : "7F6C2618-839C-4AE2-B8DC-7C6A14355FAA",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/3E716216-A9B2-43DB-A189-8D0F82DF5F18\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/3E716216-A9B2-43DB-A189-8D0F82DF5F18",
Shell:                    "udid" : "3E716216-A9B2-43DB-A189-8D0F82DF5F18",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/2476E05C-7333-48B8-AD1E-FB83B1A993F5\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/2476E05C-7333-48B8-AD1E-FB83B1A993F5",
Shell:                    "udid" : "2476E05C-7333-48B8-AD1E-FB83B1A993F5",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K (at 1080p)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.tvOS-13-0" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F6F4921F-329C-4180-8565-4A20487523A6\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F6F4921F-329C-4180-8565-4A20487523A6",
Shell:                    "udid" : "F6F4921F-329C-4180-8565-4A20487523A6",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/EA832FC3-7EE7-4B75-A6CB-368E3CE05F65\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/EA832FC3-7EE7-4B75-A6CB-368E3CE05F65",
Shell:                    "udid" : "EA832FC3-7EE7-4B75-A6CB-368E3CE05F65",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B9729B7D-5987-40AE-BCFD-C418DBE8CC2C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B9729B7D-5987-40AE-BCFD-C418DBE8CC2C",
Shell:                    "udid" : "B9729B7D-5987-40AE-BCFD-C418DBE8CC2C",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K (at 1080p)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.iOS-12-4" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/49D6132D-8F99-4126-95DE-2AEDB5DAF7D2\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/49D6132D-8F99-4126-95DE-2AEDB5DAF7D2",
Shell:                    "udid" : "49D6132D-8F99-4126-95DE-2AEDB5DAF7D2",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 5s"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A717F998-BF81-4335-B7FB-8C63B6A96968\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A717F998-BF81-4335-B7FB-8C63B6A96968",
Shell:                    "udid" : "A717F998-BF81-4335-B7FB-8C63B6A96968",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/02235DE1-9046-4FFF-BF79-0DF909FC14C9\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/02235DE1-9046-4FFF-BF79-0DF909FC14C9",
Shell:                    "udid" : "02235DE1-9046-4FFF-BF79-0DF909FC14C9",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B775F2B3-86E2-4BDC-9FB1-9C9B16E5D38B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B775F2B3-86E2-4BDC-9FB1-9C9B16E5D38B",
Shell:                    "udid" : "B775F2B3-86E2-4BDC-9FB1-9C9B16E5D38B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6s"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A73C07E3-C30E-46BC-832B-BED572BA8ADF\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A73C07E3-C30E-46BC-832B-BED572BA8ADF",
Shell:                    "udid" : "A73C07E3-C30E-46BC-832B-BED572BA8ADF",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 6s Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/D65DD3CC-1C48-46F9-B7D0-A8E0DB2A3B73\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/D65DD3CC-1C48-46F9-B7D0-A8E0DB2A3B73",
Shell:                    "udid" : "D65DD3CC-1C48-46F9-B7D0-A8E0DB2A3B73",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone SE"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B4F8053E-4014-497E-BB42-B5AF7017901A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B4F8053E-4014-497E-BB42-B5AF7017901A",
Shell:                    "udid" : "B4F8053E-4014-497E-BB42-B5AF7017901A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 7"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/17DB0644-97DE-4237-A512-C31DD25C8C2B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/17DB0644-97DE-4237-A512-C31DD25C8C2B",
Shell:                    "udid" : "17DB0644-97DE-4237-A512-C31DD25C8C2B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 7 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/88378FC3-715E-4239-A0BC-75369CC6F992\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/88378FC3-715E-4239-A0BC-75369CC6F992",
Shell:                    "udid" : "88378FC3-715E-4239-A0BC-75369CC6F992",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A259CD9B-69B1-4F8D-AD63-848A591B83E4\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A259CD9B-69B1-4F8D-AD63-848A591B83E4",
Shell:                    "udid" : "A259CD9B-69B1-4F8D-AD63-848A591B83E4",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone 8 Plus"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/6174D823-81E8-4546-8E0A-5539CFE6F768\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/6174D823-81E8-4546-8E0A-5539CFE6F768",
Shell:                    "udid" : "6174D823-81E8-4546-8E0A-5539CFE6F768",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone X"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/73AD360E-1428-4126-9651-D20B8A39B82B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/73AD360E-1428-4126-9651-D20B8A39B82B",
Shell:                    "udid" : "73AD360E-1428-4126-9651-D20B8A39B82B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone Xs"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/AE398005-6B33-49A5-AB3A-D661C993DD87\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/AE398005-6B33-49A5-AB3A-D661C993DD87",
Shell:                    "udid" : "AE398005-6B33-49A5-AB3A-D661C993DD87",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone Xs Max"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/A6E4FD3B-3F62-4339-BDCD-8F35F768B27B\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/A6E4FD3B-3F62-4339-BDCD-8F35F768B27B",
Shell:                    "udid" : "A6E4FD3B-3F62-4339-BDCD-8F35F768B27B",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPhone Xʀ"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F87D89E3-CE29-4B2D-923C-93E1517109CD\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F87D89E3-CE29-4B2D-923C-93E1517109CD",
Shell:                    "udid" : "F87D89E3-CE29-4B2D-923C-93E1517109CD",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/34253A9A-2643-4791-A938-2FD6F170C8B8\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/34253A9A-2643-4791-A938-2FD6F170C8B8",
Shell:                    "udid" : "34253A9A-2643-4791-A938-2FD6F170C8B8",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air 2"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/51176207-A852-42DB-AEE2-7F41F41EC5AE\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/51176207-A852-42DB-AEE2-7F41F41EC5AE",
Shell:                    "udid" : "51176207-A852-42DB-AEE2-7F41F41EC5AE",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (9.7-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F7C754BA-18A1-4816-B580-C39D9AF9179F\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F7C754BA-18A1-4816-B580-C39D9AF9179F",
Shell:                    "udid" : "F7C754BA-18A1-4816-B580-C39D9AF9179F",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/2C2EA08B-E2A3-4C2B-A64E-43699246B1DC\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/2C2EA08B-E2A3-4C2B-A64E-43699246B1DC",
Shell:                    "udid" : "2C2EA08B-E2A3-4C2B-A64E-43699246B1DC",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (5th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/02220D3F-0980-49FA-9356-2F45C4E34E47\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/02220D3F-0980-49FA-9356-2F45C4E34E47",
Shell:                    "udid" : "02220D3F-0980-49FA-9356-2F45C4E34E47",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (2nd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F6B85750-1370-4520-823A-AE252C7BDA9C\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F6B85750-1370-4520-823A-AE252C7BDA9C",
Shell:                    "udid" : "F6B85750-1370-4520-823A-AE252C7BDA9C",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (10.5-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/C9392785-F4E4-4D6B-893D-4FA14A1A7997\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/C9392785-F4E4-4D6B-893D-4FA14A1A7997",
Shell:                    "udid" : "C9392785-F4E4-4D6B-893D-4FA14A1A7997",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad (6th generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/7FE82573-64EA-4A6C-B4EB-63672E957072\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/7FE82573-64EA-4A6C-B4EB-63672E957072",
Shell:                    "udid" : "7FE82573-64EA-4A6C-B4EB-63672E957072",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (11-inch)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/42C6C3A2-2D0A-48EC-B459-8F90F57D8EA8\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/42C6C3A2-2D0A-48EC-B459-8F90F57D8EA8",
Shell:                    "udid" : "42C6C3A2-2D0A-48EC-B459-8F90F57D8EA8",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Pro (12.9-inch) (3rd generation)"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/8CB2F7D3-C37F-4084-BD4B-8D1118275774\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/8CB2F7D3-C37F-4084-BD4B-8D1118275774",
Shell:                    "udid" : "8CB2F7D3-C37F-4084-BD4B-8D1118275774",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "iPad Air (3rd generation)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.tvOS-12-2" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/871E0A8A-40BD-4909-9615-7D3511C92E5E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/871E0A8A-40BD-4909-9615-7D3511C92E5E",
Shell:                    "udid" : "871E0A8A-40BD-4909-9615-7D3511C92E5E",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/F1C41338-6961-462F-83A3-B06803910FC7\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/F1C41338-6961-462F-83A3-B06803910FC7",
Shell:                    "udid" : "F1C41338-6961-462F-83A3-B06803910FC7",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/B515B015-AD9A-44E3-B91E-AC6C69874F5A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/B515B015-AD9A-44E3-B91E-AC6C69874F5A",
Shell:                    "udid" : "B515B015-AD9A-44E3-B91E-AC6C69874F5A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple TV 4K (at 1080p)"
Shell:                  }
Shell:                ],
Shell:                "com.apple.CoreSimulator.SimRuntime.watchOS-5-3" : [
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/E7338487-BC05-4B91-8E23-708C0A92AF67\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/E7338487-BC05-4B91-8E23-708C0A92AF67",
Shell:                    "udid" : "E7338487-BC05-4B91-8E23-708C0A92AF67",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 2 - 38mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/FFAB590B-70A2-4F69-8005-EA94F135A740\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/FFAB590B-70A2-4F69-8005-EA94F135A740",
Shell:                    "udid" : "FFAB590B-70A2-4F69-8005-EA94F135A740",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 2 - 42mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/8537D12B-8FAD-4799-97BF-F88B48BBD14A\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/8537D12B-8FAD-4799-97BF-F88B48BBD14A",
Shell:                    "udid" : "8537D12B-8FAD-4799-97BF-F88B48BBD14A",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 3 - 38mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/7C0A1274-E053-4AE7-BF5F-131BA600F5C9\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/7C0A1274-E053-4AE7-BF5F-131BA600F5C9",
Shell:                    "udid" : "7C0A1274-E053-4AE7-BF5F-131BA600F5C9",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 3 - 42mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/EF905AA5-27D5-43E8-8BDC-DB931A05176E\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/EF905AA5-27D5-43E8-8BDC-DB931A05176E",
Shell:                    "udid" : "EF905AA5-27D5-43E8-8BDC-DB931A05176E",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 40mm"
Shell:                  },
Shell:                  {
Shell:                    "availabilityError" : "runtime profile not found",
Shell:                    "dataPath" : "\/Users\/denisbrandi\/Library\/Developer\/CoreSimulator\/Devices\/36B52266-6793-48C2-9D12-865625C99F25\/data",
Shell:                    "logPath" : "\/Users\/denisbrandi\/Library\/Logs\/CoreSimulator\/36B52266-6793-48C2-9D12-865625C99F25",
Shell:                    "udid" : "36B52266-6793-48C2-9D12-865625C99F25",
Shell:                    "isAvailable" : false,
Shell:                    "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
Shell:                    "state" : "Shutdown",
Shell:                    "name" : "Apple Watch Series 4 - 44mm"
Shell:                  }
Shell:                ]
Shell:              }
Shell:            }
Shell: [+2988 ms] [
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.4 (17L255)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.appletvsimulator",
Shell:                "modelCode" : "AppleTV6,2",
Shell:                "identifier" : "5EB5A10B-44D9-499A-A40E-FB316AF51B6C",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.apple-tv-4k",
Shell:                "modelName" : "Apple TV 4K (at 1080p)",
Shell:                "name" : "Apple TV 4K (at 1080p)"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPhone12,3",
Shell:                "identifier" : "248BAEAC-A825-4692-B5B4-8A83911B0C5D",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.iphone-11-pro-1",
Shell:                "modelName" : "iPhone 11 Pro",
Shell:                "name" : "iPhone 11 Pro"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "6.2.1 (17T531)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.watchsimulator",
Shell:                "modelCode" : "Watch4,4",
Shell:                "identifier" : "8FB3B131-932A-4ED5-B5C4-07E85B6B1AF4",
Shell:                "architecture" : "i386",
Shell:                "modelUTI" : "com.apple.watch-series4-1",
Shell:                "modelName" : "Apple Watch Series 4 - 44mm",
Shell:                "name" : "Apple Watch Series 4 - 44mm"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPhone12,1",
Shell:                "identifier" : "B7DC5811-F239-40ED-9354-A97B75916B4F",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.iphone-11-1",
Shell:                "modelName" : "iPhone 11",
Shell:                "name" : "iPhone 11"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.4 (17L255)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.appletvsimulator",
Shell:                "modelCode" : "AppleTV6,2",
Shell:                "identifier" : "C12A4BD4-507E-4A2C-B02E-D55C40C4752E",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.apple-tv-4k",
Shell:                "modelName" : "Apple TV 4K",
Shell:                "name" : "Apple TV 4K"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPad11,3",
Shell:                "identifier" : "F7FC4F5C-B29B-4D5B-93B9-DEE430D3F62D",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.ipad-air3-wifi-1",
Shell:                "modelName" : "iPad Air (3rd generation)",
Shell:                "name" : "iPad Air (3rd generation)"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "6.2.1 (17T531)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.watchsimulator",
Shell:                "modelCode" : "Watch5,4",
Shell:                "identifier" : "FA34138E-D63E-49B9-9460-C35CD9414B8E",
Shell:                "architecture" : "i386",
Shell:                "modelUTI" : "com.apple.watch-series5-1",
Shell:                "modelName" : "Apple Watch Series 5 - 44mm",
Shell:                "name" : "Apple Watch Series 5 - 44mm"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPad8,9",
Shell:                "identifier" : "FD6E303E-5880-4C3D-B2F2-F6798C986A90",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.ipad-pro-11-2nd-1",
Shell:                "modelName" : "iPad Pro (11-inch) (2nd generation)",
Shell:                "name" : "iPad Pro (11-inch) (2nd generation)"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPad7,12",
Shell:                "identifier" : "5C674749-8F30-4959-A567-2C33C16C1A56",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.ipad-7-wwan-1",
Shell:                "modelName" : "iPad (7th generation)",
Shell:                "name" : "iPad (7th generation)"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPhone10,4",
Shell:                "identifier" : "AEBE506C-1944-4854-9F37-025D4375DBCE",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.iphone-8-2",
Shell:                "modelName" : "iPhone 8",
Shell:                "name" : "iPhone 8"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPhone12,8",
Shell:                "identifier" : "1DD8ACA5-3C28-4509-A2FD-966386DD4A2F",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.iphone-se-1",
Shell:                "modelName" : "iPhone SE (2nd generation)",
Shell:                "name" : "iPhone SE (2nd generation)"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "6.2.1 (17T531)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.watchsimulator",
Shell:                "modelCode" : "Watch4,3",
Shell:                "identifier" : "E3ED1B03-5F09-4662-8F1A-15CD0271642F",
Shell:                "architecture" : "i386",
Shell:                "modelUTI" : "com.apple.watch-series4-1",
Shell:                "modelName" : "Apple Watch Series 4 - 40mm",
Shell:                "name" : "Apple Watch Series 4 - 40mm"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.4 (17L255)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.appletvsimulator",
Shell:                "modelCode" : "AppleTV5,3",
Shell:                "identifier" : "F736FCB8-1968-4243-AAC3-8968EE0065FC",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.apple-tv-4",
Shell:                "modelName" : "Apple TV",
Shell:                "name" : "Apple TV"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "6.2.1 (17T531)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.watchsimulator",
Shell:                "modelCode" : "Watch5,3",
Shell:                "identifier" : "7DF502C2-8F87-40ED-B49A-B17D85BB2225",
Shell:                "architecture" : "i386",
Shell:                "modelUTI" : "com.apple.watch-series5-1",
Shell:                "modelName" : "Apple Watch Series 5 - 40mm",
Shell:                "name" : "Apple Watch Series 5 - 40mm"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPhone12,5",
Shell:                "identifier" : "9ADF88A7-3909-483F-B5FF-56B45D11EC7A",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.iphone-11-pro-max-1",
Shell:                "modelName" : "iPhone 11 Pro Max",
Shell:                "name" : "iPhone 11 Pro Max"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPad6,4",
Shell:                "identifier" : "6DD0596E-3099-4D52-9BEF-DE0C216D9585",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba",
Shell:                "modelName" : "iPad Pro (9.7-inch)",
Shell:                "name" : "iPad Pro (9.7-inch)"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPad8,12",
Shell:                "identifier" : "F7EB873D-8829-44C7-9696-0949ACDD4A1C",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.ipad-pro-12point9-4th-1",
Shell:                "modelName" : "iPad Pro (12.9-inch) (4th generation)",
Shell:                "name" : "iPad Pro (12.9-inch) (4th generation)"
Shell:              },
Shell:              {
Shell:                "simulator" : true,
Shell:                "operatingSystemVersion" : "13.5 (17F61)",
Shell:                "available" : true,
Shell:                "platform" : "com.apple.platform.iphonesimulator",
Shell:                "modelCode" : "iPhone10,5",
Shell:                "identifier" : "B3230A31-0EEB-4D44-8BFD-B95CEC9085A1",
Shell:                "architecture" : "x86_64",
Shell:                "modelUTI" : "com.apple.iphone-8-plus-2",
Shell:                "modelName" : "iPhone 8 Plus",
Shell:                "name" : "iPhone 8 Plus"
Shell:              }
Shell:            ]
Shell: [   +6 ms] /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 shell getprop
Shell: [  +95 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
Shell: [   +5 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
Shell: [   +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
Shell: [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
Shell: [ +116 ms] Found plugin firebase_core at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.4.4+3/
Shell: [   +7 ms] Found plugin firebase_core_web at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_web-0.1.1+2/
Shell: [   +2 ms] Found plugin firebase_crashlytics at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_crashlytics-0.1.3+3/
Shell: [   +9 ms] Found plugin flutter_local_notifications at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-1.4.4+1/
Shell: [  +30 ms] Found plugin open_file at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/open_file-3.0.1/
Shell: [   +3 ms] Found plugin package_info at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/package_info-0.4.1/
Shell: [   +2 ms] Found plugin path_provider at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.11/
Shell: [   +1 ms] Found plugin path_provider_linux at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-0.0.1+1/
Shell: [   +1 ms] Found plugin path_provider_macos at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4+3/
Shell: [   +2 ms] Found plugin permission_handler at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1/
Shell: [   +8 ms] Found plugin sensors at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/sensors-0.4.2+2/
Shell: [   +6 ms] Found plugin share at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/share-0.6.4+3/
Shell: [  +20 ms] Found plugin video_player at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/video_player-0.10.11+1/
Shell: [   +2 ms] Found plugin video_player_web at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.3+1/
Shell: [   +3 ms] Found plugin wakelock at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/wakelock-0.1.4+1/
Shell: [   +3 ms] Found plugin webview_flutter at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/webview_flutter-0.3.22+1/
Shell: [  +55 ms] Found plugin firebase_core at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.4.4+3/
Shell: [   +1 ms] Found plugin firebase_core_web at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core_web-0.1.1+2/
Shell: [   +1 ms] Found plugin firebase_crashlytics at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_crashlytics-0.1.3+3/
Shell: [   +7 ms] Found plugin flutter_local_notifications at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-1.4.4+1/
Shell: [  +20 ms] Found plugin open_file at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/open_file-3.0.1/
Shell: [   +2 ms] Found plugin package_info at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/package_info-0.4.1/
Shell: [   +1 ms] Found plugin path_provider at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.11/
Shell: [   +2 ms] Found plugin path_provider_linux at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-0.0.1+1/
Shell: [   +1 ms] Found plugin path_provider_macos at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4+3/
Shell: [   +3 ms] Found plugin permission_handler at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1/
Shell: [   +7 ms] Found plugin sensors at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/sensors-0.4.2+2/
Shell: [   +1 ms] Found plugin share at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/share-0.6.4+3/
Shell: [  +10 ms] Found plugin video_player at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/video_player-0.10.11+1/
Shell: [   +1 ms] Found plugin video_player_web at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.3+1/
Shell: [   +2 ms] Found plugin wakelock at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/wakelock-0.1.4+1/
Shell: [   +3 ms] Found plugin webview_flutter at /Users/denisbrandi/development/flutter/.pub-cache/hosted/pub.dartlang.org/webview_flutter-0.3.22+1/
Shell: [  +60 ms] Generating /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
Shell: [  +25 ms] ro.hardware = walleye
Shell: [        ] ro.build.characteristics = nosdcard
Shell: [  +44 ms] Launching test_driver/app.dart on Pixel 2 in debug mode...
Shell: [   +9 ms] /Users/denisbrandi/development/flutter/bin/cache/dart-sdk/bin/dart /Users/denisbrandi/development/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root
/Users/denisbrandi/development/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names -Ddart.developer.causal_async_stacks=true --output-dill
/var/folders/13/7znpxrr54yxg5x7x_7pdd5bc0000gn/T/flutter_tool.5PAO7A/app.dill --packages /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/.packages -Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root
Shell: [  +15 ms] executing: /Users/denisbrandi/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/build/app/outputs/apk/app.apk AndroidManifest.xml
Shell: [  +33 ms] Exit code 0 from: /Users/denisbrandi/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/build/app/outputs/apk/app.apk AndroidManifest.xml
Shell: [        ] N: android=http://schemas.android.com/apk/res/android
Shell:              E: manifest (line=2)
Shell:                A: android:versionCode(0x0101021b)=(type 0x10)0x1
Shell:                A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
Shell:                A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1d
Shell:                A: android:compileSdkVersionCodename(0x01010573)="10" (Raw: "10")
Shell:                A: package="co.tide.universal.qa" (Raw: "co.tide.universal.qa")
Shell:                A: platformBuildVersionCode=(type 0x10)0x1d
Shell:                A: platformBuildVersionName=(type 0x10)0xa
Shell:                E: uses-sdk (line=7)
Shell:                  A: android:minSdkVersion(0x0101020c)=(type 0x10)0x13
Shell:                  A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1d
Shell:                E: uses-permission (line=14)
Shell:                  A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
Shell:                E: uses-permission (line=15)
Shell:                  A: android:name(0x01010003)="android.permission.REQUEST_INSTALL_PACKAGES" (Raw: "android.permission.REQUEST_INSTALL_PACKAGES")
Shell:                E: uses-permission (line=16)
Shell:                  A: android:name(0x01010003)="android.permission.READ_EXTERNAL_STORAGE" (Raw: "android.permission.READ_EXTERNAL_STORAGE")
Shell:                E: uses-permission (line=17)
Shell:                  A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
Shell:                E: uses-permission (line=18)
Shell:                  A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
Shell:                E: uses-permission (line=19)
Shell:                  A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
Shell:                E: uses-permission (line=20)
Shell:                  A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
Shell:                E: application (line=28)
Shell:                  A: android:label(0x01010001)=@0x7f090000
Shell:                  A: android:icon(0x01010002)=@0x7f080000
Shell:                  A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
Shell:                  A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
Shell:                  A: android:networkSecurityConfig(0x01010527)=@0x7f0c0001
Shell:                  A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
Shell:                  E: activity (line=35)
Shell:                    A: android:theme(0x01010000)=@0x7f0a0000
Shell:                    A: android:name(0x01010003)="co.tide.universal.MainActivity" (Raw: "co.tide.universal.MainActivity")
Shell:                    A: android:launchMode(0x0101001d)=(type 0x10)0x1
Shell:                    A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
Shell:                    A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
Shell:                    A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
Shell:                    E: meta-data (line=49)
Shell:                      A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
Shell:                      A: android:resource(0x01010025)=@0x7f0a0001
Shell:                    E: meta-data (line=59)
Shell:                      A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
Shell:                      A: android:resource(0x01010025)=@0x7f040017
Shell:                    E: intent-filter (line=63)
Shell:                      E: action (line=64)
Shell:                        A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
Shell:                      E: category (line=66)
Shell:                        A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
Shell:                  E: meta-data (line=73)
Shell:                    A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
Shell:                    A: android:value(0x01010024)=(type 0x10)0x2
Shell:                  E: service (line=77)
Shell:                    A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw: "com.google.firebase.components.ComponentDiscoveryService")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
Shell:                    E: meta-data (line=81)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.crashlytics.firebasecrashlytics.FlutterFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.crashlytics.firebasecrashlytics.FlutterFirebaseAppRegistrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                    E: meta-data (line=84)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseAppRegistrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                    E: meta-data (line=87)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" (Raw:
"com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                    E: meta-data (line=90)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar" (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                  E: provider (line=95)
Shell:                    A: android:name(0x01010003)="androidx.core.content.FileProvider" (Raw: "androidx.core.content.FileProvider")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:authorities(0x01010018)="co.tide.universal.qa.fileProvider" (Raw: "co.tide.universal.qa.fileProvider")
Shell:                    A: android:grantUriPermissions(0x0101001b)=(type 0x12)0xffffffff
Shell:                    E: meta-data (line=100)
Shell:                      A: android:name(0x01010003)="android.support.FILE_PROVIDER_PATHS" (Raw: "android.support.FILE_PROVIDER_PATHS")
Shell:                      A: android:resource(0x01010025)=@0x7f0c0000
Shell:                  E: receiver (line=105)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementReceiver")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: receiver (line=110)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver")
Shell:                    A: android:permission(0x01010006)="android.permission.INSTALL_PACKAGES" (Raw: "android.permission.INSTALL_PACKAGES")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0xffffffff
Shell:                    E: intent-filter (line=115)
Shell:                      E: action (line=116)
Shell:                        A: android:name(0x01010003)="com.android.vending.INSTALL_REFERRER" (Raw: "com.android.vending.INSTALL_REFERRER")
Shell:                  E: service (line=120)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw: "com.google.android.gms.measurement.AppMeasurementService")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: service (line=124)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw: "com.google.android.gms.measurement.AppMeasurementJobService")
Shell:                    A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: receiver (line=130)
Shell:                    A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw: "com.google.firebase.iid.FirebaseInstanceIdReceiver")
Shell:                    A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0xffffffff
Shell:                    E: intent-filter (line=134)
Shell:                      E: action (line=135)
Shell:                        A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
Shell:                  E: provider (line=139)
Shell:                    A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw: "com.google.firebase.provider.FirebaseInitProvider")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:authorities(0x01010018)="co.tide.universal.qa.firebaseinitprovider" (Raw: "co.tide.universal.qa.firebaseinitprovider")
Shell:                    A: android:initOrder(0x0101001a)=(type 0x10)0x64
Shell:                  E: activity (line=145)
Shell:                    A: android:theme(0x01010000)=@0x01030010
Shell:                    A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw: "com.google.android.gms.common.api.GoogleApiActivity")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: meta-data (line=150)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
Shell:                    A: android:value(0x01010024)=@0x7f060001
Shell:                  E: provider (line=154)
Shell:                    A: android:name(0x01010003)="com.crashlytics.android.CrashlyticsInitProvider" (Raw: "com.crashlytics.android.CrashlyticsInitProvider")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:authorities(0x01010018)="co.tide.universal.qa.crashlyticsinitprovider" (Raw: "co.tide.universal.qa.crashlyticsinitprovider")
Shell:                    A: android:initOrder(0x0101001a)=(type 0x10)0x5a
Shell: [  +10 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 shell -x logcat -v time -t 1
Shell: [  +86 ms] Exit code 0 from: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 shell -x logcat -v time -t 1
Shell: [        ] --------- beginning of main
Shell:            07-09 10:42:02.447 I/le.android.kee(10968): WaitForGcToComplete blocked ProfileSaver on AddRemoveAppImageSpace for 43.759ms
Shell: [  +16 ms] <- compile /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app.dart
Shell: [  +12 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb version
Shell: [  +20 ms] Android Debug Bridge version 1.0.41
Shell:            Version 30.0.3-6597393
Shell:            Installed as /Users/denisbrandi/Library/Android/sdk/platform-tools/adb
Shell: [   +3 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb start-server
Shell: [   +6 ms] Building APK
Shell: [  +20 ms] Running Gradle task 'assembleWipDebug'...
Shell: [   +3 ms] gradle.properties already sets `android.enableR8`
Shell: [  +11 ms] Using gradle from /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/android/gradlew.
Shell: [   +1 ms] /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/android/gradlew mode: 33261 rwxr-xr-x.
Shell: [  +13 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
Shell: [  +43 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
Shell: [   +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+","WorkingDirectory":"$APP_PACKAGE\/Contents\/bin","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudi
o4.0","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","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-193.6911.18.40.6514223","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","NSHi
ghResolutionCapable":true,"CFBundleShortVersionString":"4.0","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.0, build AI-193.6911.18.40.6514223. Copyright JetBrains s.r.o., (c) 2000-2020","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a
removable volume."}
Shell: [   +6 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
Shell: [ +219 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
Shell: [        ] openjdk version "1.8.0_242-release"
Shell:            OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
Shell:            OpenJDK 64-Bit Server VM (build 25.242-b3-6222593, mixed mode)
Shell: [   +2 ms] executing: [/Users/denisbrandi/Documents/workspace/Tide/universal-app-android/android/] /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/android/gradlew -Pverbose=true -Ptarget-platform=android-arm64
-Ptarget=/Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app.dart -Ptrack-widget-creation=true -Pfilesystem-scheme=org-dartlang-root assembleWipDebug
Shell: [+1173 ms] > Configure project :app
Shell: [        ] WARNING: API 'variant.getAssemble()' is obsolete and has been replaced with 'variant.getAssembleProvider()'.
Shell: [        ] It will be removed at the end of 2019.
Shell: [        ] For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
Shell: [        ] To determine what is calling variant.getAssemble(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Shell: [        ] WARNING: API 'variantOutput.getProcessResources()' is obsolete and has been replaced with 'variantOutput.getProcessResourcesProvider()'.
Shell: [        ] It will be removed at the end of 2019.
Shell: [        ] For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
Shell: [        ] To determine what is calling variantOutput.getProcessResources(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Shell: [        ] WARNING: API 'variantOutput.getProcessManifest()' is obsolete and has been replaced with 'variantOutput.getProcessManifestProvider()'.
Shell: [        ] It will be removed at the end of 2019.
Shell: [        ] For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
Shell: [        ] To determine what is calling variantOutput.getProcessManifest(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Shell: [        ] WARNING: API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
Shell: [        ] It will be removed at the end of 2019.
Shell: [        ] For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
Shell: [        ] To determine what is calling variant.getMergeResources(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Shell: [        ] WARNING: API 'variant.getMergeAssets()' is obsolete and has been replaced with 'variant.getMergeAssetsProvider()'.
Shell: [        ] It will be removed at the end of 2019.
Shell: [        ] For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
Shell: [        ] To determine what is calling variant.getMergeAssets(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Shell: [        ] WARNING: API 'variant.getPackageApplication()' is obsolete and has been replaced with 'variant.getPackageApplicationProvider()'.
Shell: [        ] It will be removed at the end of 2019.
Shell: [        ] For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
Shell: [        ] To determine what is calling variant.getPackageApplication(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Shell: [        ] WARNING: API 'variant.getExternalNativeBuildTasks()' is obsolete and has been replaced with 'variant.getExternalNativeBuildProviders()'.
Shell: [        ] It will be removed at the end of 2019.
Shell: [        ] For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
Shell: [        ] To determine what is calling variant.getExternalNativeBuildTasks(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Shell: [ +871 ms] > Task :app:compileFlutterBuildWipDebug UP-TO-DATE
Shell: [        ] > Task :app:packLibsflutterBuildWipDebug UP-TO-DATE
Shell: [        ] > Task :app:preBuild UP-TO-DATE
Shell: [        ] > Task :app:preWipDebugBuild UP-TO-DATE
Shell: [  +98 ms] > Task :firebase_core:preBuild UP-TO-DATE
Shell: [        ] > Task :firebase_core:preDebugBuild UP-TO-DATE
Shell: [   +1 ms] > Task :firebase_core_web:preBuild UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :firebase_crashlytics:preBuild UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:preBuild UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :open_file:preBuild UP-TO-DATE
Shell: [        ] > Task :open_file:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :open_file:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :package_info:preBuild UP-TO-DATE
Shell: [        ] > Task :package_info:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :package_info:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :path_provider:preBuild UP-TO-DATE
Shell: [        ] > Task :path_provider:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :path_provider:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :firebase_core:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :permission_handler:preBuild UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :permission_handler:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :permission_handler:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :sensors:preBuild UP-TO-DATE
Shell: [        ] > Task :sensors:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :sensors:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :flutter_local_notifications:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :share:preBuild UP-TO-DATE
Shell: [        ] > Task :share:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :share:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :video_player:preBuild UP-TO-DATE
Shell: [        ] > Task :video_player:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :wakelock:preBuild UP-TO-DATE
Shell: [        ] > Task :wakelock:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :wakelock:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :webview_flutter:preBuild UP-TO-DATE
Shell: [        ] > Task :webview_flutter:preDebugBuild UP-TO-DATE
Shell: [        ] > Task :firebase_core:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :webview_flutter:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :firebase_core_web:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :firebase_crashlytics:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :flutter_local_notifications:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :open_file:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :package_info:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :path_provider:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :permission_handler:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :sensors:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :share:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :video_player:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :wakelock:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :webview_flutter:packageDebugRenderscript NO-SOURCE
Shell: [        ] > Task :app:compileWipDebugRenderscript NO-SOURCE
Shell: [        ] > Task :app:checkWipDebugManifest UP-TO-DATE
Shell: [        ] > Task :app:generateWipDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :video_player:compileDebugAidl NO-SOURCE
Shell: [        ] > Task :app:compileWipDebugAidl NO-SOURCE
Shell: [        ] > Task :app:cleanMergeWipDebugAssets
Shell: [        ] > Task :app:mergeWipDebugShaders UP-TO-DATE
Shell: [        ] > Task :app:compileWipDebugShaders UP-TO-DATE
Shell: [        ] > Task :app:generateWipDebugAssets UP-TO-DATE
Shell: [  +72 ms] > Task :firebase_core:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :firebase_core:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :firebase_core:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :firebase_core:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:generateDebugAssets UP-TO-DATE
Shell: [   +1 ms] > Task :firebase_core_web:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:packageDebugAssets UP-TO-DATE
Shell: [   +1 ms] > Task :open_file:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :open_file:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :open_file:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :open_file:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :package_info:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :package_info:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :package_info:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :package_info:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :path_provider:mergeDebugShaders UP-TO-DATE
Shell: [   +2 ms] > Task :path_provider:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :path_provider:generateDebugAssets UP-TO-DATE
Shell: [   +1 ms] > Task :path_provider:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :permission_handler:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :permission_handler:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :permission_handler:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :permission_handler:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :sensors:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :sensors:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :sensors:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :sensors:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :share:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :share:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :share:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :share:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :video_player:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :video_player:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :video_player:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :video_player:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :wakelock:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :wakelock:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :wakelock:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :wakelock:packageDebugAssets UP-TO-DATE
Shell: [        ] > Task :webview_flutter:mergeDebugShaders UP-TO-DATE
Shell: [        ] > Task :webview_flutter:compileDebugShaders UP-TO-DATE
Shell: [        ] > Task :webview_flutter:generateDebugAssets UP-TO-DATE
Shell: [        ] > Task :webview_flutter:packageDebugAssets UP-TO-DATE
Shell: [  +75 ms] > Task :app:mergeWipDebugAssets
Shell: [ +299 ms] > Task :app:copyFlutterAssetsWipDebug
Shell: [        ] > Task :app:mainApkListPersistenceWipDebug UP-TO-DATE
Shell: [        ] > Task :app:processWipDebugGoogleServices UP-TO-DATE
Shell: [        ] > Task :app:createWipDebugCompatibleScreenManifests UP-TO-DATE
Shell: [        ] > Task :firebase_core:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :firebase_core:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :firebase_core:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :firebase_core:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :firebase_core:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :firebase_core:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :firebase_core_web:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :firebase_crashlytics:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :flutter_local_notifications:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :open_file:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :open_file:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :open_file:generateDebugResources UP-TO-DATE
Shell: [  +91 ms] > Task :open_file:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :open_file:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :open_file:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :package_info:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :package_info:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :package_info:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :package_info:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :package_info:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :package_info:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :path_provider:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :path_provider:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :path_provider:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :path_provider:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :path_provider:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :path_provider:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :permission_handler:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :permission_handler:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :permission_handler:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :permission_handler:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :permission_handler:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :permission_handler:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :sensors:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :sensors:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :sensors:generateDebugResources UP-TO-DATE
Shell: [   +1 ms] > Task :sensors:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :sensors:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :sensors:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :share:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :share:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :share:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :share:packageDebugResources UP-TO-DATE
Shell: [   +1 ms] > Task :share:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :share:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :video_player:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :video_player:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :video_player:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :video_player:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :video_player:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :video_player:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :wakelock:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :wakelock:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :wakelock:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :wakelock:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :wakelock:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :wakelock:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :webview_flutter:generateDebugResValues UP-TO-DATE
Shell: [        ] > Task :webview_flutter:compileDebugRenderscript NO-SOURCE
Shell: [        ] > Task :webview_flutter:generateDebugResources UP-TO-DATE
Shell: [        ] > Task :webview_flutter:packageDebugResources UP-TO-DATE
Shell: [        ] > Task :webview_flutter:checkDebugManifest UP-TO-DATE
Shell: [        ] > Task :webview_flutter:processDebugManifest UP-TO-DATE
Shell: [        ] > Task :app:processWipDebugManifest UP-TO-DATE
Shell: [        ] > Task :app:fabricGenerateResourcesWipDebug
Shell: [        ] > Task :app:generateWipDebugResValues UP-TO-DATE
Shell: [        ] > Task :app:generateWipDebugResources UP-TO-DATE
Shell: [  +82 ms] > Task :firebase_core:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:generateDebugRFile UP-TO-DATE
Shell: [ +100 ms] > Task :firebase_core:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :open_file:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :open_file:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :package_info:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :package_info:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :path_provider:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :path_provider:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :app:mergeWipDebugResources
Shell: [        ] > Task :permission_handler:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :permission_handler:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :sensors:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :sensors:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :share:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :share:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :video_player:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :video_player:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :wakelock:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :wakelock:generateDebugRFile UP-TO-DATE
Shell: [        ] > Task :webview_flutter:parseDebugLibraryResources UP-TO-DATE
Shell: [        ] > Task :webview_flutter:generateDebugRFile UP-TO-DATE
Shell: [ +790 ms] > Task :app:processWipDebugResources
Shell: [        ] > Task :firebase_core:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :firebase_core:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :open_file:generateDebugBuildConfig UP-TO-DATE
Shell: [   +1 ms] > Task :flutter_local_notifications:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :open_file:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :open_file:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :open_file:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :package_info:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :package_info:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :package_info:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :package_info:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :path_provider:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :path_provider:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :path_provider:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :path_provider:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :permission_handler:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :permission_handler:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :permission_handler:compileDebugJavaWithJavac UP-TO-DATE
Shell: [  +89 ms] > Task :permission_handler:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :sensors:generateDebugBuildConfig UP-TO-DATE
Shell: [   +1 ms] > Task :sensors:javaPreCompileDebug UP-TO-DATE
Shell: [   +1 ms] > Task :sensors:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :sensors:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :share:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :share:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :share:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :share:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :video_player:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :wakelock:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :webview_flutter:generateDebugBuildConfig UP-TO-DATE
Shell: [        ] > Task :share:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :video_player:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :video_player:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :video_player:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :webview_flutter:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :wakelock:compileDebugKotlin UP-TO-DATE
Shell: [        ] > Task :wakelock:javaPreCompileDebug UP-TO-DATE
Shell: [        ] > Task :wakelock:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :wakelock:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :webview_flutter:compileDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :webview_flutter:bundleLibCompileDebug UP-TO-DATE
Shell: [        ] > Task :app:compileWipDebugKotlin UP-TO-DATE
Shell: [        ] > Task :app:javaPreCompileWipDebug UP-TO-DATE
Shell: [        ] > Task :app:compileWipDebugJavaWithJavac UP-TO-DATE
Shell: [        ] > Task :app:compileWipDebugSources UP-TO-DATE
Shell: [        ] > Task :share:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :share:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :share:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :permission_handler:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :permission_handler:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :permission_handler:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :permission_handler:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :path_provider:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :path_provider:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :path_provider:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :path_provider:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :flutter_local_notifications:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :webview_flutter:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :webview_flutter:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :webview_flutter:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :webview_flutter:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :open_file:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :open_file:bundleLibResDebug UP-TO-DATE
Shell: [  +82 ms] > Task :open_file:bundleLibRuntimeDebug UP-TO-DATE
Shell: [   +1 ms] > Task :open_file:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :wakelock:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :wakelock:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :wakelock:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :wakelock:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :package_info:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :package_info:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :package_info:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :package_info:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :firebase_core_web:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :firebase_core:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :firebase_crashlytics:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :sensors:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :sensors:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :sensors:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :sensors:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :video_player:processDebugJavaRes NO-SOURCE
Shell: [        ] > Task :video_player:bundleLibResDebug UP-TO-DATE
Shell: [        ] > Task :video_player:bundleLibRuntimeDebug UP-TO-DATE
Shell: [        ] > Task :video_player:createFullJarDebug UP-TO-DATE
Shell: [        ] > Task :app:checkWipDebugDuplicateClasses UP-TO-DATE
Shell: [        ] > Task :app:transformClassesWithDexBuilderForWipDebug UP-TO-DATE
Shell: [        ] > Task :app:desugarWipDebugFileDependencies UP-TO-DATE
Shell: [  +86 ms] > Task :app:mergeExtDexWipDebug UP-TO-DATE
Shell: [        ] > Task :app:mergeDexWipDebug UP-TO-DATE
Shell: [        ] > Task :app:processWipDebugJavaRes NO-SOURCE
Shell: [        ] > Task :app:mergeWipDebugJavaResource UP-TO-DATE
Shell: [        ] > Task :app:validateSigningWipDebug UP-TO-DATE
Shell: [        ] > Task :app:signingConfigWriterWipDebug UP-TO-DATE
Shell: [        ] > Task :app:mergeWipDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :firebase_core:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :firebase_core:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :firebase_core:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :firebase_core:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :firebase_core_web:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :firebase_crashlytics:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :flutter_local_notifications:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :open_file:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :open_file:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :open_file:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :open_file:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :package_info:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :package_info:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :package_info:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :package_info:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :path_provider:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :path_provider:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :path_provider:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :path_provider:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :permission_handler:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :permission_handler:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :permission_handler:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :permission_handler:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :sensors:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :sensors:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :sensors:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :sensors:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :share:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :share:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :share:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :share:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :video_player:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :video_player:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :video_player:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :video_player:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :wakelock:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :wakelock:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :wakelock:stripDebugDebugSymbols UP-TO-DATE
Shell: [        ] > Task :wakelock:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :webview_flutter:mergeDebugJniLibFolders UP-TO-DATE
Shell: [        ] > Task :webview_flutter:mergeDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :webview_flutter:stripDebugDebugSymbols UP-TO-DATE
Shell: [  +83 ms] > Task :webview_flutter:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
Shell: [        ] > Task :app:mergeWipDebugNativeLibs UP-TO-DATE
Shell: [        ] > Task :app:stripWipDebugDebugSymbols UP-TO-DATE
Shell: [        ] Compatible side by side NDK version was not found.
Shell: [ +699 ms] > Task :app:packageWipDebug
Shell: [ +104 ms] > Task :app:assembleWipDebug
Shell: [ +644 ms] BUILD SUCCESSFUL in 4s
Shell: [        ] 294 actionable tasks: 8 executed, 286 up-to-date
Shell: [ +373 ms] Running Gradle task 'assembleWipDebug'... (completed in 6.3s)
Shell: [  +53 ms] calculateSha: LocalDirectory: '/Users/denisbrandi/Documents/workspace/Tide/universal-app-android/build/app/outputs/apk'/app.apk
Shell: [  +99 ms] calculateSha: reading file took 97us
Shell: [ +670 ms] calculateSha: computing sha took 669us
Shell: [   +3 ms] ✓ Built build/app/outputs/apk/wip/debug/app-wip-debug.apk.
Shell: [   +6 ms] executing: /Users/denisbrandi/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/build/app/outputs/apk/app.apk AndroidManifest.xml
Shell: [  +11 ms] Exit code 0 from: /Users/denisbrandi/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/build/app/outputs/apk/app.apk AndroidManifest.xml
Shell: [        ] N: android=http://schemas.android.com/apk/res/android
Shell:              E: manifest (line=2)
Shell:                A: android:versionCode(0x0101021b)=(type 0x10)0x1
Shell:                A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
Shell:                A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1d
Shell:                A: android:compileSdkVersionCodename(0x01010573)="10" (Raw: "10")
Shell:                A: package="co.tide.universal.qa" (Raw: "co.tide.universal.qa")
Shell:                A: platformBuildVersionCode=(type 0x10)0x1d
Shell:                A: platformBuildVersionName=(type 0x10)0xa
Shell:                E: uses-sdk (line=7)
Shell:                  A: android:minSdkVersion(0x0101020c)=(type 0x10)0x13
Shell:                  A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1d
Shell:                E: uses-permission (line=14)
Shell:                  A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
Shell:                E: uses-permission (line=15)
Shell:                  A: android:name(0x01010003)="android.permission.REQUEST_INSTALL_PACKAGES" (Raw: "android.permission.REQUEST_INSTALL_PACKAGES")
Shell:                E: uses-permission (line=16)
Shell:                  A: android:name(0x01010003)="android.permission.READ_EXTERNAL_STORAGE" (Raw: "android.permission.READ_EXTERNAL_STORAGE")
Shell:                E: uses-permission (line=17)
Shell:                  A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
Shell:                E: uses-permission (line=18)
Shell:                  A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
Shell:                E: uses-permission (line=19)
Shell:                  A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
Shell:                E: uses-permission (line=20)
Shell:                  A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
Shell:                E: application (line=28)
Shell:                  A: android:label(0x01010001)=@0x7f090000
Shell:                  A: android:icon(0x01010002)=@0x7f080000
Shell:                  A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
Shell:                  A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
Shell:                  A: android:networkSecurityConfig(0x01010527)=@0x7f0c0001
Shell:                  A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
Shell:                  E: activity (line=35)
Shell:                    A: android:theme(0x01010000)=@0x7f0a0000
Shell:                    A: android:name(0x01010003)="co.tide.universal.MainActivity" (Raw: "co.tide.universal.MainActivity")
Shell:                    A: android:launchMode(0x0101001d)=(type 0x10)0x1
Shell:                    A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
Shell:                    A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
Shell:                    A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
Shell:                    E: meta-data (line=49)
Shell:                      A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
Shell:                      A: android:resource(0x01010025)=@0x7f0a0001
Shell:                    E: meta-data (line=59)
Shell:                      A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
Shell:                      A: android:resource(0x01010025)=@0x7f040017
Shell:                    E: intent-filter (line=63)
Shell:                      E: action (line=64)
Shell:                        A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
Shell:                      E: category (line=66)
Shell:                        A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
Shell:                  E: meta-data (line=73)
Shell:                    A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
Shell:                    A: android:value(0x01010024)=(type 0x10)0x2
Shell:                  E: service (line=77)
Shell:                    A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw: "com.google.firebase.components.ComponentDiscoveryService")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
Shell:                    E: meta-data (line=81)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.crashlytics.firebasecrashlytics.FlutterFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.crashlytics.firebasecrashlytics.FlutterFirebaseAppRegistrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                    E: meta-data (line=84)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseAppRegistrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                    E: meta-data (line=87)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" (Raw:
"com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                    E: meta-data (line=90)
Shell:                      A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar" (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
Shell:                      A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
Shell:                  E: provider (line=95)
Shell:                    A: android:name(0x01010003)="androidx.core.content.FileProvider" (Raw: "androidx.core.content.FileProvider")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:authorities(0x01010018)="co.tide.universal.qa.fileProvider" (Raw: "co.tide.universal.qa.fileProvider")
Shell:                    A: android:grantUriPermissions(0x0101001b)=(type 0x12)0xffffffff
Shell:                    E: meta-data (line=100)
Shell:                      A: android:name(0x01010003)="android.support.FILE_PROVIDER_PATHS" (Raw: "android.support.FILE_PROVIDER_PATHS")
Shell:                      A: android:resource(0x01010025)=@0x7f0c0000
Shell:                  E: receiver (line=105)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementReceiver")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: receiver (line=110)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver")
Shell:                    A: android:permission(0x01010006)="android.permission.INSTALL_PACKAGES" (Raw: "android.permission.INSTALL_PACKAGES")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0xffffffff
Shell:                    E: intent-filter (line=115)
Shell:                      E: action (line=116)
Shell:                        A: android:name(0x01010003)="com.android.vending.INSTALL_REFERRER" (Raw: "com.android.vending.INSTALL_REFERRER")
Shell:                  E: service (line=120)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw: "com.google.android.gms.measurement.AppMeasurementService")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: service (line=124)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw: "com.google.android.gms.measurement.AppMeasurementJobService")
Shell:                    A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
Shell:                    A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: receiver (line=130)
Shell:                    A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw: "com.google.firebase.iid.FirebaseInstanceIdReceiver")
Shell:                    A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0xffffffff
Shell:                    E: intent-filter (line=134)
Shell:                      E: action (line=135)
Shell:                        A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
Shell:                  E: provider (line=139)
Shell:                    A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw: "com.google.firebase.provider.FirebaseInitProvider")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:authorities(0x01010018)="co.tide.universal.qa.firebaseinitprovider" (Raw: "co.tide.universal.qa.firebaseinitprovider")
Shell:                    A: android:initOrder(0x0101001a)=(type 0x10)0x64
Shell:                  E: activity (line=145)
Shell:                    A: android:theme(0x01010000)=@0x01030010
Shell:                    A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw: "com.google.android.gms.common.api.GoogleApiActivity")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                  E: meta-data (line=150)
Shell:                    A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
Shell:                    A: android:value(0x01010024)=@0x7f060001
Shell:                  E: provider (line=154)
Shell:                    A: android:name(0x01010003)="com.crashlytics.android.CrashlyticsInitProvider" (Raw: "com.crashlytics.android.CrashlyticsInitProvider")
Shell:                    A: android:exported(0x01010010)=(type 0x12)0x0
Shell:                    A: android:authorities(0x01010018)="co.tide.universal.qa.crashlyticsinitprovider" (Raw: "co.tide.universal.qa.crashlyticsinitprovider")
Shell:                    A: android:initOrder(0x0101001a)=(type 0x10)0x5a
Shell: [   +1 ms] Stopping app 'app.apk' on Pixel 2.
Shell: [   +1 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 shell am force-stop co.tide.universal.qa
Shell: [ +139 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 shell pm list packages co.tide.universal.qa
Shell: [  +67 ms] package:co.tide.universal.qa
Shell: [   +6 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 shell cat /data/local/tmp/sky.co.tide.universal.qa.sha1
Shell: [  +69 ms] 5e331199dd07926fce03175a35ee326c2c16e693
Shell: [   +1 ms] Installing APK.
Shell: [   +2 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb version
Shell: [   +6 ms] Android Debug Bridge version 1.0.41
Shell:            Version 30.0.3-6597393
Shell:            Installed as /Users/denisbrandi/Library/Android/sdk/platform-tools/adb
Shell: [   +1 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb start-server
Shell: [   +7 ms] Installing build/app/outputs/apk/app.apk...
Shell: [        ] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 install -t -r /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/build/app/outputs/apk/app.apk
Shell: [+4526 ms] Performing Streamed Install
Shell:            Success
Shell: [        ] Installing build/app/outputs/apk/app.apk... (completed in 4.5s)
Shell: [   +1 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 shell echo -n c7c08629ed2c70e0c9108b3071fc3f1bd7e4908b > /data/local/tmp/sky.co.tide.universal.qa.sha1
Shell: [  +34 ms] Pixel 2 startApp
Shell: [   +5 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 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 co.tide.universal.qa/co.tide.universal.MainActivity
Shell: [  +81 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=co.tide.universal.qa/co.tide.universal.MainActivity (has extras) }
Shell: [        ] Waiting for observatory port to be available...
Shell: [+1610 ms] Observatory URL on device: http://127.0.0.1:40854/9Pb621JaMkA=/
Shell: [   +2 ms] executing: /Users/denisbrandi/Library/Android/sdk/platform-tools/adb -s FA79K1A06046 forward tcp:0 tcp:40854
Shell: [   +7 ms] 51171
Shell: [        ] Forwarded host port 51171 to device port 40854 for Observatory
Shell: [   +9 ms] Connecting to service protocol: http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: [ +320 ms] Successfully connected to service protocol: http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: [   +3 ms] Sending to VM service: getVM({})
Shell: [   +5 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Qualcomm Technologies, Inc MSM8998, operatingSystem: android, targetCPU: arm64, version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "android_arm64",
_profilerMode: VM, _nativeZoneMemoryUsa...
Shell: [   +4 ms] Sending to VM service: getIsolate({isolateId: isolates/4449661279566299})
Shell: [   +3 ms] Sending to VM service: _flutter.listViews({})
Shell: [   +4 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7233908220, isolate: {type: @Isolate, fixedId: true, id: isolates/4449661279566299, name: main.dart$main-4449661279566299, number:
4449661279566299}}]}
Shell: [   +4 ms] DevFS: Creating new filesystem on the device (null)
Shell: [        ] Sending to VM service: _createDevFS({fsName: universal-app-android})
Shell: [  +22 ms] Result: {type: Isolate, id: isolates/4449661279566299, name: main, number: 4449661279566299, _originNumber: 4449661279566299, startTime: 1594284136935, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger,
collections: 0, avgCollectionPeriodMillis...
Shell: [  +20 ms] Result: {type: FileSystem, name: universal-app-android, uri: file:///data/user/0/co.tide.universal.qa/code_cache/universal-app-androidJULOTN/universal-app-android/}
Shell: [        ] DevFS: Created new filesystem on the device (file:///data/user/0/co.tide.universal.qa/code_cache/universal-app-androidJULOTN/universal-app-android/)
Shell: [   +2 ms] Updating assets
Shell: [ +249 ms] Syncing files to device Pixel 2...
Shell: [   +1 ms] Scanning asset files
Shell: [   +3 ms] <- reset
Shell: [        ] Compiling dart to kernel with 0 updated files
Shell: [   +2 ms] <- recompile /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app.dart 07956296-1c53-4d60-b29a-5ef1b529e6a6
Shell: [        ] <- 07956296-1c53-4d60-b29a-5ef1b529e6a6
Shell: [  +88 ms] Updating files
Shell: [ +212 ms] DevFS: Sync finished
Shell: [   +2 ms] Syncing files to device Pixel 2... (completed in 310ms)
Shell: [        ] Synced 1.1MB.
Shell: [   +1 ms] Sending to VM service: _flutter.listViews({})
Shell: [   +4 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7233908220, isolate: {type: @Isolate, fixedId: true, id: isolates/4449661279566299, name: main.dart$main-4449661279566299, number:
4449661279566299}}]}
Shell: [        ] <- accept
Shell: [        ] Connected to _flutterView/0x7233908220.
Shell: [   +1 ms] Flutter run key commands.
Shell: [   +1 ms] r Hot reload. 🔥🔥🔥
Shell: [   +1 ms] R Hot restart.
Shell: [        ] h Repeat this help message.
Shell: [        ] d Detach (terminate "flutter run" but leave application running).
Shell: [        ] c Clear the screen
Shell: [        ] q Quit (terminate the application on the device).
Shell: [        ] An Observatory debugger and profiler on Pixel 2 is available at: http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: Attempting to running feature '[Accounts] Get the account list for a user' # ./test_driver/account/acceptance/features/get_accounts.feature:1
Shell: Creating new world for scenario 'Get the account list info' # ./test_driver/account/acceptance/features/get_accounts.feature:3
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: VMServiceFlutterDriver Isolate found with number: 4449661279566299
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Get the account list info # ./test_driver/account/acceptance/features/get_accounts.feature:3
Shell: Attempting to run step 'Given a user requests the account list' # ./test_driver/account/acceptance/features/get_accounts.feature:4
Shell:    √ Given a user requests the account list # ./test_driver/account/acceptance/features/get_accounts.feature:4 took 1ms
Shell: Attempting to run step 'When the account list is retrieved' # ./test_driver/account/acceptance/features/get_accounts.feature:5
Shell:    √ When the account list is retrieved # ./test_driver/account/acceptance/features/get_accounts.feature:5 took 4ms
Shell: Attempting to run step 'Then the account list is returned' # ./test_driver/account/acceptance/features/get_accounts.feature:6
Shell:    √ Then the account list is returned # ./test_driver/account/acceptance/features/get_accounts.feature:6 took 0ms
Shell: PASSED: Scenario Get the account list info # ./test_driver/account/acceptance/features/get_accounts.feature:3
Shell: Creating new world for scenario 'Failed to get account list info' # ./test_driver/account/acceptance/features/get_accounts.feature:8
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: VMServiceFlutterDriver Isolate found with number: 4449661279566299
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Failed to get account list info # ./test_driver/account/acceptance/features/get_accounts.feature:8
Shell: Attempting to run step 'Given a user requests the account list' # ./test_driver/account/acceptance/features/get_accounts.feature:9
Shell:    √ Given a user requests the account list # ./test_driver/account/acceptance/features/get_accounts.feature:9 took 0ms
Shell: Attempting to run step 'When an account list error is retrieved' # ./test_driver/account/acceptance/features/get_accounts.feature:10
Shell:    √ When an account list error is retrieved # ./test_driver/account/acceptance/features/get_accounts.feature:10 took 1ms
Shell: Attempting to run step 'Then the error is returned' # ./test_driver/account/acceptance/features/get_accounts.feature:11
Shell:    √ Then the error is returned # ./test_driver/account/acceptance/features/get_accounts.feature:11 took 0ms
Shell: PASSED: Scenario Failed to get account list info # ./test_driver/account/acceptance/features/get_accounts.feature:8
Shell: Finished running feature '[Accounts] Get the account list for a user' # ./test_driver/account/acceptance/features/get_accounts.feature:1
Shell: Attempting to running feature '[Authentication] Recover Account' # ./test_driver/authentication/acceptance/features/recover_account.feature:1
Shell: Creating new world for scenario 'Account recovered' # ./test_driver/authentication/acceptance/features/recover_account.feature:3
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: VMServiceFlutterDriver Isolate found with number: 4449661279566299
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Account recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:3
Shell: Attempting to run step 'Given A grant code is exchanged' # ./test_driver/authentication/acceptance/features/recover_account.feature:4
Shell:    √ Given A grant code is exchanged # ./test_driver/authentication/acceptance/features/recover_account.feature:4 took 0ms
Shell: Attempting to run step 'When A successful token response is received' # ./test_driver/authentication/acceptance/features/recover_account.feature:5
Shell:    √ When A successful token response is received # ./test_driver/authentication/acceptance/features/recover_account.feature:5 took 33ms
Shell: Attempting to run step 'Then User is logged' # ./test_driver/authentication/acceptance/features/recover_account.feature:6
Shell:    √ Then User is logged # ./test_driver/authentication/acceptance/features/recover_account.feature:6 took 0ms
Shell: Attempting to run step 'And User info is retrieved' # ./test_driver/authentication/acceptance/features/recover_account.feature:7
Shell:    √ And User info is retrieved # ./test_driver/authentication/acceptance/features/recover_account.feature:7 took 0ms
Shell: PASSED: Scenario Account recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:3
Shell: Creating new world for scenario 'Account not recovered' # ./test_driver/authentication/acceptance/features/recover_account.feature:9
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: VMServiceFlutterDriver Isolate found with number: 4449661279566299
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Account not recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:9
Shell: Attempting to run step 'Given A grant code is exchanged' # ./test_driver/authentication/acceptance/features/recover_account.feature:10
Shell:    √ Given A grant code is exchanged # ./test_driver/authentication/acceptance/features/recover_account.feature:10 took 0ms
Shell: Attempting to run step 'When A token error response is received' # ./test_driver/authentication/acceptance/features/recover_account.feature:11
Shell:    √ When A token error response is received # ./test_driver/authentication/acceptance/features/recover_account.feature:11 took 1ms
Shell: Attempting to run step 'Then User is not logged' # ./test_driver/authentication/acceptance/features/recover_account.feature:12
Shell:    √ Then User is not logged # ./test_driver/authentication/acceptance/features/recover_account.feature:12 took 0ms
Shell: PASSED: Scenario Account not recovered # ./test_driver/authentication/acceptance/features/recover_account.feature:9
Shell: Finished running feature '[Authentication] Recover Account' # ./test_driver/authentication/acceptance/features/recover_account.feature:1
Shell: Attempting to running feature '[Authentication] Logout' # ./test_driver/authentication/acceptance/features/logout.feature:1
Shell: Creating new world for scenario 'Successful logout' # ./test_driver/authentication/acceptance/features/logout.feature:3
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: VMServiceFlutterDriver Isolate found with number: 4449661279566299
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Successful logout # ./test_driver/authentication/acceptance/features/logout.feature:3
Shell: Attempting to run step 'Given user logs out' # ./test_driver/authentication/acceptance/features/logout.feature:4
Shell:    √ Given user logs out # ./test_driver/authentication/acceptance/features/logout.feature:4 took 0ms
Shell: Attempting to run step 'When logout is successful' # ./test_driver/authentication/acceptance/features/logout.feature:5
Shell:    √ When logout is successful # ./test_driver/authentication/acceptance/features/logout.feature:5 took 3ms
Shell: Attempting to run step 'Then user info is removed' # ./test_driver/authentication/acceptance/features/logout.feature:6
Shell:    √ Then user info is removed # ./test_driver/authentication/acceptance/features/logout.feature:6 took 0ms
Shell: PASSED: Scenario Successful logout # ./test_driver/authentication/acceptance/features/logout.feature:3
Shell: Creating new world for scenario 'Unsuccessful logout' # ./test_driver/authentication/acceptance/features/logout.feature:8
Shell: VMServiceFlutterDriver Connecting to Flutter application at http://127.0.0.1:51171/9Pb621JaMkA=/
Shell: VMServiceFlutterDriver Isolate found with number: 4449661279566299
Shell: VMServiceFlutterDriver Isolate is not paused. Assuming application is ready.
Shell: VMServiceFlutterDriver Connected to Flutter application.
Shell: Running scenario: Unsuccessful logout # ./test_driver/authentication/acceptance/features/logout.feature:8
Shell: Attempting to run step 'Given user logs out' # ./test_driver/authentication/acceptance/features/logout.feature:9
Shell:    √ Given user logs out # ./test_driver/authentication/acceptance/features/logout.feature:9 took 0ms
Shell: Attempting to run step 'When logout is not successful' # ./test_driver/authentication/acceptance/features/logout.feature:10
Shell:    √ When logout is not successful # ./test_driver/authentication/acceptance/features/logout.feature:10 took 1ms
Shell: Attempting to run step 'Then user info is removed' # ./test_driver/authentication/acceptance/features/logout.feature:11
Shell:    √ Then user info is removed # ./test_driver/authentication/acceptance/features/logout.feature:11 took 0ms
Shell: PASSED: Scenario Unsuccessful logout # ./test_driver/authentication/acceptance/features/logout.feature:8
Shell: Finished running feature '[Authentication] Logout' # ./test_driver/authentication/acceptance/features/logout.feature:1
Shell: 6 scenarios (6 passed)
Shell: 19 steps (19 passed)
Shell: 0:00:00.681000
Shell: Terminating Flutter app under test
{"testID":1,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":25891}
{"success":true,"type":"done","time":25922}
jonsamwell commented 4 years ago

Could you set exitAfterTestRun to true that will return a 0 exit code if all steps pass.

Does this happen when you run it against an ios emulator rather than an Android emulator?

jonsamwell commented 4 years ago

Failing that could you just try running the default flutter counter app (created when you create a new project) and a simple test that just tap the button once. At least that might narrow things down a bit.

Also try running it via dart test_app.dart rather than flutter test test_app.dart

DenisBronx commented 4 years ago

exitAfterTestRun=true is giving me this error:

Shell: 6 scenarios (6 passed)
Shell: 19 steps (19 passed)
Shell: 0:00:00.808000
Shell: Terminating Flutter app under test

dart:async/stream_controller.dart 609:43                       _StreamController.addError
dart:async/stream_controller.dart 877:13                       _StreamSinkWrapper.addError
package:stream_channel/src/guarantee_channel.dart 144:14       _GuaranteeSink._addError
package:stream_channel/src/guarantee_channel.dart 135:5        _GuaranteeSink.addError
package:flutter_tools/src/test/flutter_platform.dart 484:29    FlutterPlatform._startTest.<fn>
===== asynchronous gap ===========================
dart:async/zone.dart 1109:19                                   _CustomZone.registerUnaryCallback
dart:async-patch/async_patch.dart 79:23                        _asyncThenWrapperHelper
package:flutter_tools/src/test/flutter_platform.dart           FlutterPlatform._startTest.<fn>
package:flutter_tools/src/test/flutter_platform.dart 683:26    FlutterPlatform._startTest
===== asynchronous gap ===========================
dart:async/zone.dart 1109:19                                   _CustomZone.registerUnaryCallback
dart:async-patch/async_patch.dart 79:23                        _asyncThenWrapperHelper
package:flutter_tools/src/test/flutter_platform.dart 359:36    FlutterPlatform.loadChannel
package:flutter_tools/src/test/flutter_platform.dart 312:46    FlutterPlatform.load
package:test_core/src/runner/loader.dart 232:38                Loader.loadFile.<fn>
===== asynchronous gap ===========================
dart:async/zone.dart 1109:19                                   _CustomZone.registerUnaryCallback
dart:async-patch/async_patch.dart 79:23                        _asyncThenWrapperHelper
package:test_core/src/runner/loader.dart                       Loader.loadFile.<fn>
package:test_core/src/runner/load_suite.dart 98:31             new LoadSuite.<fn>.<fn>
package:test_core/src/runner/load_suite.dart 108:8             new LoadSuite.<fn>
package:test_api/src/backend/invoker.dart 400:30               Invoker._onRun.<fn>.<fn>.<fn>.<fn>
dart:async/future.dart 176:37                                  new Future.<fn>
package:stack_trace/src/stack_zone_specification.dart 209:15   StackZoneSpecification._run
package:stack_trace/src/stack_zone_specification.dart 119:48   StackZoneSpecification._registerCallback.<fn>
dart:async/zone.dart 1180:38                                   _rootRun
dart:async/zone.dart 1077:19                                   _CustomZone.run
dart:async/zone.dart 979:7                                     _CustomZone.runGuarded
dart:async/zone.dart 1019:23                                   _CustomZone.bindCallbackGuarded.<fn>
package:stack_trace/src/stack_zone_specification.dart 209:15   StackZoneSpecification._run
package:stack_trace/src/stack_zone_specification.dart 119:48   StackZoneSpecification._registerCallback.<fn>
dart:async/zone.dart 1184:13                                   _rootRun
dart:async/zone.dart 1077:19                                   _CustomZone.run
dart:async/zone.dart 1003:23                                   _CustomZone.bindCallback.<fn>
dart:async-patch/timer_patch.dart 23:15                        Timer._createTimer.<fn>
dart:isolate-patch/timer_impl.dart 398:19                      _Timer._runTimers
dart:isolate-patch/timer_impl.dart 429:5                       _Timer._handleMessage
dart:isolate-patch/isolate_patch.dart 168:12                   _RawReceivePortImpl._handleMessage
===== asynchronous gap ===========================
dart:async/zone.dart 1101:19                                   _CustomZone.registerCallback
dart:async/zone.dart 1018:22                                   _CustomZone.bindCallbackGuarded
dart:async/timer.dart 54:45                                    new Timer
dart:async/timer.dart 91:9                                     Timer.run
dart:async/future.dart 174:11                                  new Future
package:test_api/src/backend/invoker.dart 399:21               Invoker._onRun.<fn>.<fn>.<fn>
dart:async/zone.dart 1184:13                                   _rootRun
dart:async/zone.dart 1077:19                                   _CustomZone.run
dart:async/zone.dart 1619:10                                   _runZoned
dart:async/zone.dart 1539:10                                   runZoned
package:test_api/src/backend/invoker.dart 387:9                Invoker._onRun.<fn>.<fn>
dart:async/zone.dart 1184:13                                   _rootRun
dart:async/zone.dart 1077:19                                   _CustomZone.run
dart:async/zone.dart 1619:10                                   _runZoned
dart:async/zone.dart 1539:10                                   runZoned
package:test_api/src/backend/invoker.dart 148:7                Invoker.guard
package:test_api/src/backend/invoker.dart 436:15               Invoker._guardIfGuarded
package:test_api/src/backend/invoker.dart 386:7                Invoker._onRun.<fn>
package:stack_trace/src/chain.dart 101:24                      Chain.capture.<fn>
dart:async/zone.dart 1184:13                                   _rootRun
dart:async/zone.dart 1077:19                                   _CustomZone.run
dart:async/zone.dart 1619:10                                   _runZoned
dart:async/zone.dart 1539:10                                   runZoned
package:stack_trace/src/chain.dart 99:12                       Chain.capture
package:test_api/src/backend/invoker.dart 385:11               Invoker._onRun
package:test_api/src/backend/live_test_controller.dart 197:11  LiveTestController._run
package:test_api/src/backend/live_test_controller.dart 50:37   _LiveTest.run
dart:async/future.dart 202:37                                  new Future.microtask.<fn>
dart:async/zone.dart 1180:38                                   _rootRun
dart:async/zone.dart 1077:19                                   _CustomZone.run
dart:async/zone.dart 979:7                                     _CustomZone.runGuarded
dart:async/zone.dart 1019:23                                   _CustomZone.bindCallbackGuarded.<fn>
dart:async/zone.dart 1184:13                                   _rootRun
dart:async/zone.dart 1077:19                                   _CustomZone.run
dart:async/zone.dart 979:7                                     _CustomZone.runGuarded
dart:async/zone.dart 1019:23                                   _CustomZone.bindCallbackGuarded.<fn>
dart:async/schedule_microtask.dart 43:21                       _microtaskLoop
dart:async/schedule_microtask.dart 52:5                        _startMicrotaskLoop
dart:isolate-patch/isolate_patch.dart 118:13                   _runPendingImmediateCallback
dart:isolate-patch/isolate_patch.dart 169:5                    _RawReceivePortImpl._handleMessage

Failed to load "/Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app_test.dart":
Shell subprocess ended cleanly after tests finished. Did main() call exit()?
Test: /Users/denisbrandi/Documents/workspace/Tide/universal-app-android/test_driver/app_test.dart
Shell: /Users/denisbrandi/development/flutter/bin/cache/artifacts/engine/darwin-x64/flutter_tester

if I use the dart command instead of flutter, I get the usual dart:ui issue:

../../../../development/flutter/packages/flutter/lib/src/material/animated_icons.dart:9:8: Error: Not found: 'dart:ui'
import 'dart:ui' as ui show Paint, Path, Canvas;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/animated_icons.dart:10:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/app.dart:5:8: Error: Not found: 'dart:ui'
import 'dart:ui' as ui;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/app_bar_theme.dart:5:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/arc.dart:6:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/bottom_app_bar_theme.dart:5:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/bottom_sheet.dart:6:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/bottom_sheet_theme.dart:5:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/button_bar_theme.dart:5:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
../../../../development/flutter/packages/flutter/lib/src/material/card_theme.dart:5:8: Error: Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;
       ^
jonsamwell commented 4 years ago

Are you using the command dart app_under_test.dart or dart test app_under_test.dart? You can omit the test bit

jonsamwell commented 4 years ago

I think having the test command is causing the error by the look of the stack trace above.

DenisBronx commented 4 years ago

I'm using dart test_driver/app_test.dart

jonsamwell commented 4 years ago

Odd I use that and don't get the dart:UI error. Are you using the flutter test namespace to do the expects?

I think we've exhausted the options now. So I'll need a minimal reproducing sample to debug the issue further.

What ci service are you using?

On Thu, Jul 9, 2020, 19:33 Denis notifications@github.com wrote:

I'm using dart test_driver/app_test.dart

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/jonsamwell/flutter_gherkin/issues/74#issuecomment-656021803, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA4F7INXDCYTW4QVCJQISMLR2WFH5ANCNFSM4OUY2BWQ .

DenisBronx commented 4 years ago

I had some imports related to my UI code, that is why I was using the flutter command instead of the dart command.

Replacing flutter with dart now gives a successful result. I'll try to get it working without flutter imports, but if you don't test an integration (DB, preferences) through UI but rather through a direct class invocation it would be great to have the flutter command avaliable

jonsamwell commented 4 years ago

Glad we found the problem.

Agree it should work with flutter imports. Any chance of a small example I can debug against and fix it?

On Thu, Jul 9, 2020, 20:00 Denis notifications@github.com wrote:

I had some imports related to my UI code, that is why I was using the flutter command instead of the dart command.

Replacing flutter with dart now gives a successful result. I'll try to get it working without flutter imports, but if you don't test an integration (DB, preferences) through UI but rather through a direct class invocation it would be great to have the flutter command avaliable

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/jonsamwell/flutter_gherkin/issues/74#issuecomment-656034050, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA4F7IP7AC2HSQGCMYQWGYLR2WILZANCNFSM4OUY2BWQ .

DenisBronx commented 4 years ago

@jonsamwell I'm working on a commercial product and I cannot share the code, however, at the moment I'm not pointing to any part of my code in test_driver (after stubbing everything) so the issue should be easy to reproduce. Also test_driver/app.dart is running a simple:

void main() {
  enableFlutterDriverExtension();
  runApp(_TestApp());
}

class _TestApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container();
  }
}

so there is nothing that can fail, and using flutter test --machine test_driver/app_test.dart reports all scenarios passing but return an error. As said dart test_driver/app_test.dart instead returns a successful result

Napas commented 4 years ago

I'm having the same issue with

Not found: 'dart:ui'
import 'dart:ui' show lerpDouble;

Did anyone manage to resolve it?

jonsamwell commented 3 years ago

@Napas use the command

dart test_driver/app_test.dart

and don't invoke it using flutter driver