Skip to content

[firebase_messaging] Got some errors after adding onBackgroundMessage handler. #1641

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
koteezy opened this issue Dec 13, 2019 · 9 comments
Closed
Labels
closed-by-bot plugin: messaging Stale Issue with no recent activity type: bug Something isn't working

Comments

@koteezy
Copy link

koteezy commented Dec 13, 2019

Describe the bug
If I try to use in the application onBackgroundMessage, after a few saves, and hot reload, I start to get errors like these, and it becomes simply impossible to work further. In addition, if you use onBackgroundMessage, the inappwebview stops working normaly.
Screenshot

(Without BGhandler, there's no items in call stack. No even one, and everything works fine)

I'll trying add initialization on top of all, trying inside initState, inside build context, the result is always the same - if BGhandler specified, then i got these errors.

To Reproduce
1 - Install plugin
2 - Add Application.java class, and specify it in AndroidManifest.xml
3 - Add background message handler to your app.

Versions

  firebase_messaging: ^6.0.9
  gradle:3.5.3

Flutter doctor

[✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Mac OS X 10.15.1 19B88, locale ru-RU)
    • Flutter version 1.12.13+hotfix.5 at /Users/uebanchik/development/flutter
    • Framework revision 27321ebbad (3 days ago), 2019-12-10 18:15:01 -0800
    • Engine revision 2994f7e1e6
    • Dart version 2.7.0

 
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
    • Android SDK at /Users/uebanchik/Library/Android/sdk
    • Android NDK location not configured (optional; useful for native profiling support)
    • Platform android-29, build-tools 29.0.2
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
    • All Android licenses accepted.

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

[✓] Android Studio (version 3.5)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 42.0.1
    • Dart plugin version 191.8593
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)

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

[✓] Connected device (1 available)
    • Nexus 5 • 0567efb40047d301 • android-arm • Android 6.0.1 (API 23)

• No issues found!
@koteezy koteezy added the type: bug Something isn't working label Dec 13, 2019
@NateNjuguna
Copy link

NateNjuguna commented Dec 15, 2019

Seems like there's a conflict with existing plugins and the proposed Application.java from the docs. See #1613 or #1591 for a possible fix

@koteezy
Copy link
Author

koteezy commented Dec 16, 2019

Ok, i will check

@koteezy
Copy link
Author

koteezy commented Dec 17, 2019

Okay, i created new project, without any plugin ( except firebase_messaging ), and this error still here.

@iapicca
Copy link

iapicca commented Dec 19, 2019

Hi @koteezy
can you please provide your flutter run --verbose?
Thank you

@iapicca iapicca added the blocked: customer-response Waiting for customer response, e.g. more information was requested. label Dec 19, 2019
@koteezy
Copy link
Author

koteezy commented Dec 19, 2019

Hello @iapicca !

Android manifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.push_test">
  <!-- io.flutter.app.FlutterApplication is an android.app.Application that
       calls FlutterMain.startInitialization(this); in its onCreate method.
       In most cases you can leave this as-is, but you if you want to provide
       additional functionality it is fine to subclass or reimplement
       FlutterApplication and put your custom class here. -->
  <application
      android:name=".Application"
      android:label="push_test"
      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">
          <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>
      <!-- Don't delete the meta-data below.
           This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
      <meta-data
          android:name="flutterEmbedding"
          android:value="2" />
  </application>
</manifest>

