Flutterfire: [Firebase-Messaging] Error 105 received from application: Isolate must be runnable when background notification is enabled

Created on 29 Apr 2020  Â·  4Comments  Â·  Source: FirebaseExtended/flutterfire

Describe the bug
Error 105 received from application: Isolate must be runnable
When using Background notification

In Vs code Call Stack, a new main() instance is added per hot reload, the application crashes after 3 hot-reloads

To Reproduce
Implement the package even with a vanilla project reproduce the issue when background notification is enables

Flutter doctor
[✓] Flutter (Channel beta, v1.17.0-3.2.pre, on Mac OS X 10.15.4 19E287, locale fr)

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[✓] Xcode - develop for iOS and macOS (Xcode 11.4)
[✓] Chrome - develop for the web
[✓] Android Studio (version 3.5)
[✓] VS Code (version 1.44.2)
[✓] Connected device (3 available)

messaging bug

All 4 comments

Hi @navigui
can you please provide your flutter run --verbose?
Also, to better address the issue, would be helpful if you could post a minimal code sample to reproduce the problem
Thank you

So this is a brand new project with only firebase messaging package

My Application.kt file

package com.example.test_messaging

import io.flutter.app.FlutterApplication
import io.flutter.plugin.common.PluginRegistry
import io.flutter.plugin.common.PluginRegistry.PluginRegistrantCallback
import io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin
import io.flutter.view.FlutterMain
import io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService

class Application : FlutterApplication(), PluginRegistrantCallback {

    override fun onCreate() {
        super.onCreate()
        FlutterFirebaseMessagingService.setPluginRegistrant(this);
        FlutterMain.startInitialization(this)
    }

    override fun registerWith(registry: PluginRegistry?) {
        if (!registry!!.hasPlugin("io.flutter.plugins.firebasemessaging")) {
            FirebaseMessagingPlugin.registerWith(registry!!.registrarFor("io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin"));
        }
    }
}`

my AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.test_messaging">

         <uses-permission android:name="android.permission.INTERNET" />
         <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <application
        android:name=".Application"
        android:label="test_messaging"
        android:icon="@mipmap/ic_launcher">
        <activity
            android:name=".MainActivity"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:windowSoftInputMode="adjustResize">

            <meta-data
              android:name="io.flutter.embedding.android.NormalTheme"
              android:resource="@style/NormalTheme"
              />

            <meta-data
              android:name="io.flutter.embedding.android.SplashScreenDrawable"
              android:resource="@drawable/launch_background"
              />
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
            <intent-filter>
                <action android:name="FLUTTER_NOTIFICATION_CLICK" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

        <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
    </application>
</manifest>

my app/build.gradle

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
    flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
    compileSdkVersion 28

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }

    lintOptions {
        disable 'InvalidPackage'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.example.test_messaging"
        minSdkVersion 18
        targetSdkVersion rootProject.ext.compileSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        multiDexEnabled true
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.debug
        }
    }
}

flutter {
    source '../..'
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'                   // or higher
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'com.google.firebase:firebase-analytics:17.4.0'
    implementation 'com.google.firebase:firebase-firestore:21.4.3'
    implementation 'com.google.firebase:firebase-auth:19.3.1'
    implementation 'com.google.android.gms:play-services-auth:17.0.0'
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.google.firebase:firebase-messaging:20.1.6'
}
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
`

### my build.gradle 
`buildscript {
    ext.kotlin_version = '1.3.50'
    repositories {
        google()
        jcenter()
    }
    ext {
        compileSdkVersion   = 29             
        targetSdkVersion    = 29                
        appCompatVersion    = "1.0.2"           
        playServicesLocationVersion = "17.0.0"  
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.gms:google-services:4.3.3'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
````

### my pubspec.yml

name: test_messaging
description: A new Flutter project.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: ">=2.7.0 <3.0.0"

dependencies:
flutter:
sdk: flutter
firebase_messaging: ^6.0.13

cupertino_icons: ^0.1.3

dev_dependencies:
flutter_test:
sdk: flutter

flutter:
uses-material-design: true


### my main.dart

import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}

class _MyAppState extends State {
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();

static Future myBackgroundMessageHandler(Map message) async {
print(message);
return Future.value();
}

@override
void initState() {
_firebaseMessaging.configure(
onMessage: (Map message) async {
print('AppPushs onMessage : $message');
return;
},
onResume: (Map message) async {
print('AppPushs onResume : $message');
return;
},
onLaunch: (Map message) async {
print('AppPushs onLaunch : $message');
return;
},
onBackgroundMessage: myBackgroundMessageHandler
);
_firebaseMessaging.requestNotificationPermissions(const IosNotificationSettings(sound: true, badge: true, alert: true));
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}

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

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

class _MyHomePageState extends State {
int _counter = 0;

void _incrementCounter() {
setState(() {

  _counter++;
});

}

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(

    title: Text(widget.title),
  ),
  body: Center(

    child: Column(

      mainAxisAlignment: MainAxisAlignment.center,
      children: <Widget>[
        Text(
          'You have pushed the button this many times:',
        ),
        Text(
          '$_counter',
          style: Theme.of(context).textTheme.headline4,
        ),
      ],
    ),
  ),
  floatingActionButton: FloatingActionButton(
    onPressed: _incrementCounter,
    tooltip: 'Increment',
    child: Icon(Icons.add),
  ), 
);

}
}
````

my flutter run --verbose


logs


`[  +21 ms] executing: [/Users/mac/developement/flutter/] git -c
log.showSignature=false log -n 1 --pretty=format:%H
[  +59 ms] Exit code 0 from: git -c log.showSignature=false log -n 1
--pretty=format:%H
[   +1 ms] 2a7bc389f28d83c581f7ddd4601588a22e12512e
[        ] executing: [/Users/mac/developement/flutter/] git describe --match
*.*.* --first-parent --long --tags
[  +78 ms] Exit code 0 from: git describe --match *.*.* --first-parent --long
--tags
[        ] 1.17.0-3.2.pre-0-g2a7bc389f2
[  +13 ms] executing: [/Users/mac/developement/flutter/] git rev-parse
--abbrev-ref --symbolic @{u}
[   +6 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/beta
[        ] executing: [/Users/mac/developement/flutter/] git ls-remote --get-url
origin
[   +6 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[  +78 ms] executing: [/Users/mac/developement/flutter/] git rev-parse
--abbrev-ref HEAD
[   +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] beta
[   +6 ms] executing: sw_vers -productName
[  +15 ms] Exit code 0 from: sw_vers -productName
[        ] Mac OS X
[        ] executing: sw_vers -productVersion
[  +15 ms] Exit code 0 from: sw_vers -productVersion
[        ] 10.15.4
[        ] executing: sw_vers -buildVersion
[  +15 ms] Exit code 0 from: sw_vers -buildVersion
[        ] 19E287
[  +19 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping
update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping
update.
[   +9 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping
update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping
update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required,
skipping update.
[  +18 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb devices
-l
[   +7 ms] executing: /usr/bin/xcode-select --print-path
[   +7 ms] Exit code 0 from: /usr/bin/xcode-select --print-path
[        ] /Applications/Xcode.app/Contents/Developer
[   +1 ms] executing: /usr/bin/xcodebuild -version
[ +187 ms] Exit code 0 from: /usr/bin/xcodebuild -version
[   +2 ms] Xcode 11.4
           Build version 11E146
[   +2 ms] executing: xcrun --find xcdevice
[   +9 ms] Exit code 0 from: xcrun --find xcdevice
[        ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice
[        ] executing: xcrun xcdevice list --timeout 2
[   +4 ms] /usr/bin/xcrun simctl list --json devices
[        ] executing: /usr/bin/xcrun simctl list --json devices
[  +43 ms] List of devices attached
           emulator-5554          device product:sdk_gphone_x86_arm
           model:AOSP_on_IA_Emulator device:generic_x86_arm transport_id:2
[  +89 ms] {
             "devices" : {
               "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/C3
                   619C1F-5345-419F-8A08-888006234DCB\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/C3619C1F-5345-41
                   9F-8A08-888006234DCB",
                   "udid" : "C3619C1F-5345-419F-8A08-888006234DCB",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/EF
                   64EEAC-58B3-48B7-A4A5-2E5D741A1289\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/EF64EEAC-58B3-48
                   B7-A4A5-2E5D741A1289",
                   "udid" : "EF64EEAC-58B3-48B7-A4A5-2E5D741A1289",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/36
                   186F53-D2F7-4712-9751-F9F3D79D168F\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/36186F53-D2F7-47
                   12-9751-F9F3D79D168F",
                   "udid" : "36186F53-D2F7-4712-9751-F9F3D79D168F",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E
                   F64DFB-DE02-49A6-83BF-1A929C5E3078\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9EF64DFB-DE02-49
                   A6-83BF-1A929C5E3078",
                   "udid" : "9EF64DFB-DE02-49A6-83BF-1A929C5E3078",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-4
                   0mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/E0
                   AA6AE4-F90E-4DFB-97EF-5B52D7D081CE\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/E0AA6AE4-F90E-4D
                   FB-97EF-5B52D7D081CE",
                   "udid" : "E0AA6AE4-F90E-4DFB-97EF-5B52D7D081CE",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-4
                   4mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/6A
                   59D1FE-6DA3-430C-AA4E-9A81A0E2C820\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/6A59D1FE-6DA3-43
                   0C-AA4E-9A81A0E2C820",
                   "udid" : "6A59D1FE-6DA3-430C-AA4E-9A81A0E2C820",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-4
                   0mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/EF
                   291D37-25E4-4261-92B7-C75132F6E37F\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/EF291D37-25E4-42
                   61-92B7-C75132F6E37F",
                   "udid" : "EF291D37-25E4-4261-92B7-C75132F6E37F",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-4
                   4mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-4" : [
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/08
                   6AC67E-FCAE-455F-B733-6DF841A835E2\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/086AC67E-FCAE-45
                   5F-B733-6DF841A835E2",
                   "udid" : "086AC67E-FCAE-455F-B733-6DF841A835E2",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/A4
                   69EDCA-9948-4BCB-860C-6924033D48E1\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/A469EDCA-9948-4B
                   CB-860C-6924033D48E1",
                   "udid" : "A469EDCA-9948-4BCB-860C-6924033D48E1",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/2B
                   99066A-BED5-4234-ADCB-F93A428C48C4\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/2B99066A-BED5-42
                   34-ADCB-F93A428C48C4",
                   "udid" : "2B99066A-BED5-4234-ADCB-F93A428C48C4",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D8
                   0F4169-7239-4095-ADC5-3AD07470237A\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D80F4169-7239-40
                   95-ADC5-3AD07470237A",
                   "udid" : "D80F4169-7239-4095-ADC5-3AD07470237A",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/B3
                   FACA83-63D3-40C3-9CB6-D663502241F8\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/B3FACA83-63D3-40
                   C3-9CB6-D663502241F8",
                   "udid" : "B3FACA83-63D3-40C3-9CB6-D663502241F8",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/65
                   2A8FF8-341B-49C5-8E94-DE9822C9A480\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/652A8FF8-341B-49
                   C5-8E94-DE9822C9A480",
                   "udid" : "652A8FF8-341B-49C5-8E94-DE9822C9A480",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/BB
                   A9B923-96C1-4A52-B86C-BF39C6B4A992\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/BBA9B923-96C1-4A
                   52-B86C-BF39C6B4A992",
                   "udid" : "BBA9B923-96C1-4A52-B86C-BF39C6B4A992",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-"
                   ,
                   "state" : "Shutdown",
                   "name" : "iPad (7th generation)"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/20
                   094B64-62C0-4F08-AC17-3A4358E7B3AC\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/20094B64-62C0-4F
                   08-AC17-3A4358E7B3AC",
                   "udid" : "20094B64-62C0-4F08-AC17-3A4358E7B3AC",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2n
                   d-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/BA
                   79EA95-3D6B-4511-AD3E-3756BF562974\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/BA79EA95-3D6B-45
                   11-AD3E-3756BF562974",
                   "udid" : "BA79EA95-3D6B-4511-AD3E-3756BF562974",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---
                   4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/57
                   6AB6FA-0FCB-4449-ABF1-8E55EC55A21D\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/576AB6FA-0FCB-44
                   49-ABF1-8E55EC55A21D",
                   "udid" : "576AB6FA-0FCB-4449-ABF1-8E55EC55A21D",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generati
                   on-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-3" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/AC
                   DCE260-3AA5-4FAF-B372-4288041632FD\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/ACDCE260-3AA5-4F
                   AF-B372-4288041632FD",
                   "udid" : "ACDCE260-3AA5-4FAF-B372-4288041632FD",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/96
                   6D5843-83CF-4FB4-81E1-9E5D52D676E6\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/966D5843-83CF-4F
                   B4-81E1-9E5D52D676E6",
                   "udid" : "966D5843-83CF-4FB4-81E1-9E5D52D676E6",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/90
                   03008D-FACB-4B11-81BD-DA39A4DCDEC5\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9003008D-FACB-4B
                   11-81BD-DA39A4DCDEC5",
                   "udid" : "9003008D-FACB-4B11-81BD-DA39A4DCDEC5",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/70
                   F12E87-0004-44B7-82AA-61F25CD3589D\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/70F12E87-0004-44
                   B7-82AA-61F25CD3589D",
                   "udid" : "70F12E87-0004-44B7-82AA-61F25CD3589D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/EC
                   2A732F-F18C-48FD-AC61-B327E45F4BBD\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/EC2A732F-F18C-48
                   FD-AC61-B327E45F4BBD",
                   "udid" : "EC2A732F-F18C-48FD-AC61-B327E45F4BBD",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/7A
                   376CDA-9454-4864-8649-E72C44DCBD34\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/7A376CDA-9454-48
                   64-8649-E72C44DCBD34",
                   "udid" : "7A376CDA-9454-4864-8649-E72C44DCBD34",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/5F
                   E6AE7E-CD9A-4F2E-9A04-9C08F37223DA\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/5FE6AE7E-CD9A-4F
                   2E-9A04-9C08F37223DA",
                   "udid" : "5FE6AE7E-CD9A-4F2E-9A04-9C08F37223DA",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-"
                   ,
                   "state" : "Shutdown",
                   "name" : "iPad (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/66
                   C13155-7A9F-44BC-A89C-BE3CE9A41FC2\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/66C13155-7A9F-44
                   BC-A89C-BE3CE9A41FC2",
                   "udid" : "66C13155-7A9F-44BC-A89C-BE3CE9A41FC2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---
                   3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (3rd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/9E
                   439587-4084-45D2-9151-B50F03A56058\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/9E439587-4084-45
                   D2-9151-B50F03A56058",
                   "udid" : "9E439587-4084-45D2-9151-B50F03A56058",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generati
                   on-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/D0
                   EC5741-1D02-4B71-9652-16B84666A170\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/D0EC5741-1D02-4B
                   71-9652-16B84666A170",
                   "udid" : "D0EC5741-1D02-4B71-9652-16B84666A170",
                   "isAvailable" : false,
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-6-1" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/80
                   F73A79-1471-4545-9078-6DDACFDF5633\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/80F73A79-1471-45
                   45-9078-6DDACFDF5633",
                   "udid" : "80F73A79-1471-4545-9078-6DDACFDF5633",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-4
                   0mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/87
                   375332-FC45-475A-9DAA-A230AAAED0DD\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/87375332-FC45-47
                   5A-9DAA-A230AAAED0DD",
                   "udid" : "87375332-FC45-475A-9DAA-A230AAAED0DD",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-4
                   4mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/07
                   87C9BB-B56C-4DDA-B026-693899CDD857\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/0787C9BB-B56C-4D
                   DA-B026-693899CDD857",
                   "udid" : "0787C9BB-B56C-4DDA-B026-693899CDD857",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-4
                   0mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/80
                   723154-F44A-4174-8A00-9E74705EFCFB\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/80723154-F44A-41
                   74-8A00-9E74705EFCFB",
                   "udid" : "80723154-F44A-4174-8A00-9E74705EFCFB",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-4
                   4mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-13-3" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/DE
                   8EF6E4-2528-45E7-9355-069AED20F4A1\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/DE8EF6E4-2528-45
                   E7-9355-069AED20F4A1",
                   "udid" : "DE8EF6E4-2528-45E7-9355-069AED20F4A1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/1E
                   789DD8-148F-4559-BE5C-A87DAA5E868D\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/1E789DD8-148F-45
                   59-BE5C-A87DAA5E868D",
                   "udid" : "1E789DD8-148F-4559-BE5C-A87DAA5E868D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" :
                   "\/Users\/mac\/Library\/Developer\/CoreSimulator\/Devices\/59
                   1849D7-7B13-4AFD-A837-BE2334169383\/data",
                   "logPath" :
                   "\/Users\/mac\/Library\/Logs\/CoreSimulator\/591849D7-7B13-4A
                   FD-A837-BE2334169383",
                   "udid" : "591849D7-7B13-4AFD-A837-BE2334169383",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" :
                   "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ]
             }
           }
[+2535 ms] [
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,3",
                        "identifier" : "D80F4169-7239-4095-ADC5-3AD07470237A",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-pro-1",
                        "modelName" : "iPhone 11 Pro",
                        "name" : "iPhone 11 Pro"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone10,5",
                        "identifier" : "A469EDCA-9948-4BCB-860C-6924033D48E1",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-8-plus-2",
                        "modelName" : "iPhone 8 Plus",
                        "name" : "iPhone 8 Plus"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2 (17T256)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch4,4",
                        "identifier" : "E0AA6AE4-F90E-4DFB-97EF-5B52D7D081CE",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series4-1",
                        "modelName" : "Apple Watch Series 4 - 44mm",
                        "name" : "Apple Watch Series 4 - 44mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2 (17T256)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch4,3",
                        "identifier" : "9EF64DFB-DE02-49A6-83BF-1A929C5E3078",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series4-1",
                        "modelName" : "Apple Watch Series 4 - 40mm",
                        "name" : "Apple Watch Series 4 - 40mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,1",
                        "identifier" : "2B99066A-BED5-4234-ADCB-F93A428C48C4",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-1",
                        "modelName" : "iPhone 11",
                        "name" : "iPhone 11"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17L255)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV6,2",
                        "identifier" : "EF64EEAC-58B3-48B7-A4A5-2E5D741A1289",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.apple-tv-4k",
                        "modelName" : "Apple TV 4K",
                        "name" : "Apple TV 4K"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad7,12",
                        "identifier" : "BBA9B923-96C1-4A52-B86C-BF39C6B4A992",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-7-wwan-1",
                        "modelName" : "iPad (7th generation)",
                        "name" : "iPad (7th generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad6,4",
                        "identifier" : "652A8FF8-341B-49C5-8E94-DE9822C9A480",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba",
                        "modelName" : "iPad Pro (9.7-inch)",
                        "name" : "iPad Pro (9.7-inch)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad8,12",
                        "identifier" : "BA79EA95-3D6B-4511-AD3E-3756BF562974",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-12point9-4th-1",
                        "modelName" : "iPad Pro (12.9-inch) (4th generation)",
                        "name" : "iPad Pro (12.9-inch) (4th generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad11,3",
                        "identifier" : "576AB6FA-0FCB-4449-ABF1-8E55EC55A21D",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-air3-wifi-1",
                        "modelName" : "iPad Air (3rd generation)",
                        "name" : "iPad Air (3rd generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad8,9",
                        "identifier" : "20094B64-62C0-4F08-AC17-3A4358E7B3AC",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-11-2nd-1",
                        "modelName" : "iPad Pro (11-inch) (2nd generation)",
                        "name" : "iPad Pro (11-inch) (2nd generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2 (17T256)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch5,3",
                        "identifier" : "6A59D1FE-6DA3-430C-AA4E-9A81A0E2C820",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series5-1",
                        "modelName" : "Apple Watch Series 5 - 40mm",
                        "name" : "Apple Watch Series 5 - 40mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2 (17T256)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch5,4",
                        "identifier" : "EF291D37-25E4-4261-92B7-C75132F6E37F",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series5-1",
                        "modelName" : "Apple Watch Series 5 - 44mm",
                        "name" : "Apple Watch Series 5 - 44mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,5",
                        "identifier" : "B3FACA83-63D3-40C3-9CB6-D663502241F8",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-pro-max-1",
                        "modelName" : "iPhone 11 Pro Max",
                        "name" : "iPhone 11 Pro Max"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17L255)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV6,2",
                        "identifier" : "36186F53-D2F7-4712-9751-F9F3D79D168F",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.apple-tv-4k",
                        "modelName" : "Apple TV 4K (at 1080p)",
                        "name" : "Apple TV 4K (at 1080p)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17L255)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV5,3",
                        "identifier" : "C3619C1F-5345-419F-8A08-888006234DCB",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.apple-tv-4",
                        "modelName" : "Apple TV",
                        "name" : "Apple TV"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone10,4",
                        "identifier" : "086AC67E-FCAE-455F-B733-6DF841A835E2",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-8-2",
                        "modelName" : "iPhone 8",
                        "name" : "iPhone 8"
                      }
                    ]
[   +4 ms] /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554
shell getprop
[  +23 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required,
skipping update.
[   +4 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping
update.
[   +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping
update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping
update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required,
skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required,
skipping update.
[  +79 ms] Found plugin firebase_messaging at
/Users/mac/developement/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_mess
aging-6.0.13/
[  +59 ms] Found plugin firebase_messaging at
/Users/mac/developement/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_mess
aging-6.0.13/
[  +72 ms] Generating /Users/mac/Desktop/test
firebase/test_messaging/android/app/src/main/java/io/flutter/plugins/GeneratedPl
uginRegistrant.java
[  +28 ms] ro.hardware = ranchu
[  +28 ms] Using hardware rendering with device AOSP on IA Emulator. If you get
graphics
           artifacts, consider enabling software rendering with
           "--enable-software-rendering".
[  +20 ms] Launching lib/main.dart on AOSP on IA Emulator in debug mode...
[   +7 ms] /Users/mac/developement/flutter/bin/cache/dart-sdk/bin/dart
/Users/mac/developement/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_s
erver.dart.snapshot --sdk-root
/Users/mac/developement/flutter/bin/cache/artifacts/engine/common/flutter_patche
d_sdk/ --incremental --target=flutter --debugger-module-names
-Ddart.developer.causal_async_stacks=true --output-dill
/var/folders/8t/prt4jvgd043bvb7z02b7r85m0000gn/T/flutter_tool.jWUYYq/app.dill
--packages /Users/mac/Desktop/test firebase/test_messaging/.packages
-Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field
-initializers,keep-unreachable-code,avoid-closure-call-instructions
--enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root
--initialize-from-dill build/cache.dill
[  +10 ms] executing: /Users/mac/Library/Android/sdk/build-tools/29.0.2/aapt
dump xmltree /Users/mac/Desktop/test
firebase/test_messaging/build/app/outputs/apk/app.apk AndroidManifest.xml
[  +10 ms] Exit code 0 from:
/Users/mac/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree
/Users/mac/Desktop/test firebase/test_messaging/build/app/outputs/apk/app.apk
AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="com.example.test_messaging" (Raw:
               "com.example.test_messaging")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x12
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1d
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw:
                 "android.permission.INTERNET")
               E: uses-permission (line=15)
                 A:
                 android:name(0x01010003)="android.permission.ACCESS_NETWORK_STA
                 TE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
               E: uses-permission (line=16)
                 A: android:name(0x01010003)="android.permission.WAKE_LOCK"
                 (Raw: "android.permission.WAKE_LOCK")
               E: uses-permission (line=17)
                 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")
               E: uses-permission (line=18)
                 A:
                 android:name(0x01010003)="com.google.android.c2dm.permission.RE
                 CEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
               E: application (line=20)
                 A: android:label(0x01010001)="test_messaging" (Raw:
                 "test_messaging")
                 A: android:icon(0x01010002)=@0x7f080000
                 A:
                 android:name(0x01010003)="com.example.test_messaging.Applicatio
                 n" (Raw: "com.example.test_messaging.Application")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A:
                 android:appComponentFactory(0x0101057a)="androidx.core.app.Core
                 ComponentFactory" (Raw:
                 "androidx.core.app.CoreComponentFactory")
                 E: activity (line=26)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A:
                   android:name(0x01010003)="com.example.test_messaging.MainActi
                   vity" (Raw: "com.example.test_messaging.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type
                   0x12)0xffffffff
                   E: meta-data (line=40)
                     A:
                     android:name(0x01010003)="io.flutter.embedding.android.Norm
                     alTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=50)
                     A:
                     android:name(0x01010003)="io.flutter.embedding.android.Spla
                     shScreenDrawable" (Raw:
                     "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040015
                   E: intent-filter (line=54)
                     E: action (line=55)
                       A: android:name(0x01010003)="android.intent.action.MAIN"
                       (Raw: "android.intent.action.MAIN")
                     E: category (line=57)
                       A:
                       android:name(0x01010003)="android.intent.category.LAUNCHE
                       R" (Raw: "android.intent.category.LAUNCHER")
                   E: intent-filter (line=59)
                     E: action (line=60)
                       A: android:name(0x01010003)="FLUTTER_NOTIFICATION_CLICK"
                       (Raw: "FLUTTER_NOTIFICATION_CLICK")
                     E: category (line=62)
                       A:
                       android:name(0x01010003)="android.intent.category.DEFAULT
                       " (Raw: "android.intent.category.DEFAULT")
                 E: meta-data (line=69)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw:
                   "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
                 E: service (line=73)
                   A:
                   android:name(0x01010003)="io.flutter.plugins.firebasemessagin
                   g.FlutterFirebaseMessagingService" (Raw:
                   "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagin
                   gService")
                   E: intent-filter (line=74)
                     E: action (line=75)
                       A:
                       android:name(0x01010003)="com.google.firebase.MESSAGING_E
                       VENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
                 E: service (line=78)
                   A:
                   android:name(0x01010003)="com.google.firebase.components.Comp
                   onentDiscoveryService" (Raw:
                   "com.google.firebase.components.ComponentDiscoveryService")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
                   E: meta-data (line=82)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:io
                     .flutter.plugins.firebasemessaging.FlutterFirebaseAppRegist
                     rar" (Raw:
                     "com.google.firebase.components:io.flutter.plugins.firebase
                     messaging.FlutterFirebaseAppRegistrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=85)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:co
                     m.google.firebase.firestore.FirestoreRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.firesto
                     re.FirestoreRegistrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=88)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:co
                     m.google.firebase.auth.FirebaseAuthRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.auth.Fi
                     rebaseAuthRegistrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=91)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:co
                     m.google.firebase.messaging.FirebaseMessagingRegistrar"
                     (Raw:
                     "com.google.firebase.components:com.google.firebase.messagi
                     ng.FirebaseMessagingRegistrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=94)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:co
                     m.google.firebase.analytics.connector.internal.AnalyticsCon
                     nectorRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.analyti
                     cs.connector.internal.AnalyticsConnectorRegistrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=97)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:co
                     m.google.firebase.datatransport.TransportRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.datatra
                     nsport.TransportRegistrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=100)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:co
                     m.google.firebase.iid.Registrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.iid.Reg
                     istrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=103)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:co
                     m.google.firebase.installations.FirebaseInstallationsRegist
                     rar" (Raw:
                     "com.google.firebase.components:com.google.firebase.install
                     ations.FirebaseInstallationsRegistrar")
                     A:
                     android:value(0x01010024)="com.google.firebase.components.C
                     omponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                 E: activity (line=108)
                   A: android:theme(0x01010000)=@0x01030010
                   A:
                   android:name(0x01010003)="com.google.firebase.auth.internal.F
                   ederatedSignInActivity" (Raw:
                   "com.google.firebase.auth.internal.FederatedSignInActivity")
                   A:
                   android:permission(0x01010006)="com.google.firebase.auth.api.
                   gms.permission.LAUNCH_FEDERATED_SIGN_IN" (Raw:
                   "com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED
                   _SIGN_IN")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   A: android:excludeFromRecents(0x01010017)=(type
                   0x12)0xffffffff
                   A: android:launchMode(0x0101001d)=(type 0x10)0x2
                 E: activity (line=115)
                   A: android:theme(0x01010000)=@0x01030010
                   A:
                   android:name(0x01010003)="com.google.android.gms.auth.api.sig
                   nin.internal.SignInHubActivity" (Raw:
                   "com.google.android.gms.auth.api.signin.internal.SignInHubAct
                   ivity")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:excludeFromRecents(0x01010017)=(type
                   0x12)0xffffffff
                 E: service (line=124)
                   A:
                   android:name(0x01010003)="com.google.android.gms.auth.api.sig
                   nin.RevocationBoundService" (Raw:
                   "com.google.android.gms.auth.api.signin.RevocationBoundServic
                   e")
                   A:
                   android:permission(0x01010006)="com.google.android.gms.auth.a
                   pi.signin.permission.REVOCATION_NOTIFICATION" (Raw:
                   "com.google.android.gms.auth.api.signin.permission.REVOCATION
                   _NOTIFICATION")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                 E: service (line=132)
                   A:
                   android:name(0x01010003)="com.google.firebase.messaging.Fireb
                   aseMessagingService" (Raw:
                   "com.google.firebase.messaging.FirebaseMessagingService")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: intent-filter (line=135)
                     A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
                     E: action (line=136)
                       A:
                       android:name(0x01010003)="com.google.firebase.MESSAGING_E
                       VENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
                 E: receiver (line=140)
                   A:
                   android:name(0x01010003)="com.google.android.gms.measurement.
                   AppMeasurementReceiver" (Raw:
                   "com.google.android.gms.measurement.AppMeasurementReceiver")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: service (line=146)
                   A:
                   android:name(0x01010003)="com.google.android.gms.measurement.
                   AppMeasurementService" (Raw:
                   "com.google.android.gms.measurement.AppMeasurementService")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: service (line=150)
                   A:
                   android:name(0x01010003)="com.google.android.gms.measurement.
                   AppMeasurementJobService" (Raw:
                   "com.google.android.gms.measurement.AppMeasurementJobService"
                   )
                   A:
                   android:permission(0x01010006)="android.permission.BIND_JOB_S
                   ERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: receiver (line=156)
                   A:
                   android:name(0x01010003)="com.google.firebase.iid.FirebaseIns
                   tanceIdReceiver" (Raw:
                   "com.google.firebase.iid.FirebaseInstanceIdReceiver")
                   A:
                   android:permission(0x01010006)="com.google.android.c2dm.permi
                   ssion.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   E: intent-filter (line=160)
                     E: action (line=161)
                       A:
                       android:name(0x01010003)="com.google.android.c2dm.intent.
                       RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
                 E: provider (line=165)
                   A:
                   android:name(0x01010003)="com.google.firebase.provider.Fireba
                   seInitProvider" (Raw:
                   "com.google.firebase.provider.FirebaseInitProvider")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A:
                   android:authorities(0x01010018)="com.example.test_messaging.f
                   irebaseinitprovider" (Raw:
                   "com.example.test_messaging.firebaseinitprovider")
                   A: android:initOrder(0x0101001a)=(type 0x10)0x64
                 E: activity (line=171)
                   A: android:theme(0x01010000)=@0x01030010
                   A:
                   android:name(0x01010003)="com.google.android.gms.common.api.G
                   oogleApiActivity" (Raw:
                   "com.google.android.gms.common.api.GoogleApiActivity")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: meta-data (line=176)
                   A: android:name(0x01010003)="com.google.android.gms.version"
                   (Raw: "com.google.android.gms.version")
                   A: android:value(0x01010024)=@0x7f060000
                 E: service (line=180)
                   A:
                   android:name(0x01010003)="com.google.android.datatransport.ru
                   ntime.backends.TransportBackendDiscovery" (Raw:
                   "com.google.android.datatransport.runtime.backends.TransportB
                   ackendDiscovery")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: meta-data (line=183)
                     A:
                     android:name(0x01010003)="backend:com.google.android.datatr
                     ansport.cct.CctBackendFactory" (Raw:
                     "backend:com.google.android.datatransport.cct.CctBackendFac
                     tory")
                     A: android:value(0x01010024)="cct" (Raw: "cct")
                 E: service (line=187)
                   A:
                   android:name(0x01010003)="com.google.android.datatransport.ru
                   ntime.scheduling.jobscheduling.JobInfoSchedulerService" (Raw:
                   "com.google.android.datatransport.runtime.scheduling.jobsched
                   uling.JobInfoSchedulerService")
                   A:
                   android:permission(0x01010006)="android.permission.BIND_JOB_S
                   ERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: receiver (line=193)
                   A:
                   android:name(0x01010003)="com.google.android.datatransport.ru
                   ntime.scheduling.jobscheduling.AlarmManagerSchedulerBroadcast
                   Receiver" (Raw:
                   "com.google.android.datatransport.runtime.scheduling.jobsched
                   uling.AlarmManagerSchedulerBroadcastReceiver")
                   A: android:exported(0x01010010)=(type 0x12)0x0
[  +16 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s
emulator-5554 shell -x logcat -v time -t 1
[  +20 ms] Exit code 0 from: /Users/mac/Library/Android/sdk/platform-tools/adb
-s emulator-5554 shell -x logcat -v time -t 1
[        ] --------- beginning of main
           04-30 17:00:40.920 I/GnssLocationProvider( 1937): WakeLock released
           by handleMessage(REPORT_SV_STATUS, 0,
           com.android.server.location.GnssLocationProvider$SvStatusInfo@e418f6a
           )
[  +16 ms] <- compile package:test_messaging/main.dart
[  +10 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb version
[  +12 ms] Android Debug Bridge version 1.0.41
           Version 29.0.5-5949299
           Installed as /Users/mac/Library/Android/sdk/platform-tools/adb
[   +2 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb
start-server
[   +7 ms] Building APK
[  +22 ms] Running Gradle task 'assembleDebug'...
[   +3 ms] gradle.properties already sets `android.enableR8`
[   +3 ms] Using gradle from /Users/mac/Desktop/test
firebase/test_messaging/android/gradlew.
[   +1 ms] /Users/mac/Desktop/test firebase/test_messaging/android/gradlew mode:
33261 rwxr-xr-x.
[ +194 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android
Studio.app/Contents/Info.plist
[  +10 ms] Exit code 0 from: /usr/bin/plutil -convert json -o -
/Applications/Android Studio.app/Contents/Info.plist
[        ] {"CFBundleName":"Android
Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$A
PP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:
$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_PACKAGE\/Contents\/lib\/log4j.jar:$AP
P_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVM
Version":"1.8*,1.8+","WorkingDirectory":"$APP_PACKAGE\/Contents\/bin","MainClass
":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio3.5
","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.home.p
ath":"$APP_PACKAGE\/Contents"}},"LSArchitecturePriority":["x86_64"],"CFBundleVer
sion":"AI-191.8026.42.35.6010548","CFBundleDevelopmentRegion":"English","CFBundl
eDocumentTypes":[{"CFBundleTypeName":"Android Studio Project
File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleType
IconFile":"studio.icns"},{"CFBundleTypeName":"All
documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBund
leTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitc
hing":true,"CFBundlePackageType":"APPL","CFBundleIconFile":"studio.icns","NSHigh
ResolutionCapable":true,"CFBundleShortVersionString":"3.5","CFBundleInfoDictiona
ryVersion":"6.0","CFBundleExecutable":"studio","LSRequiresNativeExecution":"YES"
,"CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace"
,"CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.studio
","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSig
nature":"????","LSMinimumSystemVersion":"10.8","CFBundleGetInfoString":"Android
Studio 3.5, build AI-191.8026.42.35.6010548. Copyright JetBrains s.r.o., (c)
2000-2019"}
[   +3 ms] executing: /Applications/Android
Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[  +83 ms] Exit code 0 from: /Applications/Android
Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[        ] openjdk version "1.8.0_202-release"
           OpenJDK Runtime Environment (build
           1.8.0_202-release-1483-b49-5587405)
           OpenJDK 64-Bit Server VM (build 25.202-b49-5587405, mixed mode)
[   +2 ms] executing: [/Users/mac/Desktop/test firebase/test_messaging/android/]
/Users/mac/Desktop/test firebase/test_messaging/android/gradlew -Pverbose=true
-Ptarget-platform=android-x86 -Ptarget=/Users/mac/Desktop/test
firebase/test_messaging/lib/main.dart -Ptrack-widget-creation=true
-Pfilesystem-scheme=org-dartlang-root assembleDebug
[+3027 ms] > Task :app:compileFlutterBuildDebug
[        ] [  +18 ms] executing: [/Users/mac/developement/flutter/] git -c
log.showSignature=false log -n 1 --pretty=format:%H
[        ] [  +40 ms] Exit code 0 from: git -c log.showSignature=false log -n 1
--pretty=format:%H
[        ] [        ] 2a7bc389f28d83c581f7ddd4601588a22e12512e
[        ] [        ] executing: [/Users/mac/developement/flutter/] git describe
--match *.*.* --first-parent --long --tags
[        ] [  +18 ms] Exit code 0 from: git describe --match *.*.*
--first-parent --long --tags
[        ] [        ] 1.17.0-3.2.pre-0-g2a7bc389f2
[        ] [  +23 ms] executing: [/Users/mac/developement/flutter/] git
rev-parse --abbrev-ref --symbolic @{u}
[        ] [   +9 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic
@{u}
[        ] [   +1 ms] origin/beta
[        ] [        ] executing: [/Users/mac/developement/flutter/] git
ls-remote --get-url origin
[        ] [   +8 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] [        ] https://github.com/flutter/flutter.git
[        ] [  +87 ms] executing: [/Users/mac/developement/flutter/] git
rev-parse --abbrev-ref HEAD
[        ] [   +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] [        ] beta
[        ] [  +18 ms] Artifact Instance of 'AndroidMavenArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is
not required, skipping update.
[        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required,
skipping update.
[        ] [   +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not
required, skipping update.
[        ] [   +5 ms] Artifact Instance of 'MaterialFonts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'GradleWrapper' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'AndroidMavenArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is
not required, skipping update.
[        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'FlutterSdk' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'WindowsEngineArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not
required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required,
skipping update.
[        ] [        ] Artifact Instance of 'FontSubsetArtifacts' is not
required, skipping update.
[        ] [  +79 ms] Initializing file store
[        ] [  +11 ms] Done initializing file store
[ +176 ms] [+1409 ms] kernel_snapshot: Starting due to
{InvalidatedReason.inputChanged}
[        ] [  +12 ms]
/Users/mac/developement/flutter/bin/cache/dart-sdk/bin/dart
/Users/mac/developement/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_s
erver.dart.snapshot --sdk-root
/Users/mac/developement/flutter/bin/cache/artifacts/engine/common/flutter_patche
d_sdk/ --target=flutter -Ddart.developer.causal_async_stacks=true
-Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field
-initializers,keep-unreachable-code,avoid-closure-call-instructions
--enable-asserts --track-widget-creation --no-link-platform --packages
/Users/mac/Desktop/test firebase/test_messaging/.packages --output-dill
/Users/mac/Desktop/test
firebase/test_messaging/.dart_tool/flutter_build/698a5976f9d1bad24ee5e33e257ed83
5/app.dill --depfile /Users/mac/Desktop/test
firebase/test_messaging/.dart_tool/flutter_build/698a5976f9d1bad24ee5e33e257ed83
5/kernel_snapshot.d package:test_messaging/main.dart
[+5804 ms] [+5840 ms] kernel_snapshot: Complete
[ +395 ms] [ +423 ms] debug_android_application: Starting due to
{InvalidatedReason.outputMissing}
[ +200 ms] [ +177 ms] debug_android_application: Complete
[        ] [  +14 ms] Persisting file store
[ +102 ms] [  +14 ms] Done persisting file store
[        ] [   +3 ms] build succeeded.
[   +8 ms] [  +11 ms] "flutter assemble" took 8 036ms.
[  +92 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[        ] > Task :app:preBuild UP-TO-DATE
[        ] > Task :app:preDebugBuild UP-TO-DATE
[  +94 ms] > Task :firebase_messaging:preBuild UP-TO-DATE
[        ] > Task :firebase_messaging:preDebugBuild UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugAidl NO-SOURCE
[        ] > Task :app:compileDebugAidl NO-SOURCE
[        ] > Task :firebase_messaging:packageDebugRenderscript NO-SOURCE
[        ] > Task :app:checkDebugManifest UP-TO-DATE
[        ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :app:compileDebugRenderscript NO-SOURCE
[        ] > Task :app:cleanMergeDebugAssets
[        ] > Task :app:mergeDebugShaders UP-TO-DATE
[        ] > Task :app:compileDebugShaders UP-TO-DATE
[  +98 ms] > Task :app:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugShaders UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugShaders UP-TO-DATE
[        ] > Task :firebase_messaging:generateDebugAssets UP-TO-DATE
[        ] > Task :firebase_messaging:packageDebugAssets UP-TO-DATE
[        ] > Task :app:mergeDebugAssets
[ +198 ms] > Task :app:copyFlutterAssetsDebug
[        ] > Task :app:mainApkListPersistenceDebug UP-TO-DATE
[        ] > Task :app:generateDebugResValues UP-TO-DATE
[        ] > Task :app:generateDebugResources UP-TO-DATE
[        ] > Task :app:processDebugGoogleServices UP-TO-DATE
[        ] > Task :firebase_messaging:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_messaging:generateDebugResources UP-TO-DATE
[        ] > Task :firebase_messaging:packageDebugResources UP-TO-DATE
[        ] > Task :app:mergeDebugResources UP-TO-DATE
[        ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[        ] > Task :firebase_messaging:checkDebugManifest UP-TO-DATE
[        ] > Task :firebase_messaging:processDebugManifest UP-TO-DATE
[  +99 ms] > Task :app:processDebugManifest UP-TO-DATE
[        ] > Task :firebase_messaging:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :firebase_messaging:generateDebugRFile UP-TO-DATE
[        ] > Task :app:processDebugResources UP-TO-DATE
[        ] > Task :firebase_messaging:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :firebase_messaging:javaPreCompileDebug UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_messaging:bundleLibCompileDebug UP-TO-DATE
[  +97 ms] > Task :app:compileDebugKotlin UP-TO-DATE
[        ] > Task :app:javaPreCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :app:compileDebugSources UP-TO-DATE
[        ] > Task :app:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_messaging:processDebugJavaRes NO-SOURCE
[        ] > Task :firebase_messaging:bundleLibResDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :firebase_messaging:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :firebase_messaging:createFullJarDebug UP-TO-DATE
[        ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[        ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[        ] > Task :app:multiDexListDebug UP-TO-DATE
[        ] > Task :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[        ] > Task :app:mergeDexDebug UP-TO-DATE
[  +94 ms] > Task :app:validateSigningDebug UP-TO-DATE
[        ] > Task :app:signingConfigWriterDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :firebase_messaging:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task
:firebase_messaging:transformNativeLibsWithIntermediateJniLibsForDebug
UP-TO-DATE
[        ] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[        ] Compatible side by side NDK version was not found.
[ +102 ms] > Task :app:packageDebug UP-TO-DATE
[  +67 ms] > Task :app:assembleDebug
[        ] > Task :firebase_messaging:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugGeneratedProguardFiles
UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :firebase_messaging:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugJavaResource UP-TO-DATE
[        ] > Task
:firebase_messaging:transformClassesAndResourcesWithSyncLibJarsForDebug
UP-TO-DATE
[        ] > Task :firebase_messaging:transformNativeLibsWithSyncJniLibsForDebug
UP-TO-DATE
[        ] > Task :firebase_messaging:bundleDebugAar UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugSources UP-TO-DATE
[        ] > Task :firebase_messaging:assembleDebug UP-TO-DATE
[        ] BUILD SUCCESSFUL in 10s
[        ] 60 actionable tasks: 5 executed, 55 up-to-date
[ +369 ms] Running Gradle task 'assembleDebug'... (completed in 11,4s)
[  +86 ms] calculateSha: LocalDirectory: '/Users/mac/Desktop/test
firebase/test_messaging/build/app/outputs/apk'/app.apk
[  +58 ms] calculateSha: reading file took 56us
[ +515 ms] calculateSha: computing sha took 514us
[   +3 ms] ✓ Built build/app/outputs/apk/debug/app-debug.apk.
[   +3 ms] executing: /Users/mac/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/mac/Desktop/test
firebase/test_messaging/build/app/outputs/apk/app.apk AndroidManifest.xml
[  +13 ms] Exit code 0 from: /Users/mac/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/mac/Desktop/test
firebase/test_messaging/build/app/outputs/apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="com.example.test_messaging" (Raw: "com.example.test_messaging")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x12
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1d
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: uses-permission (line=15)
                 A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw:
                 "android.permission.ACCESS_NETWORK_STATE")
               E: uses-permission (line=16)
                 A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
               E: uses-permission (line=17)
                 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")
               E: uses-permission (line=18)
                 A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw:
                 "com.google.android.c2dm.permission.RECEIVE")
               E: application (line=20)
                 A: android:label(0x01010001)="test_messaging" (Raw: "test_messaging")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:name(0x01010003)="com.example.test_messaging.Application" (Raw:
                 "com.example.test_messaging.Application")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw:
                 "androidx.core.app.CoreComponentFactory")
                 E: activity (line=26)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.test_messaging.MainActivity" (Raw:
                   "com.example.test_messaging.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=40)
                     A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw:
                     "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=50)
                     A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw:
                     "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040015
                   E: intent-filter (line=54)
                     E: action (line=55)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=57)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw:
                       "android.intent.category.LAUNCHER")
                   E: intent-filter (line=59)
                     E: action (line=60)
                       A: android:name(0x01010003)="FLUTTER_NOTIFICATION_CLICK" (Raw: "FLUTTER_NOTIFICATION_CLICK")
                     E: category (line=62)
                       A: android:name(0x01010003)="android.intent.category.DEFAULT" (Raw:
                       "android.intent.category.DEFAULT")
                 E: meta-data (line=69)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
                 E: service (line=73)
                   A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService"
                   (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
                   E: intent-filter (line=74)
                     E: action (line=75)
                       A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw:
                       "com.google.firebase.MESSAGING_EVENT")
                 E: service (line=78)
                   A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw:
                   "com.google.firebase.components.ComponentDiscoveryService")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
                   E: meta-data (line=82)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebasemessaging.Flutt
                     erFirebaseAppRegistrar" (Raw:
                     "com.google.firebase.components:io.flutter.plugins.firebasemessaging.FlutterFirebaseAppRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=85)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:com.google.firebase.firestore.FirestoreReg
                     istrar" (Raw: "com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=88)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegis
                     trar" (Raw: "com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=91)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:com.google.firebase.messaging.FirebaseMess
                     agingRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.messaging.FirebaseMessagingRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=94)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.in
                     ternal.AnalyticsConnectorRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnector
                     Registrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=97)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:com.google.firebase.datatransport.Transpor
                     tRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.datatransport.TransportRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=100)
                     A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar"
                     (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                   E: meta-data (line=103)
                     A:
                     android:name(0x01010003)="com.google.firebase.components:com.google.firebase.installations.Firebase
                     InstallationsRegistrar" (Raw:
                     "com.google.firebase.components:com.google.firebase.installations.FirebaseInstallationsRegistrar")
                     A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
                     "com.google.firebase.components.ComponentRegistrar")
                 E: activity (line=108)
                   A: android:theme(0x01010000)=@0x01030010
                   A: android:name(0x01010003)="com.google.firebase.auth.internal.FederatedSignInActivity" (Raw:
                   "com.google.firebase.auth.internal.FederatedSignInActivity")
                   A:
                   android:permission(0x01010006)="com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN"
                   (Raw: "com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   A: android:excludeFromRecents(0x01010017)=(type 0x12)0xffffffff
                   A: android:launchMode(0x0101001d)=(type 0x10)0x2
                 E: activity (line=115)
                   A: android:theme(0x01010000)=@0x01030010
                   A: android:name(0x01010003)="com.google.android.gms.auth.api.signin.internal.SignInHubActivity" (Raw:
                   "com.google.android.gms.auth.api.signin.internal.SignInHubActivity")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:excludeFromRecents(0x01010017)=(type 0x12)0xffffffff
                 E: service (line=124)
                   A: android:name(0x01010003)="com.google.android.gms.auth.api.signin.RevocationBoundService" (Raw:
                   "com.google.android.gms.auth.api.signin.RevocationBoundService")
                   A:
                   android:permission(0x01010006)="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICA
                   TION" (Raw: "com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                 E: service (line=132)
                   A: android:name(0x01010003)="com.google.firebase.messaging.FirebaseMessagingService" (Raw:
                   "com.google.firebase.messaging.FirebaseMessagingService")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: intent-filter (line=135)
                     A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
                     E: action (line=136)
                       A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw:
                       "com.google.firebase.MESSAGING_EVENT")
                 E: receiver (line=140)
                   A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw:
                   "com.google.android.gms.measurement.AppMeasurementReceiver")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: service (line=146)
                   A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw:
                   "com.google.android.gms.measurement.AppMeasurementService")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: service (line=150)
                   A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw:
                   "com.google.android.gms.measurement.AppMeasurementJobService")
                   A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
                   "android.permission.BIND_JOB_SERVICE")
                   A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: receiver (line=156)
                   A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw:
                   "com.google.firebase.iid.FirebaseInstanceIdReceiver")
                   A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw:
                   "com.google.android.c2dm.permission.SEND")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   E: intent-filter (line=160)
                     E: action (line=161)
                       A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw:
                       "com.google.android.c2dm.intent.RECEIVE")
                 E: provider (line=165)
                   A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw:
                   "com.google.firebase.provider.FirebaseInitProvider")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:authorities(0x01010018)="com.example.test_messaging.firebaseinitprovider" (Raw:
                   "com.example.test_messaging.firebaseinitprovider")
                   A: android:initOrder(0x0101001a)=(type 0x10)0x64
                 E: activity (line=171)
                   A: android:theme(0x01010000)=@0x01030010
                   A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw:
                   "com.google.android.gms.common.api.GoogleApiActivity")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: meta-data (line=176)
                   A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
                   A: android:value(0x01010024)=@0x7f060000
                 E: service (line=180)
                   A:
                   android:name(0x01010003)="com.google.android.datatransport.runtime.backends.TransportBackendDiscovery
                   " (Raw: "com.google.android.datatransport.runtime.backends.TransportBackendDiscovery")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: meta-data (line=183)
                     A: android:name(0x01010003)="backend:com.google.android.datatransport.cct.CctBackendFactory" (Raw:
                     "backend:com.google.android.datatransport.cct.CctBackendFactory")
                     A: android:value(0x01010024)="cct" (Raw: "cct")
                 E: service (line=187)
                   A:
                   android:name(0x01010003)="com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSc
                   hedulerService" (Raw:
                   "com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSchedulerService")
                   A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
                   "android.permission.BIND_JOB_SERVICE")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                 E: receiver (line=193)
                   A:
                   android:name(0x01010003)="com.google.android.datatransport.runtime.scheduling.jobscheduling.AlarmMana
                   gerSchedulerBroadcastReceiver" (Raw:
                   "com.google.android.datatransport.runtime.scheduling.jobscheduling.AlarmManagerSchedulerBroadcastRece
                   iver")
                   A: android:exported(0x01010010)=(type 0x12)0x0
[  +12 ms] Stopping app 'app.apk' on AOSP on IA Emulator.
[        ] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am force-stop
com.example.test_messaging
[  +82 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell pm list packages
com.example.test_messaging
[  +80 ms] package:com.example.test_messaging
[   +6 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell cat
/data/local/tmp/sky.com.example.test_messaging.sha1
[  +34 ms] 4e5ea0504243c9e2f6e6b1ac73b1e412df55034a
[   +1 ms] Latest build already installed.
[        ] AOSP on IA Emulator startApp
[   +3 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am start -a
android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez
enable-checked-mode true --ez verify-entry-points true
com.example.test_messaging/com.example.test_messaging.MainActivity
[  +58 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.test_messaging/.MainActivity
(has extras) }
[        ] Waiting for observatory port to be available...
[ +980 ms] Observatory URL on device: http://127.0.0.1:44486/25XpCHdVYwo=/
[   +1 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:44486
[   +8 ms] 54691
[        ] Forwarded host port 54691 to device port 44486 for Observatory
[  +13 ms] Connecting to service protocol: http://127.0.0.1:54691/25XpCHdVYwo=/
[ +294 ms] Successfully connected to service protocol: http://127.0.0.1:54691/25XpCHdVYwo=/
[   +3 ms] Sending to VM service: getVM({})
[  +10 ms] Result: {type: VM, name: vm, architectureBits: 32, hostCPU: Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz,
operatingSystem: android, targetCPU: ia32, version: 2.8.0-dev.20.10 (beta) (Mon Apr 20 12:00:58 2020 +0200) on
"android_ia32", _profilerMode: VM, _nativ...
[   +7 ms] Sending to VM service: getIsolate({isolateId: isolates/2817880749565107})
[   +3 ms] Sending to VM service: _flutter.listViews({})
[  +10 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xed4c2510, isolate: {type:
@Isolate, fixedId: true, id: isolates/2817880749565107, name: main.dart$main-2817880749565107, number:
2817880749565107}}]}
[   +8 ms] DevFS: Creating new filesystem on the device (null)
[   +1 ms] Sending to VM service: _createDevFS({fsName: test_messaging})
[  +15 ms] Result: {type: Isolate, id: isolates/2817880749565107, name: main, number: 2817880749565107, _originNumber:
2817880749565107, startTime: 1588262455030, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
3, avgCollectionPeriodMillis...
[  +18 ms] Result: {type: FileSystem, name: test_messaging, uri:
file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/}
[        ] DevFS: Created new filesystem on the device
(file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/)
[   +3 ms] Updating assets
[  +91 ms] Syncing files to device AOSP on IA Emulator...
[   +2 ms] Scanning asset files
[   +2 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +1 ms] <- recompile package:test_messaging/main.dart 92aaa67b-6104-4b98-94f7-bfd32fb0b069
[        ] <- 92aaa67b-6104-4b98-94f7-bfd32fb0b069
[  +61 ms] Updating files
[ +188 ms] DevFS: Sync finished
[   +1 ms] Syncing files to device AOSP on IA Emulator... (completed in 257ms)
[        ] Synced 0.9MB.
[   +1 ms] Sending to VM service: _flutter.listViews({})
[   +2 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xed4c2510, isolate: {type:
@Isolate, fixedId: true, id: isolates/2817880749565107, name: main.dart$main-2817880749565107, number:
2817880749565107}}]}
[        ] <- accept
[        ] Connected to _flutterView/0xed4c2510.
[   +1 ms] Flutter run key commands.
[   +2 ms] r Hot reload. 🔥🔥🔥
[   +1 ms] R Hot restart.
[        ] h Repeat this help message.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] An Observatory debugger and profiler on AOSP on IA Emulator is available at:
http://127.0.0.1:54691/25XpCHdVYwo=/
[   +7 ms] D/EGL_emulation( 7478): eglMakeCurrent: 0x9cb9cb60: ver 3 0 (tinfo 0x9bf382f0)
[        ] D/eglCodecCommon( 7478): setVertexArrayObject: set vao to 0 (0) 1 0`

### after the first hot reload
`[+136605 ms] Performing hot restart...
[   +2 ms] Refreshing active FlutterViews before restarting.
[        ] Sending to VM service: _flutter.listViews({})
[   +3 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xed4c2510, isolate: {type:
@Isolate, fixedId: true, id: isolates/2817880749565107, name: main.dart$main-2817880749565107, number:
2817880749565107}}, {type: FlutterView, id: _flutterView/0xed4c4110, isolate: {type: @Isolate, fixedId: true, id:
isolates/3097050126469391, name: main.dart$main-3097050126469391, number: 3097050126469391}}]}
[   +1 ms] Sending to VM service: getIsolate({isolateId: isolates/3097050126469391})
[   +7 ms] Scanned through 470 files in 6ms
[        ] Syncing files to device AOSP on IA Emulator...
[        ] Scanning asset files
[   +1 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[        ] <- recompile package:test_messaging/main.dart e806eb8c-436c-4422-94ee-cdf4d51b7a2f
[        ] <- e806eb8c-436c-4422-94ee-cdf4d51b7a2f
[   +5 ms] Result: {type: Isolate, id: isolates/3097050126469391, name: main, number: 3097050126469391, _originNumber:
3097050126469391, startTime: 1588262456065, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
3, avgCollectionPeriodMillis...
[  +49 ms] Updating files
[ +922 ms] DevFS: Sync finished
[        ] Syncing files to device AOSP on IA Emulator... (completed in 980ms)
[        ] Synced 19.4MB.
[        ] <- accept
[        ] Sending to VM service: getIsolate({isolateId: isolates/2817880749565107})
[        ] Sending to VM service: getIsolate({isolateId: isolates/3097050126469391})
[   +8 ms] Result: {type: Isolate, id: isolates/2817880749565107, name: main, number: 2817880749565107, _originNumber:
2817880749565107, startTime: 1588262455029, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
4, avgCollectionPeriodMillis...
[  +13 ms] Result: {type: Isolate, id: isolates/3097050126469391, name: main, number: 3097050126469391, _originNumber:
3097050126469391, startTime: 1588262456066, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
3, avgCollectionPeriodMillis...
[  +14 ms] Sending to VM service: _flutter.runInView({viewId: _flutterView/0xed4c4110, mainScript:
file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/lib/main.dart.dill,
assetDirectory:
file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/build/flutter_assets})
[   +3 ms] Sending to VM service: _flutter.runInView({viewId: _flutterView/0xed4c2510, mainScript:
file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/lib/main.dart.dill,
assetDirectory:
file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/build/flutter_assets})
[ +278 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate,
id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593660}}
[        ] Sending to VM service: getIsolate({isolateId: isolates/1379924149632695})
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593664, extensionRPC:
ext.ui.window.scheduleFrame}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593671, extensionRPC:
ext.dart.io.getHttpEnableTimelineLogging}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593671, extensionRPC:
ext.dart.io.setHttpEnableTimelineLogging}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593671, extensionRPC:
ext.dart.io.getSocketProfile}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593671, extensionRPC:
ext.dart.io.startSocketProfiling}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593671, extensionRPC:
ext.dart.io.pauseSocketProfiling}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593671, extensionRPC:
ext.dart.io.clearSocketProfile}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593671, extensionRPC:
ext.dart.io.getVersion}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateExit, isolate: {type: @Isolate,
id: isolates/3097050126469391, name: main, number: 3097050126469391}, timestamp: 1588262593687}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateRunnable, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593777}}
[        ] Result: {type: Success, view: {type: FlutterView, id: _flutterView/0xed4c4110, isolate: {type: @Isolate,
fixedId: true, id: isolates/1379924149632695, name: main.dart$main-1379924149632695, number: 1379924149632695}}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate,
id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593786}}
[        ] Sending to VM service: getIsolate({isolateId: isolates/1856908425302863})
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593789, extensionRPC:
ext.ui.window.scheduleFrame}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593796, extensionRPC:
ext.dart.io.getHttpEnableTimelineLogging}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593796, extensionRPC:
ext.dart.io.setHttpEnableTimelineLogging}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593796, extensionRPC:
ext.dart.io.getSocketProfile}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593796, extensionRPC:
ext.dart.io.startSocketProfiling}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593796, extensionRPC:
ext.dart.io.pauseSocketProfiling}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593796, extensionRPC:
ext.dart.io.clearSocketProfile}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593796, extensionRPC:
ext.dart.io.getVersion}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateExit, isolate: {type: @Isolate,
id: isolates/2817880749565107, name: main, number: 2817880749565107}, timestamp: 1588262593817}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593874, extensionRPC:
ext.flutter.reassemble}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593874, extensionRPC:
ext.flutter.exit}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593874, extensionRPC:
ext.flutter.saveCompilationTrace}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593874, extensionRPC:
ext.flutter.platformOverride}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593875, extensionRPC:
ext.flutter.evict}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593875, extensionRPC:
ext.flutter.timeDilation}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugPaint}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugPaintBaselinesEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.repaintRainbow}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugCheckElevationsEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugDumpLayerTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugDumpRenderTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugDumpSemanticsTreeInTraversalOrder}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.debugDumpApp}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.showPerformanceOverlay}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.didSendFirstFrameEvent}}
[        ] Isolate is runnable.
[        ] Isolate is runnable.
[        ] Sending to VM service: _flutter.listViews({})
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.didSendFirstFrameRasterizedEvent}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.fastReassemble}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593876, extensionRPC:
ext.flutter.profileWidgetBuilds}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593877, extensionRPC:
ext.flutter.debugAllowBanner}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593877, extensionRPC:
ext.flutter.debugWidgetInspector}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593880, extensionRPC:
ext.flutter.inspector.structuredErrors}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593880, extensionRPC:
ext.flutter.inspector.show}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593881, extensionRPC:
ext.flutter.inspector.trackRebuildDirtyWidgets}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593881, extensionRPC:
ext.flutter.inspector.trackRepaintWidgets}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593881, extensionRPC:
ext.flutter.inspector.disposeAllGroups}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.disposeGroup}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.isWidgetTreeReady}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.disposeId}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.setPubRootDirectories}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.setSelectionById}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.getParentChain}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.getProperties}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.getChildren}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.getChildrenSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.getChildrenDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.getRootWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593882, extensionRPC:
ext.flutter.inspector.getRootRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593883, extensionRPC:
ext.flutter.inspector.getRootWidgetSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593883, extensionRPC:
ext.flutter.inspector.getDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593883, extensionRPC:
ext.flutter.inspector.getSelectedRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593883, extensionRPC:
ext.flutter.inspector.getSelectedWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593883, extensionRPC:
ext.flutter.inspector.getSelectedSummaryWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593883, extensionRPC:
ext.flutter.inspector.isWidgetCreationTracked}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695}, timestamp: 1588262593883, extensionRPC:
ext.flutter.inspector.screenshot}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateRunnable, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262593926}}
[        ] Result: {type: Success, view: {type: FlutterView, id: _flutterView/0xed4c2510, isolate: {type: @Isolate,
fixedId: true, id: isolates/1856908425302863, name: main.dart$main-1856908425302863, number: 1856908425302863}}}
[   +4 ms] Result: {type: Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695, _originNumber:
1379924149632695, startTime: 1588262593657, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
3, avgCollectionPeriodMillis...
[  +11 ms] Result: {type: Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863, _originNumber:
1856908425302863, startTime: 1588262593784, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
3, avgCollectionPeriodMillis...
[  +10 ms] Sending to VM service: _flutter.listViews({})
[        ] Isolate is runnable.
[        ] Isolate is runnable.
[        ] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xed4c2510, isolate: {type:
@Isolate, fixedId: true, id: isolates/1856908425302863, name: main.dart$main-1856908425302863, number:
1856908425302863}}, {type: FlutterView, id: _flutterView/0xed4c4110, isolate: {type: @Isolate, fixedId: true, id:
isolates/1379924149632695, name: main.dart$main-1379924149632695, number: 1379924149632695}}]}
[   +1 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xed4c2510, isolate: {type:
@Isolate, fixedId: true, id: isolates/1856908425302863, name: main.dart$main-1856908425302863, number:
1856908425302863}}, {type: FlutterView, id: _flutterView/0xed4c4110, isolate: {type: @Isolate, fixedId: true, id:
isolates/1379924149632695, name: main.dart$main-1379924149632695, number: 1379924149632695}}]}
[        ] Hot restart performed in 1 372ms.
[   +2 ms] Performing hot restart... (completed in 1 383ms)
[        ] Restarted application in 1 385ms.
[   +8 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594012, extensionRPC:
ext.flutter.reassemble}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594012, extensionRPC:
ext.flutter.exit}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594012, extensionRPC:
ext.flutter.saveCompilationTrace}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594012, extensionRPC:
ext.flutter.platformOverride}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594012, extensionRPC:
ext.flutter.evict}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594013, extensionRPC:
ext.flutter.timeDilation}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugPaint}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugPaintBaselinesEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.repaintRainbow}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugCheckElevationsEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugDumpLayerTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugDumpRenderTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugDumpSemanticsTreeInTraversalOrder}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.debugDumpApp}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.showPerformanceOverlay}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.didSendFirstFrameEvent}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.didSendFirstFrameRasterizedEvent}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.fastReassemble}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594014, extensionRPC:
ext.flutter.profileWidgetBuilds}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594016, extensionRPC:
ext.flutter.debugAllowBanner}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594017, extensionRPC:
ext.flutter.debugWidgetInspector}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594022, extensionRPC:
ext.flutter.inspector.structuredErrors}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594022, extensionRPC:
ext.flutter.inspector.show}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594022, extensionRPC:
ext.flutter.inspector.trackRebuildDirtyWidgets}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594022, extensionRPC:
ext.flutter.inspector.trackRepaintWidgets}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594023, extensionRPC:
ext.flutter.inspector.disposeAllGroups}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594023, extensionRPC:
ext.flutter.inspector.disposeGroup}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594023, extensionRPC:
ext.flutter.inspector.isWidgetTreeReady}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.disposeId}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.setPubRootDirectories}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.setSelectionById}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.getParentChain}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.getProperties}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.getChildren}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.getChildrenSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594024, extensionRPC:
ext.flutter.inspector.getChildrenDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.getRootWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.getRootRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.getRootWidgetSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.getDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.getSelectedRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.getSelectedWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.getSelectedSummaryWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.isWidgetCreationTracked}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863}, timestamp: 1588262594025, extensionRPC:
ext.flutter.inspector.screenshot}}
[  +42 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate,
id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594076}}
[        ] Sending to VM service: getIsolate({isolateId: isolates/1947830391039643})
[   +4 ms] Result: {type: Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643, _originNumber:
1947830391039643, startTime: 1588262594074, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
0, avgCollectionPeriodMillis...
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594082, extensionRPC:
ext.ui.window.scheduleFrame}}
[   +6 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594089, extensionRPC:
ext.dart.io.getHttpEnableTimelineLogging}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594089, extensionRPC:
ext.dart.io.setHttpEnableTimelineLogging}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594089, extensionRPC:
ext.dart.io.getSocketProfile}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594089, extensionRPC:
ext.dart.io.startSocketProfiling}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594089, extensionRPC:
ext.dart.io.pauseSocketProfiling}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594089, extensionRPC:
ext.dart.io.clearSocketProfile}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type:
@Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643}, timestamp: 1588262594089, extensionRPC:
ext.dart.io.getVersion}}

`
### after the second hot reload
`[+47951 ms] Performing hot restart...
[        ] Refreshing active FlutterViews before restarting.
[        ] Sending to VM service: _flutter.listViews({})
[   +4 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xed4c1a90, isolate: {type:
@Isolate, fixedId: true, id: isolates/1947830391039643, name: main.dart$main-1947830391039643, number:
1947830391039643}}, {type: FlutterView, id: _flutterView/0xed4c2510, isolate: {type: @Isolate, fixedId: true, id:
isolates/1856908425302863, name: main.dart$main-1856908425302863, number: 1856908425302863}}, {type: FlutterView, id:
_flutterView/0xed4c4110, isolate: {type: @Isolate, fixedId: true, id: isolates/1379924149632695, name:
main.dart$main-1379924149632695, number: 1379924149632695}}]}
[   +6 ms] Scanned through 470 files in 5ms
[        ] Syncing files to device AOSP on IA Emulator...
[        ] Scanning asset files
[   +1 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +1 ms] <- recompile package:test_messaging/main.dart 17bcc675-c6fb-45bc-bc80-2b81060d82f9
[        ] <- 17bcc675-c6fb-45bc-bc80-2b81060d82f9
[  +58 ms] Updating files
[ +941 ms] DevFS: Sync finished
[        ] Syncing files to device AOSP on IA Emulator... (completed in 1 003ms)
[        ] Synced 19.4MB.
[        ] <- accept
[        ] Sending to VM service: getIsolate({isolateId: isolates/1947830391039643})
[        ] Sending to VM service: getIsolate({isolateId: isolates/1856908425302863})
[        ] Sending to VM service: getIsolate({isolateId: isolates/1379924149632695})
[   +3 ms] Result: {type: Isolate, id: isolates/1947830391039643, name: main, number: 1947830391039643, _originNumber:
1947830391039643, startTime: 1588262594074, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
2, avgCollectionPeriodMillis...
[        ] Sending to VM service: resume({isolateId: isolates/1947830391039643})
[   +5 ms] Result: {type: Isolate, id: isolates/1856908425302863, name: main, number: 1856908425302863, _originNumber:
1856908425302863, startTime: 1588262593784, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
4, avgCollectionPeriodMillis...
[   +5 ms] Result: {type: Isolate, id: isolates/1379924149632695, name: main, number: 1379924149632695, _originNumber:
1379924149632695, startTime: 1588262593658, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections:
3, avgCollectionPeriodMillis...
[   +5 ms] Error 105 received from application: Isolate must be runnable
[   +1 ms] {request: {method: resume, params: {isolateId: isolates/1947830391039643}}, details: Isolate must be runnable
before this request is made.}
[   +1 ms] Performing hot restart... (completed in 1 039ms)
[        ] Restarted application in 1 040ms.
[   +3 ms] Application finished.
hot restart failed to complete

#0      throwToolExit (package:flutter_tools/src/base/common.dart:14:3)
#1      TerminalHandler._commonTerminalInputHandler (package:flutter_tools/src/resident_runner.dart:1277:11)
<asynchronous suspension>
#2      TerminalHandler.processTerminalInput (package:flutter_tools/src/resident_runner.dart:1327:13)
#3      _rootRunUnary (dart:async/zone.dart:1192:38)
#4      _CustomZone.runUnary (dart:async/zone.dart:1085:19)
#5      _CustomZone.runUnaryGuarded (dart:async/zone.dart:987:7)
#6      _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:339:11)
#7      _BufferingStreamSubscription._add (dart:async/stream_impl.dart:266:7)
#8      _SyncBroadcastStreamController._sendData (dart:async/broadcast_stream_controller.dart:378:20)
#9      _BroadcastStreamController.add (dart:async/broadcast_stream_controller.dart:252:5)
#10     _AsBroadcastStreamController.add (dart:async/broadcast_stream_controller.dart:477:11)
#11     _rootRunUnary (dart:async/zone.dart:1192:38)
#12     _CustomZone.runUnary (dart:async/zone.dart:1085:19)
#13     _CustomZone.runUnaryGuarded (dart:async/zone.dart:987:7)
#14     _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:339:11)
#15     _BufferingStreamSubscription._add (dart:async/stream_impl.dart:266:7)
#16     _SinkTransformerStreamSubscription._add (dart:async/stream_transformers.dart:70:11)
#17     _EventSinkWrapper.add (dart:async/stream_transformers.dart:17:11)
#18     _StringAdapterSink.add (dart:convert/string_conversion.dart:238:11)
#19     _StringAdapterSink.addSlice (dart:convert/string_conversion.dart:243:7)
#20     _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:314:20)
#21     _ErrorHandlingAsciiDecoderSink.addSlice (dart:convert/ascii.dart:254:17)
#22     _ErrorHandlingAsciiDecoderSink.add (dart:convert/ascii.dart:240:5)
#23     _ConverterStreamEventSink.add (dart:convert/chunked_conversion.dart:74:18)
#24     _SinkTransformerStreamSubscription._handleData (dart:async/stream_transformers.dart:122:24)
#25     _rootRunUnary (dart:async/zone.dart:1192:38)
#26     _CustomZone.runUnary (dart:async/zone.dart:1085:19)
#27     _CustomZone.runUnaryGuarded (dart:async/zone.dart:987:7)
#28     _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:339:11)
#29     _BufferingStreamSubscription._add (dart:async/stream_impl.dart:266:7)
#30     _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:779:19)
#31     _StreamController._add (dart:async/stream_controller.dart:655:7)
#32     _StreamController.add (dart:async/stream_controller.dart:597:5)
#33     _Socket._onData (dart:io-patch/socket_patch.dart:1982:41)
#34     _rootRunUnary (dart:async/zone.dart:1196:13)
#35     _CustomZone.runUnary (dart:async/zone.dart:1085:19)
#36     _CustomZone.runUnaryGuarded (dart:async/zone.dart:987:7)
#37     _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:339:11)
#38     _BufferingStreamSubscription._add (dart:async/stream_impl.dart:266:7)
#39     _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:779:19)
#40     _StreamController._add (dart:async/stream_controller.dart:655:7)
#41     _StreamController.add (dart:async/stream_controller.dart:597:5)
#42     new _RawSocket.<anonymous closure> (dart:io-patch/socket_patch.dart:1527:33)
#43     _NativeSocket.issueReadEvent.issue (dart:io-patch/socket_patch.dart:1019:14)
#44     _microtaskLoop (dart:async/schedule_microtask.dart:43:21)
#45     _startMicrotaskLoop (dart:async/schedule_microtask.dart:52:5)
#46     _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13)
#47     _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:169:5)



[   +7 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward --list
[   +8 ms] Exit code 0 from: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward --list
[        ] emulator-5554 tcp:54555 tcp:44376
           emulator-5554 tcp:54691 tcp:44486
[   +1 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward --remove tcp:54555
[   +8 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward --remove tcp:54691
[   +9 ms] DevFS: Deleting filesystem on the device
(file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/)
[   +1 ms] Sending to VM service: _deleteDevFS({fsName: test_messaging})
[   +8 ms] Result: {type: Success}
[        ] DevFS: Deleted filesystem on the device
(file:///data/user/0/com.example.test_messaging/code_cache/test_messagingHFQJWN/test_messaging/)
[   +1 ms] executing: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward --list
[   +7 ms] Exit code 0 from: /Users/mac/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward --list
[   +1 ms] "flutter run" took 204 683ms.`

and then the app crashes

this is a very important feature in my app. Your help will be ver valuable
thx

image

3 instances of main() in vs code

In My Project, this happens because of this line,
firebaseMessaging.configure( onBackgroundMessage: Platform.isIOS ? null : myBackgroundMessageHandler, );

When I remove that line everything works normally, But my app requires background message handler as well.

Was this page helpful?
0 / 5 - 0 ratings