Verbose logs
[  +43 ms] executing: [/Users/uebanchik/development/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[  +54 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] 27321ebbad34b0a3fafe99fac037102196d655ff
[   +1 ms] executing: [/Users/uebanchik/development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[  +15 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[        ] v1.12.13+hotfix.5-0-g27321ebba
[  +10 ms] executing: [/Users/uebanchik/development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[  +14 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/stable
[        ] executing: [/Users/uebanchik/development/flutter/] git ls-remote --get-url origin
[  +13 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[  +74 ms] executing: [/Users/uebanchik/development/flutter/] git rev-parse --abbrev-ref HEAD
[  +15 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] stable
[   +8 ms] executing: sw_vers -productName
[  +21 ms] Exit code 0 from: sw_vers -productName
[        ] Mac OS X
[        ] executing: sw_vers -productVersion
[  +21 ms] Exit code 0 from: sw_vers -productVersion
[        ] 10.15.1
[        ] executing: sw_vers -buildVersion
[  +19 ms] Exit code 0 from: sw_vers -buildVersion
[        ] 19B88
[  +67 ms] executing: /usr/bin/xcode-select --print-path
[  +15 ms] Exit code 0 from: /usr/bin/xcode-select --print-path
[        ] /Applications/Xcode.app/Contents/Developer
[   +5 ms] executing: /usr/bin/xcodebuild -version
[ +859 ms] Exit code 0 from: /usr/bin/xcodebuild -version
[   +4 ms] Xcode 11.2.1
         Build version 11B500
[ +229 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb devices -l
[  +14 ms] Exit code 0 from: /Users/uebanchik/Library/Android/sdk/platform-tools/adb devices -l
[        ] List of devices attached
         0567efb40047d301       device usb:336592896X product:hammerhead model:Nexus_5 device:hammerhead transport_id:1
[  +29 ms] executing: /Users/uebanchik/development/flutter/bin/cache/artifacts/libimobiledevice/idevice_id -h
[  +89 ms] /usr/bin/xcrun simctl list --json devices
[ +213 ms] /Users/uebanchik/Library/Android/sdk/platform-tools/adb -s 0567efb40047d301 shell getprop
[ +120 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[  +10 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +5 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.
[ +124 ms] Found plugin firebase_messaging at /Users/uebanchik/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-6.0.9/
[ +114 ms] Found plugin firebase_messaging at /Users/uebanchik/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-6.0.9/
[ +166 ms] Generating /Users/uebanchik/Desktop/Development/Flutter/push_test/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[ +157 ms] ro.hardware = hammerhead
[        ] ro.build.characteristics = nosdcard
[  +31 ms] executing: [/Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Runner.xcodeproj -target Runner -showBuildSettings
[        ] executing: [/Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+8872 ms] Build settings for action build and target Runner:
             ACTION = build
             AD_HOC_CODE_SIGNING_ALLOWED = NO
             ALTERNATE_GROUP = staff
             ALTERNATE_MODE = u+w,go-w,a+rX
             ALTERNATE_OWNER = uebanchik
             ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
             ALWAYS_SEARCH_USER_PATHS = NO
             ALWAYS_USE_SEPARATE_HEADERMAPS = NO
             APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
             APPLE_INTERNAL_DIR = /AppleInternal
             APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
             APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
             APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
             APPLICATION_EXTENSION_API_ONLY = NO
             APPLY_RULES_IN_COPY_FILES = NO
             APPLY_RULES_IN_COPY_HEADERS = NO
             ARCHS = armv7 arm64
             ARCHS_STANDARD = armv7 arm64
             ARCHS_STANDARD_32_64_BIT = armv7 arm64
             ARCHS_STANDARD_32_BIT = armv7
             ARCHS_STANDARD_64_BIT = arm64
             ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
             ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
             ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
             AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
             BITCODE_GENERATION_MODE = marker
             BUILD_ACTIVE_RESOURCES_ONLY = NO
             BUILD_COMPONENTS = headers build
             BUILD_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios
             BUILD_LIBRARY_FOR_DISTRIBUTION = NO
             BUILD_ROOT = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios
             BUILD_STYLE = 
             BUILD_VARIANTS = normal
             BUILT_PRODUCTS_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Release-iphoneos
             CACHE_ROOT = /var/folders/0t/mlv5gcyj0_96j2zryr4h2ldr0000gn/C/com.apple.DeveloperTools/11.2.1-11B500/Xcode
             CCHROOT = /var/folders/0t/mlv5gcyj0_96j2zryr4h2ldr0000gn/C/com.apple.DeveloperTools/11.2.1-11B500/Xcode
             CHMOD = /bin/chmod
             CHOWN = /usr/sbin/chown
             CLANG_ANALYZER_NONNULL = YES
             CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
             CLANG_CXX_LIBRARY = libc++
             CLANG_ENABLE_MODULES = YES
             CLANG_ENABLE_OBJC_ARC = YES
             CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
             CLANG_WARN_BOOL_CONVERSION = YES
             CLANG_WARN_COMMA = YES
             CLANG_WARN_CONSTANT_CONVERSION = YES
             CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
             CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
             CLANG_WARN_EMPTY_BODY = YES
             CLANG_WARN_ENUM_CONVERSION = YES
             CLANG_WARN_INFINITE_RECURSION = YES
             CLANG_WARN_INT_CONVERSION = YES
             CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
             CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
             CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
             CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
             CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
             CLANG_WARN_STRICT_PROTOTYPES = YES
             CLANG_WARN_SUSPICIOUS_MOVE = YES
             CLANG_WARN_UNREACHABLE_CODE = YES
             CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
             CLASS_FILE_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
             CLEAN_PRECOMPS = YES
             CLONE_HEADERS = NO
             CODESIGNING_FOLDER_PATH = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Release-iphoneos/Runner.app
             CODE_SIGNING_ALLOWED = YES
             CODE_SIGNING_REQUIRED = YES
             CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
             CODE_SIGN_IDENTITY = iPhone Developer
             CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
             COLOR_DIAGNOSTICS = NO
             COMBINE_HIDPI_IMAGES = NO
             COMPILER_INDEX_STORE_ENABLE = Default
             COMPOSITE_SDK_DIRS = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/CompositeSDKs
             COMPRESS_PNG_FILES = YES
             CONFIGURATION = Release
             CONFIGURATION_BUILD_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Release-iphoneos
             CONFIGURATION_TEMP_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos
             CONTENTS_FOLDER_PATH = Runner.app
             COPYING_PRESERVES_HFS_DATA = NO
             COPY_HEADERS_RUN_UNIFDEF = NO
             COPY_PHASE_STRIP = NO
             COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
             CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
             CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
             CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk
             CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.2
             CP = /bin/cp
             CREATE_INFOPLIST_SECTION_IN_BINARY = NO
             CURRENT_ARCH = arm64
             CURRENT_PROJECT_VERSION = 1
             CURRENT_VARIANT = normal
             DEAD_CODE_STRIPPING = YES
             DEBUGGING_SYMBOLS = YES
             DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
             DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
             DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
             DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
             DEFINES_MODULE = NO
             DEPLOYMENT_LOCATION = NO
             DEPLOYMENT_POSTPROCESSING = NO
             DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
             DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
             DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
             DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
             DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
             DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
             DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2
             DERIVED_FILES_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
             DERIVED_FILE_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
             DERIVED_SOURCES_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
             DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
             DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
             DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
             DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
             DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
             DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
             DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
             DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
             DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
             DEVELOPMENT_LANGUAGE = en
             DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
             DONT_GENERATE_INFOPLIST_FILE = NO
             DO_HEADER_SCANNING_IN_JAM = NO
             DSTROOT = /tmp/Runner.dst
             DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
             DWARF_DSYM_FILE_NAME = Runner.app.dSYM
             DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
             DWARF_DSYM_FOLDER_PATH = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Release-iphoneos
             EFFECTIVE_PLATFORM_NAME = -iphoneos
             EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
             EMBEDDED_PROFILE_NAME = embedded.mobileprovision
             EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
             ENABLE_BITCODE = NO
             ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
             ENABLE_HARDENED_RUNTIME = NO
             ENABLE_HEADER_DEPENDENCIES = YES
             ENABLE_NS_ASSERTIONS = NO
             ENABLE_ON_DEMAND_RESOURCES = YES
             ENABLE_STRICT_OBJC_MSGSEND = YES
             ENABLE_TESTABILITY = NO
             ENTITLEMENTS_ALLOWED = YES
             ENTITLEMENTS_DESTINATION = Signature
             ENTITLEMENTS_REQUIRED = YES
             EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
             EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
             EXECUTABLES_FOLDER_PATH = Runner.app/Executables
             EXECUTABLE_FOLDER_PATH = Runner.app
             EXECUTABLE_NAME = Runner
             EXECUTABLE_PATH = Runner.app/Runner
             EXPANDED_CODE_SIGN_IDENTITY = 
             EXPANDED_CODE_SIGN_IDENTITY_NAME = 
             EXPANDED_PROVISIONING_PROFILE = 
             FILE_LIST = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
             FIXED_FILES_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
             FLUTTER_APPLICATION_PATH = /Users/uebanchik/Desktop/Development/Flutter/push_test
             FLUTTER_BUILD_DIR = build
             FLUTTER_BUILD_NAME = 1.0.0
             FLUTTER_BUILD_NUMBER = 1
             FLUTTER_FRAMEWORK_DIR = /Users/uebanchik/development/flutter/bin/cache/artifacts/engine/ios
             FLUTTER_ROOT = /Users/uebanchik/development/flutter
             FLUTTER_TARGET = lib/main.dart
             FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
             FRAMEWORK_FLAG_PREFIX = -framework
             FRAMEWORK_SEARCH_PATHS =  /Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Flutter
             FRAMEWORK_VERSION = A
             FULL_PRODUCT_NAME = Runner.app
             GCC3_VERSION = 3.3
             GCC_C_LANGUAGE_STANDARD = gnu99
             GCC_INLINES_ARE_PRIVATE_EXTERN = YES
             GCC_NO_COMMON_BLOCKS = YES
             GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
             GCC_SYMBOLS_PRIVATE_EXTERN = YES
             GCC_THUMB_SUPPORT = YES
             GCC_TREAT_WARNINGS_AS_ERRORS = NO
             GCC_VERSION = com.apple.compilers.llvm.clang.1_0
             GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
             GCC_WARN_64_TO_32_BIT_CONVERSION = YES
             GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
             GCC_WARN_UNDECLARED_SELECTOR = YES
             GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
             GCC_WARN_UNUSED_FUNCTION = YES
             GCC_WARN_UNUSED_VARIABLE = YES
             GENERATE_MASTER_OBJECT_FILE = NO
             GENERATE_PKGINFO_FILE = YES
             GENERATE_PROFILING_CODE = NO
             GENERATE_TEXT_BASED_STUBS = NO
             GID = 20
             GROUP = staff
             HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
             HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
             HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
             HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
             HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
             HEADERMAP_USES_VFS = NO
             HIDE_BITCODE_SYMBOLS = YES
             HOME = /Users/uebanchik
             ICONV = /usr/bin/iconv
             INFOPLIST_EXPAND_BUILD_SETTINGS = YES
             INFOPLIST_FILE = Runner/Info.plist
             INFOPLIST_OUTPUT_FORMAT = binary
             INFOPLIST_PATH = Runner.app/Info.plist
             INFOPLIST_PREPROCESS = NO
             INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings
             INLINE_PRIVATE_FRAMEWORKS = NO
             INSTALLHDRS_COPY_PHASE = NO
             INSTALLHDRS_SCRIPT_PHASE = NO
             INSTALL_DIR = /tmp/Runner.dst/Applications
             INSTALL_GROUP = staff
             INSTALL_MODE_FLAG = u+w,go-w,a+rX
             INSTALL_OWNER = uebanchik
             INSTALL_PATH = /Applications
             INSTALL_ROOT = /tmp/Runner.dst
             IPHONEOS_DEPLOYMENT_TARGET = 8.0
             JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
             JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
             JAVA_ARCHIVE_CLASSES = YES
             JAVA_ARCHIVE_TYPE = JAR
             JAVA_COMPILER = /usr/bin/javac
             JAVA_FOLDER_PATH = Runner.app/Java
             JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
             JAVA_JAR_FLAGS = cv
             JAVA_SOURCE_SUBDIR = .
             JAVA_USE_DEPENDENCIES = YES
             JAVA_ZIP_FLAGS = -urg
             JIKES_DEFAULT_FLAGS = +E +OLDCSO
             KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
             KEEP_PRIVATE_EXTERNS = NO
             LD_DEPENDENCY_INFO_FILE = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
             LD_GENERATE_MAP_FILE = NO
             LD_MAP_FILE_PATH = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
             LD_NO_PIE = NO
             LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
             LD_RUNPATH_SEARCH_PATHS =  @executable_path/Frameworks
             LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
             LEX = lex
             LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
             LIBRARY_FLAG_NOSPACE = YES
             LIBRARY_FLAG_PREFIX = -l
             LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
             LIBRARY_SEARCH_PATHS =  /Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Flutter
             LINKER_DISPLAYS_MANGLED_NAMES = NO
             LINK_FILE_LIST_normal_arm64 = 
             LINK_FILE_LIST_normal_armv7 = 
             LINK_WITH_STANDARD_LIBRARIES = YES
             LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
             LLVM_TARGET_TRIPLE_VENDOR = apple
             LOCALIZABLE_CONTENT_DIR = 
             LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
             LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
             LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
             LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
             LOCAL_APPS_DIR = /Applications
             LOCAL_DEVELOPER_DIR = /Library/Developer
             LOCAL_LIBRARY_DIR = /Library
             LOCROOT = 
             LOCSYMROOT = 
             MACH_O_TYPE = mh_execute
             MAC_OS_X_PRODUCT_BUILD_VERSION = 19B88
             MAC_OS_X_VERSION_ACTUAL = 101501
             MAC_OS_X_VERSION_MAJOR = 101500
             MAC_OS_X_VERSION_MINOR = 1501
             METAL_LIBRARY_FILE_BASE = default
             METAL_LIBRARY_OUTPUT_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Release-iphoneos/Runner.app
             MODULES_FOLDER_PATH = Runner.app/Modules
             MODULE_CACHE_DIR = /Users/uebanchik/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
             MTL_ENABLE_DEBUG_INFO = NO
             NATIVE_ARCH = armv7
             NATIVE_ARCH_32_BIT = i386
             NATIVE_ARCH_64_BIT = x86_64
             NATIVE_ARCH_ACTUAL = x86_64
             NO_COMMON = YES
             OBJECT_FILE_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
             OBJECT_FILE_DIR_normal = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
             OBJROOT = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios
             ONLY_ACTIVE_ARCH = NO
             OS = MACOS
             OSAC = /usr/bin/osacompile
             PACKAGE_TYPE = com.apple.package-type.wrapper.application
             PASCAL_STRINGS = YES
             PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/uebanchik/development/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/uebanchik/development/flutter/bin
             PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
             PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
             PFE_FILE_C_DIALECTS = objective-c
             PKGINFO_FILE_PATH = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
             PKGINFO_PATH = Runner.app/PkgInfo
             PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
             PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
             PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
             PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
             PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
             PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
             PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
             PLATFORM_DISPLAY_NAME = iOS
             PLATFORM_NAME = iphoneos
             PLATFORM_PREFERRED_ARCH = arm64
             PLATFORM_PRODUCT_BUILD_VERSION = 17B102
             PLIST_FILE_OUTPUT_FORMAT = binary
             PLUGINS_FOLDER_PATH = Runner.app/PlugIns
             PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
             PRECOMP_DESTINATION_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
             PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
             PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
             PRODUCT_BUNDLE_IDENTIFIER = com.example.pushTest
             PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
             PRODUCT_MODULE_NAME = Runner
             PRODUCT_NAME = Runner
             PRODUCT_SETTINGS_PATH = /Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Runner/Info.plist
             PRODUCT_TYPE = com.apple.product-type.application
             PROFILING_CODE = NO
             PROJECT = Runner
             PROJECT_DERIVED_FILE_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/DerivedSources
             PROJECT_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/ios
             PROJECT_FILE_PATH = /Users/uebanchik/Desktop/Development/Flutter/push_test/ios/Runner.xcodeproj
             PROJECT_NAME = Runner
             PROJECT_TEMP_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build
             PROJECT_TEMP_ROOT = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios
             PROVISIONING_PROFILE_REQUIRED = YES
             PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
             RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
             REMOVE_CVS_FROM_RESOURCES = YES
             REMOVE_GIT_FROM_RESOURCES = YES
             REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
             REMOVE_HG_FROM_RESOURCES = YES
             REMOVE_SVN_FROM_RESOURCES = YES
             RESOURCE_RULES_REQUIRED = YES
             REZ_COLLECTOR_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
             REZ_OBJECTS_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
             SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
             SCRIPTS_FOLDER_PATH = Runner.app/Scripts
             SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
             SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
             SDK_DIR_iphoneos13_2 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
             SDK_NAME = iphoneos13.2
             SDK_NAMES = iphoneos13.2
             SDK_PRODUCT_BUILD_VERSION = 17B102
             SDK_VERSION = 13.2
             SDK_VERSION_ACTUAL = 130200
             SDK_VERSION_MAJOR = 130000
             SDK_VERSION_MINOR = 200
             SED = /usr/bin/sed
             SEPARATE_STRIP = NO
             SEPARATE_SYMBOL_EDIT = NO
             SET_DIR_MODE_OWNER_GROUP = YES
             SET_FILE_MODE_OWNER_GROUP = NO
             SHALLOW_BUNDLE = YES
             SHARED_DERIVED_FILE_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Release-iphoneos/DerivedSources
             SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
             SHARED_PRECOMPS_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/SharedPrecompiledHeaders
             SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
             SKIP_INSTALL = NO
             SOURCE_ROOT = /Users/uebanchik/Desktop/Development/Flutter/push_test/ios
             SRCROOT = /Users/uebanchik/Desktop/Development/Flutter/push_test/ios
             STRINGS_FILE_OUTPUT_ENCODING = binary
             STRIP_BITCODE_FROM_COPIED_FILES = YES
             STRIP_INSTALLED_PRODUCT = YES
             STRIP_STYLE = all
             STRIP_SWIFT_SYMBOLS = YES
             SUPPORTED_DEVICE_FAMILIES = 1,2
             SUPPORTED_PLATFORMS = iphoneos
             SUPPORTS_MACCATALYST = NO
             SUPPORTS_TEXT_BASED_API = NO
             SWIFT_COMPILATION_MODE = wholemodule
             SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
             SWIFT_OPTIMIZATION_LEVEL = -O
             SWIFT_PLATFORM_TARGET_PREFIX = ios
             SWIFT_VERSION = 5.0
             SYMROOT = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios
             SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
             SYSTEM_APPS_DIR = /Applications
             SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
             SYSTEM_DEMOS_DIR = /Applications/Extras
             SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
             SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
             SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
             SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
             SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
             SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
             SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
             SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
             SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
             SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
             SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
             SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
             SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
             SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
             SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
             SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
             SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
             SYSTEM_LIBRARY_DIR = /System/Library
             TAPI_VERIFY_MODE = ErrorsOnly
             TARGETED_DEVICE_FAMILY = 1,2
             TARGETNAME = Runner
             TARGET_BUILD_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Release-iphoneos
             TARGET_NAME = Runner
             TARGET_TEMP_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build
             TEMP_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build
             TEMP_FILES_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build
             TEMP_FILE_DIR = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios/Runner.build/Release-iphoneos/Runner.build
             TEMP_ROOT = /Users/uebanchik/Desktop/Development/Flutter/push_test/build/ios
             TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
             TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
             UID = 501
             UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
             UNSTRIPPED_PRODUCT = NO
             USER = uebanchik
             USER_APPS_DIR = /Users/uebanchik/Applications
             USER_LIBRARY_DIR = /Users/uebanchik/Library
             USE_DYNAMIC_NO_PIC = YES
             USE_HEADERMAP = YES
             USE_HEADER_SYMLINKS = NO
             USE_LLVM_TARGET_TRIPLES = YES
             USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
             USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
             USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
             VALIDATE_PRODUCT = YES
             VALIDATE_WORKSPACE = NO
             VALID_ARCHS = arm64 arm64e armv7 armv7s
             VERBOSE_PBXCP = NO
             VERSIONING_SYSTEM = apple-generic
             VERSIONPLIST_PATH = Runner.app/version.plist
             VERSION_INFO_BUILDER = uebanchik
             VERSION_INFO_FILE = Runner_vers.c
             VERSION_INFO_STRING = "@(#)PROGRAM:Runner  PROJECT:Runner-1"
             WRAPPER_EXTENSION = app
             WRAPPER_NAME = Runner.app
             WRAPPER_SUFFIX = .app
             WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
             XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
             XCODE_PRODUCT_BUILD_VERSION = 11B500
             XCODE_VERSION_ACTUAL = 1121
             XCODE_VERSION_MAJOR = 1100
             XCODE_VERSION_MINOR = 1120
             XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
             YACC = yacc
             arch = arm64
             variant = normal
[ +491 ms] Launching lib/main.dart on Nexus 5 in debug mode...
[ +139 ms] executing: /Users/uebanchik/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/uebanchik/Desktop/Development/Flutter/push_test/build/app/outputs/apk/app.apk AndroidManifest.xml
[  +79 ms] Exit code 0 from: /Users/uebanchik/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/uebanchik/Desktop/Development/Flutter/push_test/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.push_test" (Raw: "com.example.push_test")
             A: platformBuildVersionCode=(type 0x10)0x1c
             A: platformBuildVersionName=(type 0x10)0x9
             E: uses-sdk (line=7)
               A: android:minSdkVersion(0x0101020c)=(type 0x10)0x11
               A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
             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.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
             E: application (line=25)
               A: android:label(0x01010001)="push_test" (Raw: "push_test")
               A: android:icon(0x01010002)=@0x7f080000
               A: android:name(0x01010003)="com.example.push_test.Application" (Raw: "com.example.push_test.Application")
               A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
               A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
               E: activity (line=31)
                 A: android:theme(0x01010000)=@0x7f0a0000
                 A: android:name(0x01010003)="com.example.push_test.MainActivity" (Raw: "com.example.push_test.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: intent-filter (line=38)
                   E: action (line=39)
                     A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                   E: category (line=41)
                     A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: intent-filter (line=43)
                   E: action (line=44)
                     A: android:name(0x01010003)="FLUTTER_NOTIFICATION_CLICK" (Raw: "FLUTTER_NOTIFICATION_CLICK")
                   E: category (line=46)
                     A: android:name(0x01010003)="android.intent.category.DEFAULT" (Raw: "android.intent.category.DEFAULT")
               E: meta-data (line=53)
                 A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                 A: android:value(0x01010024)=(type 0x10)0x2
               E: service (line=57)
                 A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
                 E: intent-filter (line=58)
                   E: action (line=59)
                     A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
               E: service (line=62)
                 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=66)
                   A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebasemessaging.FlutterFirebaseAppRegistrar" (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=69)
                   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: service (line=77)
                 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=80)
                   A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
                   E: action (line=81)
                     A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
               E: receiver (line=85)
                 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=89)
                   E: action (line=90)
                     A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
               E: provider (line=94)
                 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.push_test.firebaseinitprovider" (Raw: "com.example.push_test.firebaseinitprovider")
                 A: android:initOrder(0x0101001a)=(type 0x10)0x64
               E: activity (line=100)
                 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=105)
                 A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
                 A: android:value(0x01010024)=@0x7f060000
[  +75 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb -s 0567efb40047d301 shell -x logcat -v time -s flutter
[  +33 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb version
[ +173 ms] Android Debug Bridge version 1.0.41
         Version 29.0.5-5949299
         Installed as /Users/uebanchik/Library/Android/sdk/platform-tools/adb
[  +19 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb start-server
[ +117 ms] Building APK
[  +84 ms] Running Gradle task 'assembleDebug'...
[   +9 ms] gradle.properties already sets `android.enableR8`
[ +142 ms] Using gradle from /Users/uebanchik/Desktop/Development/Flutter/push_test/android/gradlew.
[+7683 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[  +27 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[        ] {"CFBundleName":"Android Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_PACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","WorkingDirectory":"$APP_PACKAGE\/Contents\/bin","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio3.5","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.home.path":"$APP_PACKAGE\/Contents"}},"LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-191.8026.42.35.6010548","CFBundleDevelopmentRegion":"English","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFBundleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"3.5","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.studio","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","CFBundleGetInfoString":"Android Studio 3.5, build AI-191.8026.42.35.6010548. Copyright JetBrains s.r.o., (c) 2000-2019"}
[   +5 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ +263 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)
[   +5 ms] executing: [/Users/uebanchik/Desktop/Development/Flutter/push_test/android/] /Users/uebanchik/Desktop/Development/Flutter/push_test/android/gradlew -Pverbose=true -Ptarget=/Users/uebanchik/Desktop/Development/Flutter/push_test/lib/main.dart -Ptrack-widget-creation=true -Pfilesystem-scheme=org-dartlang-root -Ptarget-platform=android-arm assembleDebug
[+7015 ms] > Task :app:compileFlutterBuildDebug
[        ] [  +41 ms] executing: [/Users/uebanchik/development/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [  +82 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[   +2 ms] [        ] 27321ebbad34b0a3fafe99fac037102196d655ff
[        ] [        ] executing: [/Users/uebanchik/development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[        ] [  +41 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[        ] [        ] v1.12.13+hotfix.5-0-g27321ebba
[        ] [  +16 ms] executing: [/Users/uebanchik/development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[        ] [  +16 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] [        ] origin/stable
[        ] [        ] executing: [/Users/uebanchik/development/flutter/] git ls-remote --get-url origin
[        ] [  +19 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] [        ] https://github.com/flutter/flutter.git
[        ] [ +312 ms] executing: [/Users/uebanchik/development/flutter/] git rev-parse --abbrev-ref HEAD
[        ] [  +48 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] [        ] stable
[        ] [  +78 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.
[   +1 ms] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [  +22 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.
[        ] [ +196 ms] Initializing file store
[   +2 ms] [  +17 ms] Done initializing file store
[+2413 ms] [+2798 ms] Skipping target: kernel_snapshot
[ +105 ms] [ +109 ms] debug_android_application: Starting due to {InvalidatedReason.outputMissing}
[ +298 ms] [ +336 ms] debug_android_application: Complete
[ +100 ms] [  +21 ms] Persisting file store
[        ] [  +14 ms] Done persisting file store
[        ] [   +7 ms] build succeeded.
[        ] [  +20 ms] "flutter assemble" took 3 691ms.
[ +108 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[        ] > Task :app:preBuild UP-TO-DATE
[   +1 ms] > Task :app:preDebugBuild UP-TO-DATE
[   +1 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
[ +186 ms] > Task :app:cleanMergeDebugAssets
[        ] > Task :app:mergeDebugShaders UP-TO-DATE
[        ] > Task :app:compileDebugShaders UP-TO-DATE
[        ] > 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
[ +493 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:compileDebugRenderscript NO-SOURCE
[        ] > Task :firebase_messaging:generateDebugResValues UP-TO-DATE
[        ] > Task :firebase_messaging:generateDebugResources UP-TO-DATE
[        ] > Task :firebase_messaging:packageDebugResources UP-TO-DATE
[  +98 ms] > 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
[ +100 ms] > Task :app:processDebugManifest UP-TO-DATE
[   +1 ms] > 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
[  +95 ms] > Task :firebase_messaging:javaPreCompileDebug UP-TO-DATE
[        ] > Task :firebase_messaging:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :firebase_messaging:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugKotlin UP-TO-DATE
[ +106 ms] > 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
[ +194 ms] > Task :app:mergeDebugJavaResource UP-TO-DATE
[ +200 ms] > Task :firebase_messaging:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[  +97 ms] > Task :app:multiDexListDebug UP-TO-DATE
[        ] > Task :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[        ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[ +102 ms] > Task :app:mergeDexDebug UP-TO-DATE
[        ] > 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
[  +94 ms] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[        ] Compatible side by side NDK version was not found.
[        ] > Task :app:packageDebug UP-TO-DATE
[        ] > Task :app:assembleDebug UP-TO-DATE
[        ] > Task :firebase_messaging:extractDebugAnnotations UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :firebase_messaging:mergeDebugConsumerProguardFiles UP-TO-DATE
[  +98 ms] > 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 11s
[   +1 ms] 58 actionable tasks: 4 executed, 54 up-to-date
[ +503 ms] Running Gradle task 'assembleDebug'... (completed in 20,6s)
[ +176 ms] calculateSha: LocalDirectory: '/Users/uebanchik/Desktop/Development/Flutter/push_test/build/app/outputs/apk'/app.apk
[ +159 ms] calculateSha: reading file took 156us
[+1660 ms] calculateSha: computing sha took 1658us
[   +7 ms] ✓ Built build/app/outputs/apk/debug/app-debug.apk.
[   +7 ms] executing: /Users/uebanchik/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/uebanchik/Desktop/Development/Flutter/push_test/build/app/outputs/apk/app.apk AndroidManifest.xml
[  +26 ms] Exit code 0 from: /Users/uebanchik/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/uebanchik/Desktop/Development/Flutter/push_test/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.push_test" (Raw: "com.example.push_test")
             A: platformBuildVersionCode=(type 0x10)0x1c
             A: platformBuildVersionName=(type 0x10)0x9
             E: uses-sdk (line=7)
               A: android:minSdkVersion(0x0101020c)=(type 0x10)0x11
               A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
             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.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
             E: application (line=25)
               A: android:label(0x01010001)="push_test" (Raw: "push_test")
               A: android:icon(0x01010002)=@0x7f080000
               A: android:name(0x01010003)="com.example.push_test.Application" (Raw: "com.example.push_test.Application")
               A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
               A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
               E: activity (line=31)
                 A: android:theme(0x01010000)=@0x7f0a0000
                 A: android:name(0x01010003)="com.example.push_test.MainActivity" (Raw: "com.example.push_test.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: intent-filter (line=38)
                   E: action (line=39)
                     A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                   E: category (line=41)
                     A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: intent-filter (line=43)
                   E: action (line=44)
                     A: android:name(0x01010003)="FLUTTER_NOTIFICATION_CLICK" (Raw: "FLUTTER_NOTIFICATION_CLICK")
                   E: category (line=46)
                     A: android:name(0x01010003)="android.intent.category.DEFAULT" (Raw: "android.intent.category.DEFAULT")
               E: meta-data (line=53)
                 A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                 A: android:value(0x01010024)=(type 0x10)0x2
               E: service (line=57)
                 A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
                 E: intent-filter (line=58)
                   E: action (line=59)
                     A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
               E: service (line=62)
                 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=66)
                   A: android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebasemessaging.FlutterFirebaseAppRegistrar" (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=69)
                   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: service (line=77)
                 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=80)
                   A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
                   E: action (line=81)
                     A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
               E: receiver (line=85)
                 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=89)
                   E: action (line=90)
                     A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
               E: provider (line=94)
                 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.push_test.firebaseinitprovider" (Raw: "com.example.push_test.firebaseinitprovider")
                 A: android:initOrder(0x0101001a)=(type 0x10)0x64
               E: activity (line=100)
                 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=105)
                 A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
                 A: android:value(0x01010024)=@0x7f060000
[   +4 ms] Stopping app 'app.apk' on Nexus 5.
[   +1 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb -s 0567efb40047d301 shell am force-stop com.example.push_test
[+1143 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb -s 0567efb40047d301 shell pm list packages com.example.push_test
[ +720 ms] package:com.example.push_test
[   +5 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb -s 0567efb40047d301 shell cat /data/local/tmp/sky.com.example.push_test.sha1
[  +26 ms] d53fc0d936c4ed7dc584bd000deaaf8fe464fa2b
[   +1 ms] Latest build already installed.
[        ] Nexus 5 startApp
[   +5 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb -s 0567efb40047d301 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.push_test/com.example.push_test.MainActivity
[ +953 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.push_test/.MainActivity (has extras) }
[        ] Waiting for observatory port to be available...
[ +676 ms] Observatory URL on device: http://127.0.0.1:43328/MJKFXvEDvKM=/
[   +3 ms] executing: /Users/uebanchik/Library/Android/sdk/platform-tools/adb -s 0567efb40047d301 forward tcp:0 tcp:43328
[  +11 ms] 52793
[        ] Forwarded host port 52793 to device port 43328 for Observatory
[  +11 ms] Connecting to service protocol: http://127.0.0.1:52793/MJKFXvEDvKM=/
[ +743 ms] I/flutter ( 5872): init!!!!
[  +71 ms] Successfully connected to service protocol: http://127.0.0.1:52793/MJKFXvEDvKM=/
[   +8 ms] Sending to VM service: getVM({})
[  +12 ms] Result: {type: VM, name: vm, architectureBits: 32, hostCPU: Qualcomm MSM 8974 HAMMERHEAD (Flattened Device Tree), operatingSystem: android, targetCPU: arm, version: 2.7.0 (Mon Dec 2 20:10:59 2019 +0100) on "android_arm", _profilerMode: VM, _nativeZoneMemo...
[  +37 ms] Sending to VM service: getIsolate({isolateId: isolates/143270426230339})
[   +2 ms] Sending to VM service: getIsolate({isolateId: isolates/2178107674822999})
[   +9 ms] Sending to VM service: _flutter.listViews({})
[  +21 ms] Result: {type: Isolate, id: isolates/143270426230339, name: main, number: 143270426230339, _originNumber: 143270426230339, startTime: 1576792418663, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis: 8...
[   +7 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xb4ca2090, isolate: {type: @Isolate, fixedId: true, id: isolates/2178107674822999, name: main.dart$main-2178107674822999, number: 2178107674822999}}]}
[  +15 ms] DevFS: Creating new filesystem on the device (null)
[   +1 ms] Sending to VM service: _createDevFS({fsName: push_test})
[  +78 ms] Result: {type: Isolate, id: isolates/2178107674822999, name: main, number: 2178107674822999, _originNumber: 2178107674822999, startTime: 1576792417297, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis...
[  +76 ms] Result: {type: FileSystem, name: push_test, uri: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/}
[        ] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/)
[   +5 ms] Updating assets
[ +272 ms] Syncing files to device Nexus 5...
[   +5 ms] Scanning asset files
[  +10 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[  +27 ms] /Users/uebanchik/development/flutter/bin/cache/dart-sdk/bin/dart /Users/uebanchik/development/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/uebanchik/development/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/0t/mlv5gcyj0_96j2zryr4h2ldr0000gn/T/flutter_tool.G8Ny7x/app.dill --packages /Users/uebanchik/Desktop/Development/Flutter/push_test/.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
[  +14 ms] <- compile package:push_test/main.dart
[+1710 ms] I/flutter ( 5872): ez3sNbKAIXg:APA91bGELkLyXVJ_l4Ibsp0vBx4zDd2JQwmsvI8nTKGhHWeB8zBL1rhsqNtUy2p_KDcWDciPGekVl0CCLTwRBK6Qwz35sINrYpmK8sPECEGkkdYQ1KSZefgoCgrmG649xLZzdRtggXgr
[+10100 ms] Updating files
[ +293 ms] DevFS: Sync finished
[   +2 ms] Syncing files to device Nexus 5... (completed in 12 161ms, longer than expected)
[   +1 ms] Synced 0.9MB.
[   +2 ms] Sending to VM service: _flutter.listViews({})
[   +6 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x9ed45310, isolate: {type: @Isolate, fixedId: true, id: isolates/143270426230339, name: main.dart$main-143270426230339, number: 143270426230339}}, {type: FlutterView, id: _flutterView/0xb4ca2090, isolate: {type: @Isolate, fixedId: true, id: isolates/2178107674822999, name: main.dart$main-2178107674822999, number: 2178107674822999}}]}
[        ] <- accept
[        ] Connected to _flutterView/0x9ed45310.
[        ] Connected to _flutterView/0xb4ca2090.
[   +2 ms] 🔥  To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[   +1 ms] An Observatory debugger and profiler on Nexus 5 is available at: http://127.0.0.1:52793/MJKFXvEDvKM=/
[        ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q".
[+31399 ms] Performing hot restart...
[  +24 ms] Scanned through 453 files in 17ms
[        ] Syncing files to device Nexus 5...
[        ] Scanning asset files
[   +1 ms] <- reset
[        ] Compiling dart to kernel with 1 updated files
[   +3 ms] <- recompile package:push_test/main.dart 767a6d31-81d7-4d8d-9bbd-19472a0fb7b5
[        ] <- 767a6d31-81d7-4d8d-9bbd-19472a0fb7b5
[ +121 ms] Updating files
[+1620 ms] DevFS: Sync finished
[        ] Syncing files to device Nexus 5... (completed in 1 748ms)
[        ] Synced 18.2MB.
[   +1 ms] <- accept
[        ] Sending to VM service: getIsolate({isolateId: isolates/143270426230339})
[   +1 ms] Sending to VM service: getIsolate({isolateId: isolates/2178107674822999})
[  +33 ms] Result: {type: Isolate, id: isolates/143270426230339, name: main, number: 143270426230339, _originNumber: 143270426230339, startTime: 1576792418662, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis: 4...
[  +14 ms] Result: {type: Isolate, id: isolates/2178107674822999, name: main, number: 2178107674822999, _originNumber: 2178107674822999, startTime: 1576792417296, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 4, avgCollectionPeriodMillis...
[  +18 ms] Sending to VM service: _flutter.runInView({viewId: _flutterView/0xb4ca2090, mainScript: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/lib/main.dart.dill, packagesFile: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/.packages, assetDirectory: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/build/flutter_assets})
[   +6 ms] Sending to VM service: _flutter.runInView({viewId: _flutterView/0x9ed45310, mainScript: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/lib/main.dart.dill, packagesFile: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/.packages, assetDirectory: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/build/flutter_assets})
[ +894 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792464661}}
[   +1 ms] Sending to VM service: getIsolate({isolateId: isolates/3847779088285351})
[   +3 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792464674, extensionRPC: ext.ui.window.scheduleFrame}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateExit, isolate: {type: @Isolate, id: isolates/2178107674822999, name: main, number: 2178107674822999}, timestamp: 1576792464788}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateRunnable, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465045}}
[        ] Result: {type: Success, view: {type: FlutterView, id: _flutterView/0xb4ca2090, isolate: {type: @Isolate, fixedId: true, id: isolates/3847779088285351, name: main.dart$main-3847779088285351, number: 3847779088285351}}}
[   +6 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465075}}
[        ] Sending to VM service: getIsolate({isolateId: isolates/1140881711411407})
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465087, extensionRPC: ext.ui.window.scheduleFrame}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateExit, isolate: {type: @Isolate, id: isolates/143270426230339, name: main, number: 143270426230339}, timestamp: 1576792465247}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465453, extensionRPC: ext.flutter.reassemble}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465453, extensionRPC: ext.flutter.exit}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465453, extensionRPC: ext.flutter.saveCompilationTrace}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465454, extensionRPC: ext.flutter.platformOverride}}
[   +1 ms] Isolate is runnable.
[        ] Isolate is runnable.
[        ] Sending to VM service: _flutter.listViews({})
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465456, extensionRPC: ext.flutter.evict}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465457, extensionRPC: ext.flutter.timeDilation}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465460, extensionRPC: ext.flutter.debugPaint}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465460, extensionRPC: ext.flutter.debugPaintBaselinesEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465460, extensionRPC: ext.flutter.repaintRainbow}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465460, extensionRPC: ext.flutter.debugCheckElevationsEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465460, extensionRPC: ext.flutter.debugDumpLayerTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.debugDumpRenderTree}}
[   +2 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.debugDumpSemanticsTreeInTraversalOrder}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.debugDumpApp}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.showPerformanceOverlay}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.didSendFirstFrameEvent}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.didSendFirstFrameRasterizedEvent}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465461, extensionRPC: ext.flutter.profileWidgetBuilds}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465467, extensionRPC: ext.flutter.debugAllowBanner}}
[   +4 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465467, extensionRPC: ext.flutter.debugWidgetInspector}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465484, extensionRPC: ext.flutter.inspector.structuredErrors}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465484, extensionRPC: ext.flutter.inspector.show}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465485, extensionRPC: ext.flutter.inspector.trackRebuildDirtyWidgets}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465486, extensionRPC: ext.flutter.inspector.trackRepaintWidgets}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465487, extensionRPC: ext.flutter.inspector.disposeAllGroups}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465488, extensionRPC: ext.flutter.inspector.disposeGroup}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465488, extensionRPC: ext.flutter.inspector.isWidgetTreeReady}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465489, extensionRPC: ext.flutter.inspector.disposeId}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465490, extensionRPC: ext.flutter.inspector.setPubRootDirectories}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465491, extensionRPC: ext.flutter.inspector.setSelectionById}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465491, extensionRPC: ext.flutter.inspector.getParentChain}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465491, extensionRPC: ext.flutter.inspector.getProperties}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465492, extensionRPC: ext.flutter.inspector.getChildren}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465492, extensionRPC: ext.flutter.inspector.getChildrenSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465492, extensionRPC: ext.flutter.inspector.getChildrenDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465493, extensionRPC: ext.flutter.inspector.getRootWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465493, extensionRPC: ext.flutter.inspector.getRootRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465493, extensionRPC: ext.flutter.inspector.getRootWidgetSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465494, extensionRPC: ext.flutter.inspector.getDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465494, extensionRPC: ext.flutter.inspector.getSelectedRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465494, extensionRPC: ext.flutter.inspector.getSelectedWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465494, extensionRPC: ext.flutter.inspector.getSelectedSummaryWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465495, extensionRPC: ext.flutter.inspector.isWidgetCreationTracked}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351}, timestamp: 1576792465495, extensionRPC: ext.flutter.inspector.screenshot}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateRunnable, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465502}}
[        ] Result: {type: Success, view: {type: FlutterView, id: _flutterView/0x9ed45310, isolate: {type: @Isolate, fixedId: true, id: isolates/1140881711411407, name: main.dart$main-1140881711411407, number: 1140881711411407}}}
[        ] Sending to VM service: _flutter.listViews({})
[   +1 ms] Isolate is runnable.
[        ] Isolate is runnable.
[   +8 ms] Result: {type: Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351, _originNumber: 3847779088285351, startTime: 1576792464653, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis...
[  +42 ms] Result: {type: Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407, _originNumber: 1140881711411407, startTime: 1576792465066, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis...
[  +30 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x9ed45310, isolate: {type: @Isolate, fixedId: true, id: isolates/1140881711411407, name: main.dart$main-1140881711411407, number: 1140881711411407}}, {type: FlutterView, id: _flutterView/0xb4ca2090, isolate: {type: @Isolate, fixedId: true, id: isolates/3847779088285351, name: main.dart$main-3847779088285351, number: 3847779088285351}}]}
[        ] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x9ed45310, isolate: {type: @Isolate, fixedId: true, id: isolates/1140881711411407, name: main.dart$main-1140881711411407, number: 1140881711411407}}, {type: FlutterView, id: _flutterView/0xb4ca2090, isolate: {type: @Isolate, fixedId: true, id: isolates/3847779088285351, name: main.dart$main-3847779088285351, number: 3847779088285351}}]}
[        ] Hot restart performed in 2 875ms.
[   +8 ms] Performing hot restart... (completed in 2 888ms, longer than expected)
[        ] Restarted application in 2 892ms.
[   +5 ms] I/flutter ( 5872): init!!!!#First reload
[  +94 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate, id: isolates/2208336437386759, name: main, number: 2208336437386759}, timestamp: 1576792465732}}
[        ] Sending to VM service: getIsolate({isolateId: isolates/2208336437386759})
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/2208336437386759, name: main, number: 2208336437386759}, timestamp: 1576792465747, extensionRPC: ext.ui.window.scheduleFrame}}
[   +6 ms] Result: {type: Isolate, id: isolates/2208336437386759, name: main, number: 2208336437386759, _originNumber: 2208336437386759, startTime: 1576792465723, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis...
[  +66 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465862, extensionRPC: ext.flutter.reassemble}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465862, extensionRPC: ext.flutter.exit}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465862, extensionRPC: ext.flutter.saveCompilationTrace}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465863, extensionRPC: ext.flutter.platformOverride}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465865, extensionRPC: ext.flutter.evict}}
[  +11 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465866, extensionRPC: ext.flutter.timeDilation}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465869, extensionRPC: ext.flutter.debugPaint}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465869, extensionRPC: ext.flutter.debugPaintBaselinesEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465869, extensionRPC: ext.flutter.repaintRainbow}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465869, extensionRPC: ext.flutter.debugCheckElevationsEnabled}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.debugDumpLayerTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.debugDumpRenderTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.debugDumpSemanticsTreeInTraversalOrder}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.debugDumpApp}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.showPerformanceOverlay}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.didSendFirstFrameEvent}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.didSendFirstFrameRasterizedEvent}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465870, extensionRPC: ext.flutter.profileWidgetBuilds}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465876, extensionRPC: ext.flutter.debugAllowBanner}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465876, extensionRPC: ext.flutter.debugWidgetInspector}}
[   +8 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465893, extensionRPC: ext.flutter.inspector.structuredErrors}}
[   +3 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465893, extensionRPC: ext.flutter.inspector.show}}
[   +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465896, extensionRPC: ext.flutter.inspector.trackRebuildDirtyWidgets}}
[  +11 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465896, extensionRPC: ext.flutter.inspector.trackRepaintWidgets}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465898, extensionRPC: ext.flutter.inspector.disposeAllGroups}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465899, extensionRPC: ext.flutter.inspector.disposeGroup}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465899, extensionRPC: ext.flutter.inspector.isWidgetTreeReady}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465900, extensionRPC: ext.flutter.inspector.disposeId}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465901, extensionRPC: ext.flutter.inspector.setPubRootDirectories}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465902, extensionRPC: ext.flutter.inspector.setSelectionById}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465902, extensionRPC: ext.flutter.inspector.getParentChain}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465902, extensionRPC: ext.flutter.inspector.getProperties}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465903, extensionRPC: ext.flutter.inspector.getChildren}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465903, extensionRPC: ext.flutter.inspector.getChildrenSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465903, extensionRPC: ext.flutter.inspector.getChildrenDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465904, extensionRPC: ext.flutter.inspector.getRootWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465904, extensionRPC: ext.flutter.inspector.getRootRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465904, extensionRPC: ext.flutter.inspector.getRootWidgetSummaryTree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465905, extensionRPC: ext.flutter.inspector.getDetailsSubtree}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465905, extensionRPC: ext.flutter.inspector.getSelectedRenderObject}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465905, extensionRPC: ext.flutter.inspector.getSelectedWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465906, extensionRPC: ext.flutter.inspector.getSelectedSummaryWidget}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465906, extensionRPC: ext.flutter.inspector.isWidgetCreationTracked}}
[        ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407}, timestamp: 1576792465906, extensionRPC: ext.flutter.inspector.screenshot}}
[+2057 ms] I/flutter ( 5872): ez3sNbKAIXg:APA91bGELkLyXVJ_l4Ibsp0vBx4zDd2JQwmsvI8nTKGhHWeB8zBL1rhsqNtUy2p_KDcWDciPGekVl0CCLTwRBK6Qwz35sINrYpmK8sPECEGkkdYQ1KSZefgoCgrmG649xLZzdRtggXgr
[+3798 ms] Performing hot restart...
[        ] Refreshing active FlutterViews before restarting.
[        ] Sending to VM service: _flutter.listViews({})
[  +20 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x9ed45310, isolate: {type: @Isolate, fixedId: true, id: isolates/1140881711411407, name: main.dart$main-1140881711411407, number: 1140881711411407}}, {type: FlutterView, id: _flutterView/0x9ed46490, isolate: {type: @Isolate, fixedId: true, id: isolates/2208336437386759, name: main.dart$main-2208336437386759, number: 2208336437386759}}, {type: FlutterView, id: _flutterView/0xb4ca2090, isolate: {type: @Isolate, fixedId: true, id: isolates/3847779088285351, name: main.dart$main-3847779088285351, number: 3847779088285351}}]}
[  +12 ms] Scanned through 453 files in 12ms
[        ] Syncing files to device Nexus 5...
[        ] Scanning asset files
[   +1 ms] <- reset
[        ] Compiling dart to kernel with 1 updated files
[        ] <- recompile package:push_test/main.dart 127f839c-b8f8-485d-a2e8-0fb5c39970a0
[        ] <- 127f839c-b8f8-485d-a2e8-0fb5c39970a0
[  +81 ms] Updating files
[ +932 ms] Ignoring terminal input: "r" because we are busy.
[ +523 ms] DevFS: Sync finished
[        ] Syncing files to device Nexus 5... (completed in 1 540ms)
[        ] Synced 18.2MB.
[        ] <- accept
[        ] Sending to VM service: getIsolate({isolateId: isolates/1140881711411407})
[   +1 ms] Sending to VM service: getIsolate({isolateId: isolates/2208336437386759})
[   +1 ms] Sending to VM service: getIsolate({isolateId: isolates/3847779088285351})
[  +13 ms] Result: {type: Isolate, id: isolates/2208336437386759, name: main, number: 2208336437386759, _originNumber: 2208336437386759, startTime: 1576792465724, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis...
[   +1 ms] Sending to VM service: resume({isolateId: isolates/2208336437386759})
[  +16 ms] Result: {type: Isolate, id: isolates/1140881711411407, name: main, number: 1140881711411407, _originNumber: 1140881711411407, startTime: 1576792465066, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 1, avgCollectionPeriodMillis...
[        ] {request: {method: resume, params: {isolateId: isolates/2208336437386759}}, details: Isolate must be runnable before this request is made.}
[  +10 ms] Result: {type: Isolate, id: isolates/3847779088285351, name: main, number: 3847779088285351, _originNumber: 3847779088285351, startTime: 1576792464653, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 4, avgCollectionPeriodMillis...
[   +5 ms] Performing hot restart... (completed in 1 638ms)
[        ] Restarted application in 1 638ms.
[   +6 ms] Sending to VM service: _flutter.runInView({viewId: _flutterView/0x9ed45310, mainScript: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/lib/main.dart.dill, packagesFile: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/.packages, assetDirectory: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/build/flutter_assets})
[        ] Sending to VM service: _flutter.runInView({viewId: _flutterView/0x9ed46490, mainScript: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/lib/main.dart.dill, packagesFile: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/.packages, assetDirectory: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/build/flutter_assets})
[        ] Sending to VM service: _flutter.runInView({viewId: _flutterView/0xb4ca2090, mainScript: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/lib/main.dart.dill, packagesFile: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/.packages, assetDirectory: file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/build/flutter_assets})
[        ] Application finished.
[   +9 ms] DevFS: Deleting filesystem on the device (file:///data/user/0/com.example.push_test/code_cache/push_testUQFSKQ/push_test/)
[        ] Sending to VM service: _deleteDevFS({fsName: push_test})

After crash logs
uebanchik@uebanchik push_test % flutter run --verbose > output.txt
[  +11 ms] Error 105 received from application: Isolate must be runnable
hot restart failed to complete

#0      throwToolExit (package:flutter_tools/src/base/common.dart:28:3)
#1      TerminalHandler._commonTerminalInputHandler (package:flutter_tools/src/resident_runner.dart:1222:11)
<asynchronous suspension>
#2      TerminalHandler.processTerminalInput (package:flutter_tools/src/resident_runner.dart:1272:13)
#3      _rootRunUnary (dart:async/zone.dart:1134:38)
#4      _CustomZone.runUnary (dart:async/zone.dart:1031:19)
#5      _CustomZone.runUnaryGuarded (dart:async/zone.dart:933:7)
#6      _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:338:11)
#7      _BufferingStreamSubscription._add (dart:async/stream_impl.dart:265:7)
#8      _SyncBroadcastStreamController._sendData (dart:async/broadcast_stream_controller.dart:377:20)
#9      _BroadcastStreamController.add (dart:async/broadcast_stream_controller.dart:252:5)
#10     _AsBroadcastStreamController.add (dart:async/broadcast_stream_controller.dart:476:11)
#11     _rootRunUnary (dart:async/zone.dart:1134:38)
#12     _CustomZone.runUnary (dart:async/zone.dart:1031:19)
#13     _CustomZone.runUnaryGuarded (dart:async/zone.dart:933:7)
#14     _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:338:11)
#15     _BufferingStreamSubscription._add (dart:async/stream_impl.dart:265: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:1134:38)
#26     _CustomZone.runUnary (dart:async/zone.dart:1031:19)
#27     _CustomZone.runUnaryGuarded (dart:async/zone.dart:933:7)
#28     _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:338:11)
#29     _BufferingStreamSubscription._add (dart:async/stream_impl.dart:265:7)
#30     _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:766:19)
#31     _StreamController._add (dart:async/stream_controller.dart:642:7)
#32     _StreamController.add (dart:async/stream_controller.dart:588:5)
#33     _Socket._onData (dart:io-patch/socket_patch.dart:1831:41)
#34     _rootRunUnary (dart:async/zone.dart:1138:13)
#35     _CustomZone.runUnary (dart:async/zone.dart:1031:19)
#36     _CustomZone.runUnaryGuarded (dart:async/zone.dart:933:7)
#37     _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:338:11)
#38     _BufferingStreamSubscription._add (dart:async/stream_impl.dart:265:7)
#39     _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:766:19)
#40     _StreamController._add (dart:async/stream_controller.dart:642:7)
#41     _StreamController.add (dart:async/stream_controller.dart:588:5)
#42     new _RawSocket.<anonymous closure> (dart:io-patch/socket_patch.dart:1379:33)
#43     _NativeSocket.issueReadEvent.issue (dart:io-patch/socket_patch.dart:899: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:175:5)

@kirstywilliams
Copy link
Contributor

Hey @koteezy I'm reviewing open issues, is this still a problem for you? - thanks!

@koteezy
Copy link
Author

koteezy commented Apr 23, 2020

Hey @koteezy I'm reviewing open issues, is this still a problem for you? - thanks!

Hi, i will check this, and let you know

@google-oss-bot
Copy link

Hey @koteezy. We need more information to resolve this issue but there hasn't been an update in 7 weekdays. I'm marking the issue as stale and if there are no new updates in the next 7 days I will close it automatically.

If you have more information that will help us get to the bottom of this, just add a comment!

@google-oss-bot google-oss-bot added the Stale Issue with no recent activity label Jul 30, 2020
@iapicca iapicca removed the blocked: customer-response Waiting for customer response, e.g. more information was requested. label Jul 31, 2020
@google-oss-bot
Copy link

Since there haven't been any recent updates here, I am going to close this issue.

@koteezy if you're still experiencing this problem and want to continue the discussion just leave a comment here and we are happy to re-open this.

@firebase firebase locked and limited conversation to collaborators Sep 10, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
closed-by-bot plugin: messaging Stale Issue with no recent activity type: bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants