Skip to content
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

FlutterFire: IOS simulator not building #13599

Closed
1 task done
StaffordInnovations opened this issue Nov 1, 2024 · 15 comments
Closed
1 task done

FlutterFire: IOS simulator not building #13599

StaffordInnovations opened this issue Nov 1, 2024 · 15 comments
Labels
platform: ios Issues / PRs which are specifically for iOS. plugin: core resolution: user This was a user issue, e.g. invalid configuration or code. type: bug Something isn't working

Comments

@StaffordInnovations
Copy link

Is there an existing issue for this?

  • I have searched the existing issues.

Which plugins are affected?

Core, Analytics, Auth, Cloud Functions, In-App Messaging, Messaging

Which platforms are affected?

iOS

Description

This is similar but not quite to issue #13563 however I've tried the solutions and they're not working for me plus the error reports aren't quite the same.

I expected to add FlutterFire/Firebase_core to my new Flutter app and be able to build on the IOS simulator.

I've already tried a million things.
I took out
use_frameworks! use_modular_headers!
from the target 'Runner' do in my podfile and tried the manual pod 'Firebase', :modular_headers => true for each package

I've done the delete podfile.lock, clean cache, clean flutter etc over and over any time I've tried a new solution

doing the following didn't help:
post_install do |installer| installer.pods_project.targets.each do |target| if target.name == 'abseil' target.build_configurations.each do |config| config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'gnu++14' end end end end

I tried adding the packages to Runner in Xcode but then got conflict there. I took out url_launcher in case that was causing an issue. I'm really at a loss as to how to fix this.

Reproducing the issue

I created a new flutter app in order to refactor an existing app. The app built on both the IOS simulator Iphone 15 (18.0) and android emulator prior to adding flutter core. I used the Flutter config instructions from the Firebase console in order to install Firebase but then I got crash reports. It took me a long time to find it's an issue with the packages.

Firebase Core version

3.6.0

Flutter Version

3.24.4

Relevant Log Output

Package Loading (Xcode): Missing package product 'FirebaseDatabase'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseAnalytics'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseMessaging'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseCore'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseFunctions'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseAppCheck'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseFirestore'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseStorage'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseDynamicLinks'
/ios/Runner.xcodeproj

Package Loading (Xcode): Missing package product 'FirebaseAuth'
/ios/Runner.xcodeproj

Could not build the application for the simulator.
Error launching application on iPhone 15.

Flutter dependencies

Expand Flutter dependencies snippet
dependencies:
  flutter:
    sdk: flutter

  uuid: ^4.2.1
  path_provider: ^2.1.1
  firebase_core: ^3.6.0

  #state management plugins
  hooks_riverpod: ^2.6.1
  flutter_hooks: ^0.20.5
  riverpod_annotation: ^2.6.1
  rxdart: ^0.28.0

  go_router: ^14.3.0

  flutter_localizations:
    sdk: flutter
  intl: ^0.19.0

  flutter_launcher_icons: ^0.14.1
  google_fonts: ^6.2.1
  image_picker: ^1.1.2
  flutter_portal: ^1.1.4
  syncfusion_flutter_datepicker: ^27.1.57
  webview_flutter: ^4.10.0

  flutter_stripe: ^11.2.0
  flutter_stripe_web: ^6.2.0
  pay: ^2.0.0

dev_dependencies:
  build_runner: ^2.4.13
  riverpod_generator: ^2.6.2
  flutter_test:
    sdk: flutter

  flutter_lints: ^4.0.0

# Custom app icon. For more info see: https://pub.dev/packages/flutter_launcher_icons
flutter_icons:
  android: true
  ios: true
  remove_alpha_ios: true
  image_path_ios: "assets/images/NGT_simple.png"
  image_path_android: "assets/images/NGT_simple.png"
  adaptive_icon_background: "assets/images/NGT_background.png"
  adaptive_icon_foreground: "assets/images/NGT_foreground.png"
  windows:
    generate: true
    image_path: "assets/images/NGT_simple.png"
    icon_size: 48 # min:48, max:256, default: 48
  macos:
    generate: true
    image_path: "assets/images/NGT_simple.png"

# The following section is specific to Flutter packages.
flutter:

  uses-material-design: true
  generate: true

Additional context and comments

I'm wondering if maybe there might be related to the swift package manager or maybe I should migrate to that? I'm currently on Flutter Channel Stable

Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.24.4, on macOS 15.0.1 24A348 darwin-x64, locale en-IE) [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0-rc3) [✓] Xcode - develop for iOS and macOS (Xcode 16.1) [✓] Chrome - develop for the web [✓] Android Studio (version 2024.1) [✓] VS Code (version 1.95.0) [✓] Connected device (4 available) [✓] Network resources

@StaffordInnovations StaffordInnovations added Needs Attention This issue needs maintainer attention. type: bug Something isn't working labels Nov 1, 2024
@SelaseKay SelaseKay added plugin: core platform: ios Issues / PRs which are specifically for iOS. labels Nov 1, 2024
@SelaseKay
Copy link
Contributor

Hi @StaffordInnovations, I'm unable to reproduce this issue. Can you try the solutions here to see if it resolves your issue.

@SelaseKay SelaseKay added the blocked: customer-response Waiting for customer response, e.g. more information was requested. label Nov 1, 2024
@StaffordInnovations
Copy link
Author

here

Hi Selase, I don't seem to have any of those options in my Runner or runner.xcworkspace file when I open it in Xcode. Reset package caches is greyed out. I've cleaned pods/flutter, deleted/reset pods, checked all my updates, reset my computer multiple times after trying all sorts of different variations in my podfile. I am in Flutter so I'm more used to that than Xcode

@google-oss-bot google-oss-bot removed the blocked: customer-response Waiting for customer response, e.g. more information was requested. label Nov 1, 2024
@SelaseKay
Copy link
Contributor

Can you create a new flutter project, add firebase_core and try executing flutter run?

@SelaseKay SelaseKay added the blocked: customer-response Waiting for customer response, e.g. more information was requested. label Nov 1, 2024
@StaffordInnovations
Copy link
Author

I was wondering if maybe there was something going on with Flutter eventually moving to the swift package manager?

Can you create a new flutter project, add firebase_core and try executing flutter run?

I made a new Flutter package and the only thing I added was Firebase_core and ended up with the original crash report I had before I figured out there was a package issue

I used flutterfire configure --project=ngt-life to add firebase. However the command line wouldn't let me put in a good package name, it doesn't have enough characters


Translated Report (Full Report Below)

Incident Identifier: FD24AC5D-34D0-4994-AFE4-DF0EA659897E
CrashReporter Key: FEDC1C93-2980-D076-61B4-E9D4A6B4332F
Hardware Model: MacBookPro16,1
Process: Runner [38672]
Path: /Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Runner
Identifier: com.example.firebasePlay
Version: 1.0.0 (1)
Code Type: X86-64 (Native)
Role: Foreground
Parent Process: launchd_sim [36420]
Coalition: com.apple.CoreSimulator.SimDevice.350CEBEF-F094-4323-A2E9-A08BF87C7AFE [16764]
Responsible Process: SimulatorTrampoline [1473]

Date/Time: 2024-11-01 13:47:43.0242 +0000
Launch Time: 2024-11-01 13:47:40.2853 +0000
OS Version: macOS 15.0.1 (24A348)
Release Type: User
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Termination Reason: SIGNAL 6 Abort trap: 6
Terminating Process: Runner [38672]

Triggered by Thread: 0

Last Exception Backtrace:
0 CoreFoundation 0x7ff80049927d __exceptionPreprocess + 226
1 libobjc.A.dylib 0x7ff800063894 objc_exception_throw + 48
2 CoreFoundation 0x7ff80049916b -[NSException initWithCoder:] + 0
3 FirebaseCore 0x10d628310 +[FIRApp configureWithName:options:] + 496 (FIRApp.m:163)
4 Runner.debug.dylib 0x10d5f9753 -[FLTFirebaseCorePlugin initializeAppAppName:initializeAppRequest:completion:] + 1971
5 Runner.debug.dylib 0x10d5fe8a7 __FirebaseCoreHostApiSetup_block_invoke + 279
6 Flutter 0x1131cab52 __48-[FlutterBasicMessageChannel setMessageHandler:]_block_invoke + 171 (FlutterChannels.mm:139)
7 Flutter 0x112b9785c fml::RefPtrflutter::PlatformMessageResponse::~RefPtr() + 0 (ref_ptr.h:110) [inlined]
8 Flutter 0x112b9785c fml::RefPtrflutter::PlatformMessageResponse::~RefPtr() + 0 (ref_ptr.h:109) [inlined]
9 Flutter 0x112b9785c invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_deleteflutter::PlatformMessage>) + 94 (platform_message_handler_ios.mm:81)
10 libdispatch.dylib 0x7ff800156a90 _dispatch_call_block_and_release + 12
11 libdispatch.dylib 0x7ff800157d3a _dispatch_client_callout + 8
12 libdispatch.dylib 0x7ff800166ac0 _dispatch_main_queue_drain + 1420
13 libdispatch.dylib 0x7ff800166526 _dispatch_main_queue_callback_4CF + 31
14 CoreFoundation 0x7ff8003f5850 CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE + 9
15 CoreFoundation 0x7ff8003f018b __CFRunLoopRun + 2463
16 CoreFoundation 0x7ff8003ef409 CFRunLoopRunSpecific + 557
17 GraphicsServices 0x7ff80fcdd187 GSEventRunModal + 137
18 UIKitCore 0x7ff805b703a2 -[UIApplication _run] + 972
19 UIKitCore 0x7ff805b74e10 UIApplicationMain + 123
20 UIKitCore 0x7ff804c1fe03 0x7ff804b95000 + 568835
21 Runner.debug.dylib 0x10d5f560b static UIApplicationDelegate.main() + 123
22 Runner.debug.dylib 0x10d5f5587 static AppDelegate.$main() + 39
23 Runner.debug.dylib 0x10d5f5678 __debug_main_executable_dylib_entry_point + 24 (AppDelegate.swift:5)
24 dyld_sim 0x10d6563ee start_sim + 10
25 dyld 0x112a1f2cd start + 1805

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x10dbceb52 __pthread_kill + 10
1 libsystem_pthread.dylib 0x10dafef85 pthread_kill + 262
2 libsystem_c.dylib 0x7ff80014cd60 abort + 133
3 libc++abi.dylib 0x7ff8002941b2 abort_message + 241
4 libc++abi.dylib 0x7ff80028638a demangling_terminate_handler() + 266
5 libobjc.A.dylib 0x7ff8000425e6 _objc_terminate() + 96
6 libc++abi.dylib 0x7ff80029360b std::__terminate(void (*)()) + 6
7 libc++abi.dylib 0x7ff8002935c6 std::terminate() + 54
8 libdispatch.dylib 0x7ff800157d4e _dispatch_client_callout + 28
9 libdispatch.dylib 0x7ff800166ac0 _dispatch_main_queue_drain + 1420
10 libdispatch.dylib 0x7ff800166526 _dispatch_main_queue_callback_4CF + 31
11 CoreFoundation 0x7ff8003f5850 CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE + 9
12 CoreFoundation 0x7ff8003f018b __CFRunLoopRun + 2463
13 CoreFoundation 0x7ff8003ef409 CFRunLoopRunSpecific + 557
14 GraphicsServices 0x7ff80fcdd187 GSEventRunModal + 137
15 UIKitCore 0x7ff805b703a2 -[UIApplication _run] + 972
16 UIKitCore 0x7ff805b74e10 UIApplicationMain + 123
17 UIKitCore 0x7ff804c1fe03 0x7ff804b95000 + 568835
18 Runner.debug.dylib 0x10d5f560b static UIApplicationDelegate.main() + 123
19 Runner.debug.dylib 0x10d5f5587 static AppDelegate.$main() + 39
20 Runner.debug.dylib 0x10d5f5678 __debug_main_executable_dylib_entry_point + 24 (AppDelegate.swift:5)
21 dyld_sim 0x10d6563ee start_sim + 10
22 dyld 0x112a1f2cd start + 1805

Thread 1:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 2:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 3:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 4:: com.apple.uikit.eventfetch-thread
0 libsystem_kernel.dylib 0x10dbc7e0e mach_msg2_trap + 10
1 libsystem_kernel.dylib 0x10dbd6622 mach_msg2_internal + 84
2 libsystem_kernel.dylib 0x10dbcef16 mach_msg_overwrite + 649
3 libsystem_kernel.dylib 0x10dbc80ff mach_msg + 19
4 CoreFoundation 0x7ff8003f55bf __CFRunLoopServiceMachPort + 143
5 CoreFoundation 0x7ff8003efd47 __CFRunLoopRun + 1371
6 CoreFoundation 0x7ff8003ef409 CFRunLoopRunSpecific + 557
7 Foundation 0x7ff800e7deee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
8 Foundation 0x7ff800e7e16c -[NSRunLoop(NSRunLoop) runUntilDate:] + 72
9 UIKitCore 0x7ff805c48797 -[UIEventFetcher threadMain] + 518
10 Foundation 0x7ff800ea8699 NSThread__start + 1024
11 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
12 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 5:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 6:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 7:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 8:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 9:: io.flutter.1.ui
0 libsystem_kernel.dylib 0x10dbc7e0e mach_msg2_trap + 10
1 libsystem_kernel.dylib 0x10dbd6622 mach_msg2_internal + 84
2 libsystem_kernel.dylib 0x10dbcef16 mach_msg_overwrite + 649
3 libsystem_kernel.dylib 0x10dbc80ff mach_msg + 19
4 CoreFoundation 0x7ff8003f55bf __CFRunLoopServiceMachPort + 143
5 CoreFoundation 0x7ff8003efd47 __CFRunLoopRun + 1371
6 CoreFoundation 0x7ff8003ef409 CFRunLoopRunSpecific + 557
7 Flutter 0x112bbf7ed fml::MessageLoopDarwin::Run() + 65 (message_loop_darwin.mm:51)
8 Flutter 0x112bb8ff2 fml::MessageLoopImpl::DoRun() + 22 (message_loop_impl.cc:94)
9 Flutter 0x112bbe5d1 fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const + 122 (thread.cc:154) [inlined]
10 Flutter 0x112bbe5d1 decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:403) [inlined]
11 Flutter 0x112bbe5d1 void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:488) [inlined]
12 Flutter 0x112bbe5d1 std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000 + 122 (function.h:185) [inlined]
13 Flutter 0x112bbe5d1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135 (function.h:359)
14 Flutter 0x112bbe373 std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const + 15 (function.h:512) [inlined]
15 Flutter 0x112bbe373 std::_fl::function<void ()>::operator()() const + 15 (function.h:1187) [inlined]
16 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const + 19 (thread.cc:76) [inlined]
17 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27 (thread.cc:73)
18 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
19 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 10:: io.flutter.1.raster
0 libsystem_kernel.dylib 0x10dbc7e0e mach_msg2_trap + 10
1 libsystem_kernel.dylib 0x10dbd6622 mach_msg2_internal + 84
2 libsystem_kernel.dylib 0x10dbcef16 mach_msg_overwrite + 649
3 libsystem_kernel.dylib 0x10dbc80ff mach_msg + 19
4 CoreFoundation 0x7ff8003f55bf __CFRunLoopServiceMachPort + 143
5 CoreFoundation 0x7ff8003efd47 __CFRunLoopRun + 1371
6 CoreFoundation 0x7ff8003ef409 CFRunLoopRunSpecific + 557
7 Flutter 0x112bbf7ed fml::MessageLoopDarwin::Run() + 65 (message_loop_darwin.mm:51)
8 Flutter 0x112bb8ff2 fml::MessageLoopImpl::DoRun() + 22 (message_loop_impl.cc:94)
9 Flutter 0x112bbe5d1 fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const + 122 (thread.cc:154) [inlined]
10 Flutter 0x112bbe5d1 decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:403) [inlined]
11 Flutter 0x112bbe5d1 void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:488) [inlined]
12 Flutter 0x112bbe5d1 std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000 + 122 (function.h:185) [inlined]
13 Flutter 0x112bbe5d1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135 (function.h:359)
14 Flutter 0x112bbe373 std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const + 15 (function.h:512) [inlined]
15 Flutter 0x112bbe373 std::_fl::function<void ()>::operator()() const + 15 (function.h:1187) [inlined]
16 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const + 19 (thread.cc:76) [inlined]
17 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27 (thread.cc:73)
18 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
19 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 11:: io.flutter.1.io
0 libsystem_kernel.dylib 0x10dbc7e0e mach_msg2_trap + 10
1 libsystem_kernel.dylib 0x10dbd6622 mach_msg2_internal + 84
2 libsystem_kernel.dylib 0x10dbcef16 mach_msg_overwrite + 649
3 libsystem_kernel.dylib 0x10dbc80ff mach_msg + 19
4 CoreFoundation 0x7ff8003f55bf __CFRunLoopServiceMachPort + 143
5 CoreFoundation 0x7ff8003efd47 __CFRunLoopRun + 1371
6 CoreFoundation 0x7ff8003ef409 CFRunLoopRunSpecific + 557
7 Flutter 0x112bbf7ed fml::MessageLoopDarwin::Run() + 65 (message_loop_darwin.mm:51)
8 Flutter 0x112bb8ff2 fml::MessageLoopImpl::DoRun() + 22 (message_loop_impl.cc:94)
9 Flutter 0x112bbe5d1 fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const + 122 (thread.cc:154) [inlined]
10 Flutter 0x112bbe5d1 decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:403) [inlined]
11 Flutter 0x112bbe5d1 void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:488) [inlined]
12 Flutter 0x112bbe5d1 std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000 + 122 (function.h:185) [inlined]
13 Flutter 0x112bbe5d1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135 (function.h:359)
14 Flutter 0x112bbe373 std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const + 15 (function.h:512) [inlined]
15 Flutter 0x112bbe373 std::_fl::function<void ()>::operator()() const + 15 (function.h:1187) [inlined]
16 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const + 19 (thread.cc:76) [inlined]
17 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27 (thread.cc:73)
18 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
19 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 12:: io.flutter.1.profiler
0 libsystem_kernel.dylib 0x10dbc7e0e mach_msg2_trap + 10
1 libsystem_kernel.dylib 0x10dbd6622 mach_msg2_internal + 84
2 libsystem_kernel.dylib 0x10dbcef16 mach_msg_overwrite + 649
3 libsystem_kernel.dylib 0x10dbc80ff mach_msg + 19
4 CoreFoundation 0x7ff8003f55bf __CFRunLoopServiceMachPort + 143
5 CoreFoundation 0x7ff8003efd47 __CFRunLoopRun + 1371
6 CoreFoundation 0x7ff8003ef409 CFRunLoopRunSpecific + 557
7 Flutter 0x112bbf7ed fml::MessageLoopDarwin::Run() + 65 (message_loop_darwin.mm:51)
8 Flutter 0x112bb8ff2 fml::MessageLoopImpl::DoRun() + 22 (message_loop_impl.cc:94)
9 Flutter 0x112bbe5d1 fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const + 122 (thread.cc:154) [inlined]
10 Flutter 0x112bbe5d1 decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:403) [inlined]
11 Flutter 0x112bbe5d1 void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&) + 122 (invoke.h:488) [inlined]
12 Flutter 0x112bbe5d1 std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000 + 122 (function.h:185) [inlined]
13 Flutter 0x112bbe5d1 std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()() + 135 (function.h:359)
14 Flutter 0x112bbe373 std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const + 15 (function.h:512) [inlined]
15 Flutter 0x112bbe373 std::_fl::function<void ()>::operator()() const + 15 (function.h:1187) [inlined]
16 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const + 19 (thread.cc:76) [inlined]
17 Flutter 0x112bbe373 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 27 (thread.cc:73)
18 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
19 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 13:: io.worker.1
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7a8 _pthread_cond_wait + 1193
2 Flutter 0x112b99520 std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*) + 5 (__threading_support:335) [inlined]
3 Flutter 0x112b99520 std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&) + 18 (condition_variable.cpp:46)
4 Flutter 0x112bb576f void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0) + 50 (__mutex_base:398) [inlined]
5 Flutter 0x112bb576f fml::ConcurrentMessageLoop::WorkerMain() + 167 (concurrent_message_loop.cc:75)
6 Flutter 0x112bb6091 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 145 (concurrent_message_loop.cc:20) [inlined]
7 Flutter 0x112bb6091 decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&) + 145 (invoke.h:403) [inlined]
8 Flutter 0x112bb6091 void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>) + 145 (thread:284) [inlined]
9 Flutter 0x112bb6091 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191 (thread:295)
10 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
11 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 14:: io.worker.2
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7a8 _pthread_cond_wait + 1193
2 Flutter 0x112b99520 std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*) + 5 (__threading_support:335) [inlined]
3 Flutter 0x112b99520 std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&) + 18 (condition_variable.cpp:46)
4 Flutter 0x112bb576f void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0) + 50 (__mutex_base:398) [inlined]
5 Flutter 0x112bb576f fml::ConcurrentMessageLoop::WorkerMain() + 167 (concurrent_message_loop.cc:75)
6 Flutter 0x112bb6091 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 145 (concurrent_message_loop.cc:20) [inlined]
7 Flutter 0x112bb6091 decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&) + 145 (invoke.h:403) [inlined]
8 Flutter 0x112bb6091 void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>) + 145 (thread:284) [inlined]
9 Flutter 0x112bb6091 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191 (thread:295)
10 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
11 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 15:: io.worker.3
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7a8 _pthread_cond_wait + 1193
2 Flutter 0x112b99520 std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*) + 5 (__threading_support:335) [inlined]
3 Flutter 0x112b99520 std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&) + 18 (condition_variable.cpp:46)
4 Flutter 0x112bb576f void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0) + 50 (__mutex_base:398) [inlined]
5 Flutter 0x112bb576f fml::ConcurrentMessageLoop::WorkerMain() + 167 (concurrent_message_loop.cc:75)
6 Flutter 0x112bb6091 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 145 (concurrent_message_loop.cc:20) [inlined]
7 Flutter 0x112bb6091 decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&) + 145 (invoke.h:403) [inlined]
8 Flutter 0x112bb6091 void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>) + 145 (thread:284) [inlined]
9 Flutter 0x112bb6091 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191 (thread:295)
10 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
11 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 16:: io.worker.4
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7a8 _pthread_cond_wait + 1193
2 Flutter 0x112b99520 std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*) + 5 (__threading_support:335) [inlined]
3 Flutter 0x112b99520 std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&) + 18 (condition_variable.cpp:46)
4 Flutter 0x112bb576f void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0) + 50 (__mutex_base:398) [inlined]
5 Flutter 0x112bb576f fml::ConcurrentMessageLoop::WorkerMain() + 167 (concurrent_message_loop.cc:75)
6 Flutter 0x112bb6091 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 145 (concurrent_message_loop.cc:20) [inlined]
7 Flutter 0x112bb6091 decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&) + 145 (invoke.h:403) [inlined]
8 Flutter 0x112bb6091 void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>) + 145 (thread:284) [inlined]
9 Flutter 0x112bb6091 void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 191 (thread:295)
10 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
11 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 17:: dart:io EventHandler
0 libsystem_kernel.dylib 0x10dbccafa kevent + 10
1 Flutter 0x1131793a8 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 312 (eventhandler_macos.cc:459)
2 Flutter 0x1131954a3 dart::bin::ThreadStart(void*) + 83 (thread_macos.cc:91)
3 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
4 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 18:: Dart Profiler ThreadInterrupter
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7a8 _pthread_cond_wait + 1193
2 Flutter 0x11331149e dart::Monitor::WaitMicros(long long) + 158 (os_thread_macos.cc:435)
3 Flutter 0x1133873af dart::MonitorLocker::WaitMicros(long long) + 8 (lockers.h:181) [inlined]
4 Flutter 0x1133873af dart::ThreadInterrupter::ThreadMain(unsigned long) + 303 (thread_interrupter.cc:170)
5 Flutter 0x113310b2e dart::ThreadStart(void*) + 206 (os_thread_macos.cc:136)
6 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
7 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 19:: Dart Profiler SampleBlockProcessor
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7d9 _pthread_cond_wait + 1242
2 Flutter 0x113311486 dart::Monitor::WaitMicros(long long) + 134 (os_thread_macos.cc:449)
3 Flutter 0x1133162ab dart::MonitorLocker::WaitMicros(long long) + 13 (lockers.h:181) [inlined]
4 Flutter 0x1133162ab dart::SampleBlockProcessor::ThreadMain(unsigned long) + 251 (profiler.cc:1875)
5 Flutter 0x113310b2e dart::ThreadStart(void*) + 206 (os_thread_macos.cc:136)
6 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
7 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 20:: DartWorker
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7d9 _pthread_cond_wait + 1242
2 Flutter 0x113311486 dart::Monitor::WaitMicros(long long) + 134 (os_thread_macos.cc:449)
3 Flutter 0x1133880bf dart::MonitorLocker::WaitMicros(long long) + 12 (lockers.h:181) [inlined]
4 Flutter 0x1133880bf dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 543 (thread_pool.cc:183)
5 Flutter 0x113388293 dart::ThreadPool::Worker::Main(unsigned long) + 115 (thread_pool.cc:330)
6 Flutter 0x113310b2e dart::ThreadStart(void*) + 206 (os_thread_macos.cc:136)
7 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
8 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 21:: DartWorker
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7d9 _pthread_cond_wait + 1242
2 Flutter 0x113311486 dart::Monitor::WaitMicros(long long) + 134 (os_thread_macos.cc:449)
3 Flutter 0x1133880bf dart::MonitorLocker::WaitMicros(long long) + 12 (lockers.h:181) [inlined]
4 Flutter 0x1133880bf dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 543 (thread_pool.cc:183)
5 Flutter 0x113388293 dart::ThreadPool::Worker::Main(unsigned long) + 115 (thread_pool.cc:330)
6 Flutter 0x113310b2e dart::ThreadStart(void*) + 206 (os_thread_macos.cc:136)
7 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
8 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 22:: DartWorker
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7d9 _pthread_cond_wait + 1242
2 Flutter 0x113311486 dart::Monitor::WaitMicros(long long) + 134 (os_thread_macos.cc:449)
3 Flutter 0x1133880bf dart::MonitorLocker::WaitMicros(long long) + 12 (lockers.h:181) [inlined]
4 Flutter 0x1133880bf dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 543 (thread_pool.cc:183)
5 Flutter 0x113388293 dart::ThreadPool::Worker::Main(unsigned long) + 115 (thread_pool.cc:330)
6 Flutter 0x113310b2e dart::ThreadStart(void*) + 206 (os_thread_macos.cc:136)
7 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
8 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 23:: DartWorker
0 libsystem_kernel.dylib 0x10dbca9aa __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x10daff7d9 _pthread_cond_wait + 1242
2 Flutter 0x113311486 dart::Monitor::WaitMicros(long long) + 134 (os_thread_macos.cc:449)
3 Flutter 0x1132538a1 dart::MonitorLocker::WaitMicros(long long) + 12 (lockers.h:181) [inlined]
4 Flutter 0x1132538a1 dart::MutatorThreadPool::OnEnterIdleLocked(dart::MonitorLocker*) + 241 (isolate.cc:299)
5 Flutter 0x113387f0d dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 109 (thread_pool.cc:167)
6 Flutter 0x113388293 dart::ThreadPool::Worker::Main(unsigned long) + 115 (thread_pool.cc:330)
7 Flutter 0x113310b2e dart::ThreadStart(void*) + 206 (os_thread_macos.cc:136)
8 libsystem_pthread.dylib 0x10daff253 _pthread_start + 99
9 libsystem_pthread.dylib 0x10dafabef thread_start + 15

Thread 24:
0 libsystem_pthread.dylib 0x10dafabcc start_wqthread + 0

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007ff7b29c6fd8 rdx: 0x0000000000000000
rdi: 0x0000000000000103 rsi: 0x0000000000000006 rbp: 0x00007ff7b29c7000 rsp: 0x00007ff7b29c6fd8
r8: 0x00007ff7b29c6ea0 r9: 0x00007ff7b29c7100 r10: 0x0000000000000000 r11: 0x0000000000000246
r12: 0x00007ff8653b96c0 r13: 0x0000003000000008 r14: 0x0000000000000103 r15: 0x0000000000000016
rip: 0x000000010dbceb52 rfl: 0x0000000000000246 cr2: 0x0000000000000000

Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133

Binary Images:
0x112a19000 - 0x112aa5fff dyld () <69c73748-37ae-3a6f-83af-690645c3da75> /usr/lib/dyld
0x10da00000 - 0x10da36fff com.apple.MTLSimDriver (341.16) /Volumes/VOLUME/
/MTLSimDriver.framework/MTLSimDriver
0x115c42000 - 0x115c6efff com.apple.gpusw.MetalSerializer (1.0) /Volumes/VOLUME//MetalSerializer.framework/MetalSerializer
0x10d56e000 - 0x10d57afff libobjc-trampolines.dylib (
) /Volumes/VOLUME//libobjc-trampolines.dylib
0x10d5f3000 - 0x10d604fff Runner.debug.dylib (
) <5d01956a-918a-3cc8-a81e-4b5be7c1e7b1> /Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Runner.debug.dylib
0x10d626000 - 0x10d637fff org.cocoapods.FirebaseCore (11.2.0) /Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/FirebaseCore.framework/FirebaseCore
0x10db54000 - 0x10db78fff org.cocoapods.FirebaseCoreInternal (11.4.2) <99b4c710-801b-33c3-88f5-3164da3db390> /Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/FirebaseCoreInternal.framework/FirebaseCoreInternal
0x10dae3000 - 0x10daeafff org.cocoapods.GoogleUtilities (8.0.2) <8354c120-768a-3a03-bab1-40de38ab6699> /Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x10dce3000 - 0x10dd39fff libswiftSpatial.dylib () /Volumes/VOLUME//libswiftSpatial.dylib
0x112b42000 - 0x114dcefff io.flutter.flutter (1.0) <4c4c4493-5555-3144-a124-b5ac06a77e8b> /Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/Flutter.framework/Flutter
0x10d5c5000 - 0x10d5cefff libsystem_platform.dylib () <2568a05f-3db8-3b09-9ea2-aaf2fc264a52> /usr/lib/system/libsystem_platform.dylib
0x10dbc7000 - 0x10dc02fff libsystem_kernel.dylib (
) <10094a6c-fa57-367f-b06e-7c449ea31285> /usr/lib/system/libsystem_kernel.dylib
0x10daf9000 - 0x10db04fff libsystem_pthread.dylib () /usr/lib/system/libsystem_pthread.dylib
0x10db19000 - 0x10db32fff com.apple.mlcompiler.services (95) /Volumes/VOLUME/
/MLCompilerServices.framework/MLCompilerServices
0x10d536000 - 0x10d539fff com.example.firebasePlay (1.0.0) <701168ed-38da-33b1-9b98-c426161c9fda> /Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Runner
0x10d655000 - 0x10d6acfff dyld_sim () <235c9188-4996-364b-b53b-3f2fcc80c6a7> /Volumes/VOLUME//dyld_sim
0x7ff8000d0000 - 0x7ff800154ff7 libsystem_c.dylib () /Volumes/VOLUME//libsystem_c.dylib
0x7ff800285000 - 0x7ff800299ffb libc++abi.dylib () /Volumes/VOLUME//libc++abi.dylib
0x7ff80003c000 - 0x7ff800076fd1 libobjc.A.dylib () /Volumes/VOLUME//libobjc.A.dylib
0x7ff800155000 - 0x7ff80019fffd libdispatch.dylib () <4413e494-5253-3745-b7d6-9a5067268a53> /Volumes/VOLUME//libdispatch.dylib
0x7ff800368000 - 0x7ff8006f5ff0 com.apple.CoreFoundation (6.9) <2e6951e4-83d7-34ca-bb18-98ff4b45820e> /Volumes/VOLUME//CoreFoundation.framework/CoreFoundation
0x7ff80fcda000 - 0x7ff80fce1ff6 com.apple.GraphicsServices (1.0) <69e8cd17-ed53-3804-9050-100ab9710d09> /Volumes/VOLUME/
/GraphicsServices.framework/GraphicsServices
0x7ff804b95000 - 0x7ff806944ff1 com.apple.UIKitCore (1.0) <0a1d5f3f-9ef7-379d-9d1b-d17102fd53b9> /Volumes/VOLUME//UIKitCore.framework/UIKitCore
0x0 - 0xffffffffffffffff ??? (
) <00000000-0000-0000-0000-000000000000> ???
0x7ff800770000 - 0x7ff8012d9ff6 com.apple.Foundation (6.9) <874668ad-42a3-3199-b961-73f21e14867d> /Volumes/VOLUME/*/Foundation.framework/Foundation

EOF


Full Report

{"app_name":"Runner","timestamp":"2024-11-01 13:47:44.00 +0000","app_version":"1.0.0","slice_uuid":"701168ed-38da-33b1-9b98-c426161c9fda","build_version":"1","platform":7,"bundleID":"com.example.firebasePlay","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"macOS 15.0.1 (24A348)","roots_installed":0,"name":"Runner","incident_id":"FD24AC5D-34D0-4994-AFE4-DF0EA659897E"}
{
"uptime" : 29000,
"procRole" : "Foreground",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "MacBookPro16,1",
"coalitionID" : 16764,
"osVersion" : {
"train" : "macOS 15.0.1",
"build" : "24A348",
"releaseType" : "User"
},
"captureTime" : "2024-11-01 13:47:43.0242 +0000",
"codeSigningMonitor" : 0,
"incident" : "FD24AC5D-34D0-4994-AFE4-DF0EA659897E",
"pid" : 38672,
"cpuType" : "X86-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2024-11-01 13:47:40.2853 +0000",
"procStartAbsTime" : 29618843558719,
"procExitAbsTime" : 29621576071993,
"procName" : "Runner",
"procPath" : "/Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Runner",
"bundleInfo" : {"CFBundleShortVersionString":"1.0.0","CFBundleVersion":"1","CFBundleIdentifier":"com.example.firebasePlay"},
"storeInfo" : {"deviceIdentifierForVendor":"EE366DB0-EB45-56E4-B23A-17544B78FF26","thirdParty":true},
"parentProc" : "launchd_sim",
"parentPid" : 36420,
"coalitionName" : "com.apple.CoreSimulator.SimDevice.350CEBEF-F094-4323-A2E9-A08BF87C7AFE",
"crashReporterKey" : "FEDC1C93-2980-D076-61B4-E9D4A6B4332F",
"responsiblePid" : 1473,
"responsibleProc" : "SimulatorTrampoline",
"codeSigningID" : "com.example.firebasePlay",
"codeSigningTeamID" : "",
"codeSigningFlags" : 570425857,
"codeSigningValidationCategory" : 10,
"codeSigningTrustLevel" : 4294967295,
"bootSessionUUID" : "041760DA-EAD1-4C1C-AE9A-AE685D422401",
"bridgeVersion" : {"build":"22P353","train":"9.0"},
"sip" : "enabled",
"exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
"termination" : {"flags":0,"code":6,"namespace":"SIGNAL","indicator":"Abort trap: 6","byProc":"Runner","byPid":38672},
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"lastExceptionBacktrace" : [{"imageOffset":1249917,"symbol":"__exceptionPreprocess","symbolLocation":226,"imageIndex":20},{"imageOffset":161940,"symbol":"objc_exception_throw","symbolLocation":48,"imageIndex":18},{"imageOffset":1249643,"symbol":"-[NSException initWithCoder:]","symbolLocation":0,"imageIndex":20},{"imageOffset":8976,"sourceLine":163,"sourceFile":"FIRApp.m","symbol":"+[FIRApp configureWithName:options:]","imageIndex":5,"symbolLocation":496},{"imageOffset":26451,"symbol":"-[FLTFirebaseCorePlugin initializeAppAppName:initializeAppRequest:completion:]","symbolLocation":1971,"imageIndex":4},{"imageOffset":47271,"symbol":"__FirebaseCoreHostApiSetup_block_invoke","symbolLocation":279,"imageIndex":4},{"imageOffset":6851410,"sourceLine":139,"sourceFile":"FlutterChannels.mm","symbol":"__48-[FlutterBasicMessageChannel setMessageHandler:]_block_invoke","imageIndex":9,"symbolLocation":171},{"symbol":"fml::RefPtrflutter::PlatformMessageResponse::~RefPtr()","inline":true,"imageIndex":9,"imageOffset":350300,"symbolLocation":0,"sourceLine":110,"sourceFile":"ref_ptr.h"},{"symbol":"fml::RefPtrflutter::PlatformMessageResponse::~RefPtr()","inline":true,"imageIndex":9,"imageOffset":350300,"symbolLocation":0,"sourceLine":109,"sourceFile":"ref_ptr.h"},{"imageOffset":350300,"sourceLine":81,"sourceFile":"platform_message_handler_ios.mm","symbol":"invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_deleteflutter::PlatformMessage>)","imageIndex":9,"symbolLocation":94},{"imageOffset":6800,"symbol":"_dispatch_call_block_and_release","symbolLocation":12,"imageIndex":19},{"imageOffset":11578,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":19},{"imageOffset":72384,"symbol":"_dispatch_main_queue_drain","symbolLocation":1420,"imageIndex":19},{"imageOffset":70950,"symbol":"_dispatch_main_queue_callback_4CF","symbolLocation":31,"imageIndex":19},{"imageOffset":579664,"symbol":"CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE","symbolLocation":9,"imageIndex":20},{"imageOffset":557451,"symbol":"__CFRunLoopRun","symbolLocation":2463,"imageIndex":20},{"imageOffset":553993,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":20},{"imageOffset":12679,"symbol":"GSEventRunModal","symbolLocation":137,"imageIndex":21},{"imageOffset":16626594,"symbol":"-[UIApplication _run]","symbolLocation":972,"imageIndex":22},{"imageOffset":16645648,"symbol":"UIApplicationMain","symbolLocation":123,"imageIndex":22},{"imageOffset":568835,"imageIndex":22},{"imageOffset":9739,"sourceFile":"/","symbol":"static UIApplicationDelegate.main()","symbolLocation":123,"imageIndex":4},{"imageOffset":9607,"sourceFile":"/","symbol":"static AppDelegate.$main()","symbolLocation":39,"imageIndex":4},{"imageOffset":9848,"sourceLine":5,"sourceFile":"AppDelegate.swift","symbol":"__debug_main_executable_dylib_entry_point","imageIndex":4,"symbolLocation":24},{"imageOffset":5102,"symbol":"start_sim","symbolLocation":10,"imageIndex":15},{"imageOffset":25293,"symbol":"start","symbolLocation":1805,"imageIndex":0}],
"faultingThread" : 0,
"threads" : [{"triggered":true,"id":947774,"threadState":{"r13":{"value":206158430216},"rax":{"value":0},"rflags":{"value":582},"cpu":{"value":0},"r14":{"value":259},"rsi":{"value":6},"r8":{"value":140701830246048},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":0},"r9":{"value":140701830246656},"r15":{"value":22},"rbx":{"value":6},"trap":{"value":133},"err":{"value":33554760},"r11":{"value":582},"rip":{"value":4525452114,"matchesCrashFrame":1},"rbp":{"value":140701830246400},"rsp":{"value":140701830246360},"r12":{"value":140704827020992,"symbolLocation":0,"symbol":"__stderrp"},"rcx":{"value":140701830246360},"flavor":"x86_THREAD_STATE","rdi":{"value":259}},"queue":"com.apple.main-thread","frames":[{"imageOffset":31570,"symbol":"__pthread_kill","symbolLocation":10,"imageIndex":11},{"imageOffset":24453,"symbol":"pthread_kill","symbolLocation":262,"imageIndex":12},{"imageOffset":511328,"symbol":"abort","symbolLocation":133,"imageIndex":16},{"imageOffset":61874,"symbol":"abort_message","symbolLocation":241,"imageIndex":17},{"imageOffset":5002,"symbol":"demangling_terminate_handler()","symbolLocation":266,"imageIndex":17},{"imageOffset":26086,"symbol":"_objc_terminate()","symbolLocation":96,"imageIndex":18},{"imageOffset":58891,"symbol":"std::__terminate(void ()())","symbolLocation":6,"imageIndex":17},{"imageOffset":58822,"symbol":"std::terminate()","symbolLocation":54,"imageIndex":17},{"imageOffset":11598,"symbol":"_dispatch_client_callout","symbolLocation":28,"imageIndex":19},{"imageOffset":72384,"symbol":"_dispatch_main_queue_drain","symbolLocation":1420,"imageIndex":19},{"imageOffset":70950,"symbol":"_dispatch_main_queue_callback_4CF","symbolLocation":31,"imageIndex":19},{"imageOffset":579664,"symbol":"CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE","symbolLocation":9,"imageIndex":20},{"imageOffset":557451,"symbol":"__CFRunLoopRun","symbolLocation":2463,"imageIndex":20},{"imageOffset":553993,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":20},{"imageOffset":12679,"symbol":"GSEventRunModal","symbolLocation":137,"imageIndex":21},{"imageOffset":16626594,"symbol":"-[UIApplication _run]","symbolLocation":972,"imageIndex":22},{"imageOffset":16645648,"symbol":"UIApplicationMain","symbolLocation":123,"imageIndex":22},{"imageOffset":568835,"imageIndex":22},{"imageOffset":9739,"sourceFile":"/","symbol":"static UIApplicationDelegate.main()","symbolLocation":123,"imageIndex":4},{"imageOffset":9607,"sourceFile":"/","symbol":"static AppDelegate.$main()","symbolLocation":39,"imageIndex":4},{"imageOffset":9848,"sourceLine":5,"sourceFile":"AppDelegate.swift","symbol":"__debug_main_executable_dylib_entry_point","imageIndex":4,"symbolLocation":24},{"imageOffset":5102,"symbol":"start_sim","symbolLocation":10,"imageIndex":15},{"imageOffset":25293,"symbol":"start","symbolLocation":1805,"imageIndex":0}]},{"id":947814,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":6151},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145319636992},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145320160120},"rbx":{"value":123145320161280},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145320161280},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145320161280}}},{"id":947815,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":5635},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145320173568},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145320696696},"rbx":{"value":123145320697856},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145320697856},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145320697856}}},{"id":947816,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":8963},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145320710144},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145321233272},"rbx":{"value":123145321234432},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145321234432},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145321234432}}},{"id":947817,"name":"com.apple.uikit.eventfetch-thread","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":4294964462},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":40694815129600},"r9":{"value":40694815129600},"r15":{"value":40694815129600},"rbx":{"value":123145321766256},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":4525424142},"rbp":{"value":123145321766096},"rsp":{"value":123145321765992},"r12":{"value":4294967295},"rcx":{"value":123145321765992},"flavor":"x86_THREAD_STATE","rdi":{"value":123145321766256}},"frames":[{"imageOffset":3598,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":11},{"imageOffset":63010,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":11},{"imageOffset":32534,"symbol":"mach_msg_overwrite","symbolLocation":649,"imageIndex":11},{"imageOffset":4351,"symbol":"mach_msg","symbolLocation":19,"imageIndex":11},{"imageOffset":579007,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":20},{"imageOffset":556359,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":20},{"imageOffset":553993,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":20},{"imageOffset":7397102,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":213,"imageIndex":24},{"imageOffset":7397740,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":72,"imageIndex":24},{"imageOffset":17512343,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":518,"imageIndex":22},{"imageOffset":7571097,"symbol":"NSThread__start","symbolLocation":1024,"imageIndex":24},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947818,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":11779},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145321783296},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145322306424},"rbx":{"value":123145322307584},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145322307584},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145322307584}}},{"id":947819,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":13059},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145322319872},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145322843000},"rbx":{"value":123145322844160},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145322844160},"r12":{"value":5193733},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145322844160}}},{"id":947820,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":17155},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145322856448},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145323379584},"rbx":{"value":123145323380736},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145323380736},"r12":{"value":999430},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145323380736}}},{"id":947822,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":39179},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145323393024},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145323916152},"rbx":{"value":123145323917312},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145323917312},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145323917312}}},{"id":947828,"name":"io.flutter.1.ui","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":96769908146176},"r9":{"value":96769908146176},"r15":{"value":96769908146176},"rbx":{"value":123145326022640},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":4525424142},"rbp":{"value":123145326022480},"rsp":{"value":123145326022376},"r12":{"value":4294967295},"rcx":{"value":123145326022376},"flavor":"x86_THREAD_STATE","rdi":{"value":123145326022640}},"frames":[{"imageOffset":3598,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":11},{"imageOffset":63010,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":11},{"imageOffset":32534,"symbol":"mach_msg_overwrite","symbolLocation":649,"imageIndex":11},{"imageOffset":4351,"symbol":"mach_msg","symbolLocation":19,"imageIndex":11},{"imageOffset":579007,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":20},{"imageOffset":556359,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":20},{"imageOffset":553993,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":20},{"imageOffset":514029,"sourceLine":51,"sourceFile":"message_loop_darwin.mm","symbol":"fml::MessageLoopDarwin::Run()","imageIndex":9,"symbolLocation":65},{"imageOffset":487410,"sourceLine":94,"sourceFile":"message_loop_impl.cc","symbol":"fml::MessageLoopImpl::DoRun()","imageIndex":9,"symbolLocation":22},{"symbol":"fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":154,"sourceFile":"thread.cc"},{"symbol":"decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":488,"sourceFile":"invoke.h"},{"symbol":"std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":185,"sourceFile":"function.h"},{"imageOffset":509393,"sourceLine":359,"sourceFile":"function.h","symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","imageIndex":9,"symbolLocation":135},{"symbol":"std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":512,"sourceFile":"function.h"},{"symbol":"std::_fl::function<void ()>::operator()() const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":1187,"sourceFile":"function.h"},{"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void) const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":19,"sourceLine":76,"sourceFile":"thread.cc"},{"imageOffset":508787,"sourceLine":73,"sourceFile":"thread.cc","symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","imageIndex":9,"symbolLocation":27},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947829,"name":"io.flutter.1.raster","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":100068443029504},"r9":{"value":100068443029504},"r15":{"value":100068443029504},"rbx":{"value":123145328132080},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":4525424142},"rbp":{"value":123145328131920},"rsp":{"value":123145328131816},"r12":{"value":4294967295},"rcx":{"value":123145328131816},"flavor":"x86_THREAD_STATE","rdi":{"value":123145328132080}},"frames":[{"imageOffset":3598,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":11},{"imageOffset":63010,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":11},{"imageOffset":32534,"symbol":"mach_msg_overwrite","symbolLocation":649,"imageIndex":11},{"imageOffset":4351,"symbol":"mach_msg","symbolLocation":19,"imageIndex":11},{"imageOffset":579007,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":20},{"imageOffset":556359,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":20},{"imageOffset":553993,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":20},{"imageOffset":514029,"sourceLine":51,"sourceFile":"message_loop_darwin.mm","symbol":"fml::MessageLoopDarwin::Run()","imageIndex":9,"symbolLocation":65},{"imageOffset":487410,"sourceLine":94,"sourceFile":"message_loop_impl.cc","symbol":"fml::MessageLoopImpl::DoRun()","imageIndex":9,"symbolLocation":22},{"symbol":"fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":154,"sourceFile":"thread.cc"},{"symbol":"decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":488,"sourceFile":"invoke.h"},{"symbol":"std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":185,"sourceFile":"function.h"},{"imageOffset":509393,"sourceLine":359,"sourceFile":"function.h","symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","imageIndex":9,"symbolLocation":135},{"symbol":"std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":512,"sourceFile":"function.h"},{"symbol":"std::_fl::function<void ()>::operator()() const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":1187,"sourceFile":"function.h"},{"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":19,"sourceLine":76,"sourceFile":"thread.cc"},{"imageOffset":508787,"sourceLine":73,"sourceFile":"thread.cc","symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","imageIndex":9,"symbolLocation":27},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947830,"name":"io.flutter.1.io","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":125357210468352},"r9":{"value":125357210468352},"r15":{"value":125357210468352},"rbx":{"value":123145330241520},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":4525424142},"rbp":{"value":123145330241360},"rsp":{"value":123145330241256},"r12":{"value":4294967295},"rcx":{"value":123145330241256},"flavor":"x86_THREAD_STATE","rdi":{"value":123145330241520}},"frames":[{"imageOffset":3598,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":11},{"imageOffset":63010,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":11},{"imageOffset":32534,"symbol":"mach_msg_overwrite","symbolLocation":649,"imageIndex":11},{"imageOffset":4351,"symbol":"mach_msg","symbolLocation":19,"imageIndex":11},{"imageOffset":579007,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":20},{"imageOffset":556359,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":20},{"imageOffset":553993,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":20},{"imageOffset":514029,"sourceLine":51,"sourceFile":"message_loop_darwin.mm","symbol":"fml::MessageLoopDarwin::Run()","imageIndex":9,"symbolLocation":65},{"imageOffset":487410,"sourceLine":94,"sourceFile":"message_loop_impl.cc","symbol":"fml::MessageLoopImpl::DoRun()","imageIndex":9,"symbolLocation":22},{"symbol":"fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":154,"sourceFile":"thread.cc"},{"symbol":"decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":488,"sourceFile":"invoke.h"},{"symbol":"std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":185,"sourceFile":"function.h"},{"imageOffset":509393,"sourceLine":359,"sourceFile":"function.h","symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","imageIndex":9,"symbolLocation":135},{"symbol":"std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":512,"sourceFile":"function.h"},{"symbol":"std::_fl::function<void ()>::operator()() const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":1187,"sourceFile":"function.h"},{"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":19,"sourceLine":76,"sourceFile":"thread.cc"},{"imageOffset":508787,"sourceLine":73,"sourceFile":"thread.cc","symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","imageIndex":9,"symbolLocation":27},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947831,"name":"io.flutter.1.profiler","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":119859652329472},"r9":{"value":119859652329472},"r15":{"value":119859652329472},"rbx":{"value":123145332350960},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":4525424142},"rbp":{"value":123145332350800},"rsp":{"value":123145332350696},"r12":{"value":4294967295},"rcx":{"value":123145332350696},"flavor":"x86_THREAD_STATE","rdi":{"value":123145332350960}},"frames":[{"imageOffset":3598,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":11},{"imageOffset":63010,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":11},{"imageOffset":32534,"symbol":"mach_msg_overwrite","symbolLocation":649,"imageIndex":11},{"imageOffset":4351,"symbol":"mach_msg","symbolLocation":19,"imageIndex":11},{"imageOffset":579007,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":20},{"imageOffset":556359,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":20},{"imageOffset":553993,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":20},{"imageOffset":514029,"sourceLine":51,"sourceFile":"message_loop_darwin.mm","symbol":"fml::MessageLoopDarwin::Run()","imageIndex":9,"symbolLocation":65},{"imageOffset":487410,"sourceLine":94,"sourceFile":"message_loop_impl.cc","symbol":"fml::MessageLoopImpl::DoRun()","imageIndex":9,"symbolLocation":22},{"symbol":"fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":154,"sourceFile":"thread.cc"},{"symbol":"decltype(std::declval<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>()()) std::_fl::__invoke[abi:v15000]<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__invoke_void_return_wrapper<void, true>::__call<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&>(fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0&)","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":488,"sourceFile":"invoke.h"},{"symbol":"std::_fl::__function::__alloc_func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()abi:v15000","inline":true,"imageIndex":9,"imageOffset":509393,"symbolLocation":122,"sourceLine":185,"sourceFile":"function.h"},{"imageOffset":509393,"sourceLine":359,"sourceFile":"function.h","symbol":"std::_fl::__function::__func<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0, std::_fl::allocator<fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0>, void ()>::operator()()","imageIndex":9,"symbolLocation":135},{"symbol":"std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":512,"sourceFile":"function.h"},{"symbol":"std::_fl::function<void ()>::operator()() const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":15,"sourceLine":1187,"sourceFile":"function.h"},{"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const","inline":true,"imageIndex":9,"imageOffset":508787,"symbolLocation":19,"sourceLine":76,"sourceFile":"thread.cc"},{"imageOffset":508787,"sourceLine":73,"sourceFile":"thread.cc","symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","imageIndex":9,"symbolLocation":27},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947835,"name":"io.worker.1","threadState":{"r13":{"value":4402341479680},"rax":{"value":4},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":123145332891648},"rsi":{"value":4402341479680},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":1024},"r10":{"value":0},"r9":{"value":160},"r15":{"value":1024},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":4525435306},"rbp":{"value":123145332891184},"rsp":{"value":123145332891032},"r12":{"value":0},"rcx":{"value":123145332891032},"flavor":"x86_THREAD_STATE","rdi":{"value":4661986760}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26536,"symbol":"_pthread_cond_wait","symbolLocation":1193,"imageIndex":12},{"symbol":"std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*)","inline":true,"imageIndex":9,"imageOffset":357664,"symbolLocation":5,"sourceLine":335,"sourceFile":"__threading_support"},{"imageOffset":357664,"sourceLine":46,"sourceFile":"condition_variable.cpp","symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&)","imageIndex":9,"symbolLocation":18},{"symbol":"void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0)","inline":true,"imageIndex":9,"imageOffset":472943,"symbolLocation":50,"sourceLine":398,"sourceFile":"__mutex_base"},{"imageOffset":472943,"sourceLine":75,"sourceFile":"concurrent_message_loop.cc","symbol":"fml::ConcurrentMessageLoop::WorkerMain()","imageIndex":9,"symbolLocation":167},{"symbol":"fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":20,"sourceFile":"concurrent_message_loop.cc"},{"symbol":"decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":284,"sourceFile":"thread"},{"imageOffset":475281,"sourceLine":295,"sourceFile":"thread","symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","imageIndex":9,"symbolLocation":191},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947836,"name":"io.worker.2","threadState":{"r13":{"value":4398046512896},"rax":{"value":4},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":123145333428224},"rsi":{"value":4398046512896},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":1024},"r10":{"value":0},"r9":{"value":160},"r15":{"value":1024},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":4525435306},"rbp":{"value":123145333427760},"rsp":{"value":123145333427608},"r12":{"value":0},"rcx":{"value":123145333427608},"flavor":"x86_THREAD_STATE","rdi":{"value":4661986760}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26536,"symbol":"_pthread_cond_wait","symbolLocation":1193,"imageIndex":12},{"symbol":"std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*)","inline":true,"imageIndex":9,"imageOffset":357664,"symbolLocation":5,"sourceLine":335,"sourceFile":"__threading_support"},{"imageOffset":357664,"sourceLine":46,"sourceFile":"condition_variable.cpp","symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&)","imageIndex":9,"symbolLocation":18},{"symbol":"void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0)","inline":true,"imageIndex":9,"imageOffset":472943,"symbolLocation":50,"sourceLine":398,"sourceFile":"__mutex_base"},{"imageOffset":472943,"sourceLine":75,"sourceFile":"concurrent_message_loop.cc","symbol":"fml::ConcurrentMessageLoop::WorkerMain()","imageIndex":9,"symbolLocation":167},{"symbol":"fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":20,"sourceFile":"concurrent_message_loop.cc"},{"symbol":"decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":284,"sourceFile":"thread"},{"imageOffset":475281,"sourceLine":295,"sourceFile":"thread","symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","imageIndex":9,"symbolLocation":191},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947837,"name":"io.worker.3","threadState":{"r13":{"value":4398046512640},"rax":{"value":4},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":123145333964800},"rsi":{"value":4398046512640},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":1024},"r10":{"value":0},"r9":{"value":160},"r15":{"value":1024},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":4525435306},"rbp":{"value":123145333964336},"rsp":{"value":123145333964184},"r12":{"value":0},"rcx":{"value":123145333964184},"flavor":"x86_THREAD_STATE","rdi":{"value":4661986760}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26536,"symbol":"_pthread_cond_wait","symbolLocation":1193,"imageIndex":12},{"symbol":"std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*)","inline":true,"imageIndex":9,"imageOffset":357664,"symbolLocation":5,"sourceLine":335,"sourceFile":"__threading_support"},{"imageOffset":357664,"sourceLine":46,"sourceFile":"condition_variable.cpp","symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&)","imageIndex":9,"symbolLocation":18},{"symbol":"void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0)","inline":true,"imageIndex":9,"imageOffset":472943,"symbolLocation":50,"sourceLine":398,"sourceFile":"__mutex_base"},{"imageOffset":472943,"sourceLine":75,"sourceFile":"concurrent_message_loop.cc","symbol":"fml::ConcurrentMessageLoop::WorkerMain()","imageIndex":9,"symbolLocation":167},{"symbol":"fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":20,"sourceFile":"concurrent_message_loop.cc"},{"symbol":"decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":284,"sourceFile":"thread"},{"imageOffset":475281,"sourceLine":295,"sourceFile":"thread","symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","imageIndex":9,"symbolLocation":191},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947838,"name":"io.worker.4","threadState":{"r13":{"value":4398046513152},"rax":{"value":260},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":123145334501376},"rsi":{"value":4398046513152},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":1024},"r10":{"value":0},"r9":{"value":160},"r15":{"value":1024},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":4525435306},"rbp":{"value":123145334500912},"rsp":{"value":123145334500760},"r12":{"value":0},"rcx":{"value":123145334500760},"flavor":"x86_THREAD_STATE","rdi":{"value":4661986760}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26536,"symbol":"_pthread_cond_wait","symbolLocation":1193,"imageIndex":12},{"symbol":"std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*)","inline":true,"imageIndex":9,"imageOffset":357664,"symbolLocation":5,"sourceLine":335,"sourceFile":"__threading_support"},{"imageOffset":357664,"sourceLine":46,"sourceFile":"condition_variable.cpp","symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&)","imageIndex":9,"symbolLocation":18},{"symbol":"void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0)","inline":true,"imageIndex":9,"imageOffset":472943,"symbolLocation":50,"sourceLine":398,"sourceFile":"__mutex_base"},{"imageOffset":472943,"sourceLine":75,"sourceFile":"concurrent_message_loop.cc","symbol":"fml::ConcurrentMessageLoop::WorkerMain()","imageIndex":9,"symbolLocation":167},{"symbol":"fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":20,"sourceFile":"concurrent_message_loop.cc"},{"symbol":"decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::_fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0&&)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":403,"sourceFile":"invoke.h"},{"symbol":"void std::_fl::__thread_execute[abi:v15000]<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>(std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>&, std::_fl::__tuple_indices<...>)","inline":true,"imageIndex":9,"imageOffset":475281,"symbolLocation":145,"sourceLine":284,"sourceFile":"thread"},{"imageOffset":475281,"sourceLine":295,"sourceFile":"thread","symbol":"void* std::_fl::__thread_proxy[abi:v15000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_deletestd::_fl::__thread_struct>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","imageIndex":9,"symbolLocation":191},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947839,"name":"dart:io EventHandler","threadState":{"r13":{"value":123145335561536},"rax":{"value":4},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":105553156131960},"rsi":{"value":0},"r8":{"value":16},"cr2":{"value":0},"rdx":{"value":0},"r10":{"value":123145335561536},"r9":{"value":123145335560480},"r15":{"value":117861},"rbx":{"value":105553156131936},"trap":{"value":133},"err":{"value":33554795},"r11":{"value":582},"rip":{"value":4525443834},"rbp":{"value":123145335562096},"rsp":{"value":123145335560472},"r12":{"value":123145335560480},"rcx":{"value":123145335560472},"flavor":"x86_THREAD_STATE","rdi":{"value":7}},"frames":[{"imageOffset":23290,"symbol":"kevent","symbolLocation":10,"imageIndex":11},{"imageOffset":6517672,"sourceLine":459,"sourceFile":"eventhandler_macos.cc","symbol":"dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long)","imageIndex":9,"symbolLocation":312},{"imageOffset":6632611,"sourceLine":91,"sourceFile":"thread_macos.cc","symbol":"dart::bin::ThreadStart(void*)","imageIndex":9,"symbolLocation":83},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947843,"name":"Dart Profiler ThreadInterrupter","threadState":{"r13":{"value":796050713662720},"rax":{"value":260},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":123145336623104},"rsi":{"value":796050713662720},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":185088},"r10":{"value":0},"r9":{"value":160},"r15":{"value":185088},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":4525435306},"rbp":{"value":123145336621776},"rsp":{"value":123145336621624},"r12":{"value":0},"rcx":{"value":123145336621624},"flavor":"x86_THREAD_STATE","rdi":{"value":105553159260080}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26536,"symbol":"_pthread_cond_wait","symbolLocation":1193,"imageIndex":12},{"imageOffset":8189086,"sourceLine":435,"sourceFile":"os_thread_macos.cc","symbol":"dart::Monitor::WaitMicros(long long)","imageIndex":9,"symbolLocation":158},{"symbol":"dart::MonitorLocker::WaitMicros(long long)","inline":true,"imageIndex":9,"imageOffset":8672175,"symbolLocation":8,"sourceLine":181,"sourceFile":"lockers.h"},{"imageOffset":8672175,"sourceLine":170,"sourceFile":"thread_interrupter.cc","symbol":"dart::ThreadInterrupter::ThreadMain(unsigned long)","imageIndex":9,"symbolLocation":303},{"imageOffset":8186670,"sourceLine":136,"sourceFile":"os_thread_macos.cc","symbol":"dart::ThreadStart(void*)","imageIndex":9,"symbolLocation":206},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947844,"name":"Dart Profiler SampleBlockProcessor","threadState":{"r13":{"value":26392574040320},"rax":{"value":260},"rflags":{"value":663},"cpu":{"value":0},"r14":{"value":6400},"rsi":{"value":26392574040320},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":256},"r10":{"value":0},"r9":{"value":160},"r15":{"value":256},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":663},"rip":{"value":4525435306},"rbp":{"value":123145337682608},"rsp":{"value":123145337682456},"r12":{"value":100000000},"rcx":{"value":123145337682456},"flavor":"x86_THREAD_STATE","rdi":{"value":105553159422912}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26585,"symbol":"_pthread_cond_wait","symbolLocation":1242,"imageIndex":12},{"imageOffset":8189062,"sourceLine":449,"sourceFile":"os_thread_macos.cc","symbol":"dart::Monitor::WaitMicros(long long)","imageIndex":9,"symbolLocation":134},{"symbol":"dart::MonitorLocker::WaitMicros(long long)","inline":true,"imageIndex":9,"imageOffset":8209067,"symbolLocation":13,"sourceLine":181,"sourceFile":"lockers.h"},{"imageOffset":8209067,"sourceLine":1875,"sourceFile":"profiler.cc","symbol":"dart::SampleBlockProcessor::ThreadMain(unsigned long)","imageIndex":9,"symbolLocation":251},{"imageOffset":8186670,"sourceLine":136,"sourceFile":"os_thread_macos.cc","symbol":"dart::ThreadStart(void*)","imageIndex":9,"symbolLocation":206},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947845,"name":"DartWorker","threadState":{"r13":{"value":16492674421248},"rax":{"value":4},"rflags":{"value":663},"cpu":{"value":0},"r14":{"value":4608},"rsi":{"value":16492674421248},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":3840},"r10":{"value":0},"r9":{"value":160},"r15":{"value":3840},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":663},"rip":{"value":4525435306},"rbp":{"value":123145338743392},"rsp":{"value":123145338743240},"r12":{"value":0},"rcx":{"value":123145338743240},"flavor":"x86_THREAD_STATE","rdi":{"value":4578116472}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26585,"symbol":"_pthread_cond_wait","symbolLocation":1242,"imageIndex":12},{"imageOffset":8189062,"sourceLine":449,"sourceFile":"os_thread_macos.cc","symbol":"dart::Monitor::WaitMicros(long long)","imageIndex":9,"symbolLocation":134},{"symbol":"dart::MonitorLocker::WaitMicros(long long)","inline":true,"imageIndex":9,"imageOffset":8675519,"symbolLocation":12,"sourceLine":181,"sourceFile":"lockers.h"},{"imageOffset":8675519,"sourceLine":183,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","imageIndex":9,"symbolLocation":543},{"imageOffset":8675987,"sourceLine":330,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::Worker::Main(unsigned long)","imageIndex":9,"symbolLocation":115},{"imageOffset":8186670,"sourceLine":136,"sourceFile":"os_thread_macos.cc","symbol":"dart::ThreadStart(void*)","imageIndex":9,"symbolLocation":206},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947859,"name":"DartWorker","threadState":{"r13":{"value":15393162793216},"rax":{"value":4},"rflags":{"value":663},"cpu":{"value":0},"r14":{"value":4352},"rsi":{"value":15393162793216},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":3584},"r10":{"value":0},"r9":{"value":160},"r15":{"value":3584},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":663},"rip":{"value":4525435306},"rbp":{"value":123145339804256},"rsp":{"value":123145339804104},"r12":{"value":0},"rcx":{"value":123145339804104},"flavor":"x86_THREAD_STATE","rdi":{"value":4578116472}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26585,"symbol":"_pthread_cond_wait","symbolLocation":1242,"imageIndex":12},{"imageOffset":8189062,"sourceLine":449,"sourceFile":"os_thread_macos.cc","symbol":"dart::Monitor::WaitMicros(long long)","imageIndex":9,"symbolLocation":134},{"symbol":"dart::MonitorLocker::WaitMicros(long long)","inline":true,"imageIndex":9,"imageOffset":8675519,"symbolLocation":12,"sourceLine":181,"sourceFile":"lockers.h"},{"imageOffset":8675519,"sourceLine":183,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","imageIndex":9,"symbolLocation":543},{"imageOffset":8675987,"sourceLine":330,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::Worker::Main(unsigned long)","imageIndex":9,"symbolLocation":115},{"imageOffset":8186670,"sourceLine":136,"sourceFile":"os_thread_macos.cc","symbol":"dart::ThreadStart(void*)","imageIndex":9,"symbolLocation":206},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947860,"name":"DartWorker","threadState":{"r13":{"value":17592186049280},"rax":{"value":260},"rflags":{"value":663},"cpu":{"value":0},"r14":{"value":4864},"rsi":{"value":17592186049280},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":4096},"r10":{"value":0},"r9":{"value":160},"r15":{"value":4096},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":663},"rip":{"value":4525435306},"rbp":{"value":123145340865120},"rsp":{"value":123145340864968},"r12":{"value":0},"rcx":{"value":123145340864968},"flavor":"x86_THREAD_STATE","rdi":{"value":4578116472}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26585,"symbol":"_pthread_cond_wait","symbolLocation":1242,"imageIndex":12},{"imageOffset":8189062,"sourceLine":449,"sourceFile":"os_thread_macos.cc","symbol":"dart::Monitor::WaitMicros(long long)","imageIndex":9,"symbolLocation":134},{"symbol":"dart::MonitorLocker::WaitMicros(long long)","inline":true,"imageIndex":9,"imageOffset":8675519,"symbolLocation":12,"sourceLine":181,"sourceFile":"lockers.h"},{"imageOffset":8675519,"sourceLine":183,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","imageIndex":9,"symbolLocation":543},{"imageOffset":8675987,"sourceLine":330,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::Worker::Main(unsigned long)","imageIndex":9,"symbolLocation":115},{"imageOffset":8186670,"sourceLine":136,"sourceFile":"os_thread_macos.cc","symbol":"dart::ThreadStart(void*)","imageIndex":9,"symbolLocation":206},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947873,"name":"DartWorker","threadState":{"r13":{"value":113253992654848},"rax":{"value":260},"rflags":{"value":663},"cpu":{"value":0},"r14":{"value":26624},"rsi":{"value":113253992654848},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":26368},"r10":{"value":0},"r9":{"value":160},"r15":{"value":26368},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":663},"rip":{"value":4525435306},"rbp":{"value":123145341925904},"rsp":{"value":123145341925752},"r12":{"value":0},"rcx":{"value":123145341925752},"flavor":"x86_THREAD_STATE","rdi":{"value":4577063784}},"frames":[{"imageOffset":14762,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":11},{"imageOffset":26585,"symbol":"_pthread_cond_wait","symbolLocation":1242,"imageIndex":12},{"imageOffset":8189062,"sourceLine":449,"sourceFile":"os_thread_macos.cc","symbol":"dart::Monitor::WaitMicros(long long)","imageIndex":9,"symbolLocation":134},{"symbol":"dart::MonitorLocker::WaitMicros(long long)","inline":true,"imageIndex":9,"imageOffset":7411873,"symbolLocation":12,"sourceLine":181,"sourceFile":"lockers.h"},{"imageOffset":7411873,"sourceLine":299,"sourceFile":"isolate.cc","symbol":"dart::MutatorThreadPool::OnEnterIdleLocked(dart::MonitorLocker*)","imageIndex":9,"symbolLocation":241},{"imageOffset":8675085,"sourceLine":167,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","imageIndex":9,"symbolLocation":109},{"imageOffset":8675987,"sourceLine":330,"sourceFile":"thread_pool.cc","symbol":"dart::ThreadPool::Worker::Main(unsigned long)","imageIndex":9,"symbolLocation":115},{"imageOffset":8186670,"sourceLine":136,"sourceFile":"os_thread_macos.cc","symbol":"dart::ThreadStart(void*)","imageIndex":9,"symbolLocation":206},{"imageOffset":25171,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":12},{"imageOffset":7151,"symbol":"thread_start","symbolLocation":15,"imageIndex":12}]},{"id":947904,"frames":[{"imageOffset":7116,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"r13":{"value":0},"rax":{"value":0},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":0},"r8":{"value":278532},"cr2":{"value":0},"rdx":{"value":123145341939712},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":0},"trap":{"value":0},"err":{"value":0},"r11":{"value":0},"rip":{"value":4524583884},"rbp":{"value":0},"rsp":{"value":123145342464000},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145342464000}}}],
"usedImages" : [
{
"source" : "P",
"arch" : "x86_64",
"base" : 4607545344,
"size" : 577536,
"uuid" : "69c73748-37ae-3a6f-83af-690645c3da75",
"path" : "/usr/lib/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4523556864,
"CFBundleShortVersionString" : "341.16",
"CFBundleIdentifier" : "com.apple.MTLSimDriver",
"size" : 225280,
"uuid" : "a0006e9e-ae30-3a8f-8a99-ca699b1dd72f",
"path" : "/Volumes/VOLUME//MTLSimDriver.framework/MTLSimDriver",
"name" : "MTLSimDriver",
"CFBundleVersion" : "341.16"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4660142080,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.gpusw.MetalSerializer",
"size" : 184320,
"uuid" : "cf2ceca8-5e91-31f1-a90a-dd42b121faf0",
"path" : "/Volumes/VOLUME/
/MetalSerializer.framework/MetalSerializer",
"name" : "MetalSerializer",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4518764544,
"size" : 53248,
"uuid" : "d32bbac4-22f2-3be3-b097-d26f19f02153",
"path" : "/Volumes/VOLUME//libobjc-trampolines.dylib",
"name" : "libobjc-trampolines.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4519309312,
"size" : 73728,
"uuid" : "5d01956a-918a-3cc8-a81e-4b5be7c1e7b1",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Runner.debug.dylib",
"name" : "Runner.debug.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4519518208,
"CFBundleShortVersionString" : "11.2.0",
"CFBundleIdentifier" : "org.cocoapods.FirebaseCore",
"size" : 73728,
"uuid" : "cffa73ab-4f06-379d-9131-97766fb3d1b9",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/FirebaseCore.framework/FirebaseCore",
"name" : "FirebaseCore",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4524949504,
"CFBundleShortVersionString" : "11.4.2",
"CFBundleIdentifier" : "org.cocoapods.FirebaseCoreInternal",
"size" : 151552,
"uuid" : "99b4c710-801b-33c3-88f5-3164da3db390",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/FirebaseCoreInternal.framework/FirebaseCoreInternal",
"name" : "FirebaseCoreInternal",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4524486656,
"CFBundleShortVersionString" : "8.0.2",
"CFBundleIdentifier" : "org.cocoapods.GoogleUtilities",
"size" : 32768,
"uuid" : "8354c120-768a-3a03-bab1-40de38ab6699",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/GoogleUtilities.framework/GoogleUtilities",
"name" : "GoogleUtilities",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4526583808,
"size" : 356352,
"uuid" : "fce8704c-24c2-3a75-b4fb-4b3dd045b80e",
"path" : "/Volumes/VOLUME/
/libswiftSpatial.dylib",
"name" : "libswiftSpatial.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4608761856,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "io.flutter.flutter",
"size" : 36229120,
"uuid" : "4c4c4493-5555-3144-a124-b5ac06a77e8b",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Frameworks/Flutter.framework/Flutter",
"name" : "Flutter",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4519120896,
"size" : 40960,
"uuid" : "2568a05f-3db8-3b09-9ea2-aaf2fc264a52",
"path" : "/usr/lib/system/libsystem_platform.dylib",
"name" : "libsystem_platform.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4525420544,
"size" : 245760,
"uuid" : "10094a6c-fa57-367f-b06e-7c449ea31285",
"path" : "/usr/lib/system/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4524576768,
"size" : 49152,
"uuid" : "c0db9cf9-86ec-31d4-a557-2c07945fd8f2",
"path" : "/usr/lib/system/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4524707840,
"CFBundleShortVersionString" : "95",
"CFBundleIdentifier" : "com.apple.mlcompiler.services",
"size" : 106496,
"uuid" : "dbf70899-fe4c-3a32-b27d-2c03683e1cc0",
"path" : "/Volumes/VOLUME//MLCompilerServices.framework/MLCompilerServices",
"name" : "MLCompilerServices",
"CFBundleVersion" : "95"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4518535168,
"CFBundleShortVersionString" : "1.0.0",
"CFBundleIdentifier" : "com.example.firebasePlay",
"size" : 16384,
"uuid" : "701168ed-38da-33b1-9b98-c426161c9fda",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/350CEBEF-F094-4323-A2E9-A08BF87C7AFE/data/Containers/Bundle/Application/451A994D-3CBE-4963-9EBC-2718EB70E2BC/Runner.app/Runner",
"name" : "Runner",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4519710720,
"size" : 360448,
"uuid" : "235c9188-4996-364b-b53b-3f2fcc80c6a7",
"path" : "/Volumes/VOLUME/
/dyld_sim",
"name" : "dyld_sim"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703129468928,
"size" : 544760,
"uuid" : "d8750eb2-be39-38ed-a1a5-f06c601e84d1",
"path" : "/Volumes/VOLUME//libsystem_c.dylib",
"name" : "libsystem_c.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703131258880,
"size" : 86012,
"uuid" : "d7bb956d-31b7-3243-a3d7-e8ace54e1752",
"path" : "/Volumes/VOLUME/
/libc++abi.dylib",
"name" : "libc++abi.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703128862720,
"size" : 241618,
"uuid" : "f2704a64-68cc-3c8d-8ed1-02f1d70d0207",
"path" : "/Volumes/VOLUME//libobjc.A.dylib",
"name" : "libobjc.A.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703130013696,
"size" : 307198,
"uuid" : "4413e494-5253-3745-b7d6-9a5067268a53",
"path" : "/Volumes/VOLUME/
/libdispatch.dylib",
"name" : "libdispatch.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703132188672,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 3727345,
"uuid" : "2e6951e4-83d7-34ca-bb18-98ff4b45820e",
"path" : "/Volumes/VOLUME//CoreFoundation.framework/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "2048.1.101"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703393751040,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.GraphicsServices",
"size" : 32759,
"uuid" : "69e8cd17-ed53-3804-9050-100ab9710d09",
"path" : "/Volumes/VOLUME/
/GraphicsServices.framework/GraphicsServices",
"name" : "GraphicsServices",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703207870464,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.UIKitCore",
"size" : 31129586,
"uuid" : "0a1d5f3f-9ef7-379d-9d1b-d17102fd53b9",
"path" : "/Volumes/VOLUME//UIKitCore.framework/UIKitCore",
"name" : "UIKitCore",
"CFBundleVersion" : "7082.1.112"
},
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703136415744,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.Foundation",
"size" : 11968503,
"uuid" : "874668ad-42a3-3199-b961-73f21e14867d",
"path" : "/Volumes/VOLUME/
/Foundation.framework/Foundation",
"name" : "Foundation",
"CFBundleVersion" : "2048.1.101"
}
],
"sharedCache" : {
"base" : 140703128616960,
"size" : 3289546752,
"uuid" : "74a59254-a516-353a-af19-4273347414b1"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=1.1G resident=0K(0%) swapped_out_or_unallocated=1.1G(100%)\nWritable regions: Total=799.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=799.8M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nActivity Tracing 256K 1 \nColorSync 24K 4 \nCoreAnimation 4K 1 \nFoundation 16K 1 \nIOSurface 4K 1 \nKernel Alloc Once 8K 1 \nMALLOC 681.8M 90 \nMALLOC guard page 32K 8 \nSTACK GUARD 56.1M 25 \nStack 29.7M 25 \nVM_ALLOCATE 90.5M 224 \n__DATA 12.4M 349 \n__DATA_CONST 34.1M 357 \n__DATA_DIRTY 42K 13 \n__FONT_DATA 2352 1 \n__LINKEDIT 592.9M 20 \n__OBJC_RO 60.7M 1 \n__OBJC_RW 1976K 1 \n__TEXT 502.9M 376 \n__TPRO_CONST 276K 1 \ndyld private memory 29.7G 8 \nmapped file 81.1M 18 \nowned unmapped memory 32K 1 \nshared memory 24K 3 \n=========== ======= ======= \nTOTAL 31.8G 1530 \n",
"legacyInfo" : {
"threadTriggered" : {
"queue" : "com.apple.main-thread"
}
},
"logWritingSignature" : "5a2728f2307acef3ce420fad4212d1c17a9002bf",
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "60da5e84ab0ca017dace9abf",
"factorPackIds" : {

  },
  "deploymentId" : 240000008
},
{
  "rolloutId" : "648cada15dbc71671bb3aa1b",
  "factorPackIds" : {
    "SIRI_EXPERIENCE_CAM" : "65a81173096f6a1f1ba46525"
  },
  "deploymentId" : 240000116
}

],
"experiments" : [
{
"treatmentId" : "45f4e2a5-551b-4bc2-a2dc-19c244dda8f8",
"experimentId" : "6643969b3099cf28e049862f",
"deploymentId" : 400000007
}
]
}
}

Model: MacBookPro16,1, BootROM 2069.0.0.0.0 (iBridge: 22.16.10353.0.0,0), 8 processors, 8-Core Intel Core i9, 2.3 GHz, 16 GB, SMC
Graphics: Intel UHD Graphics 630, Intel UHD Graphics 630, Built-In
Graphics: AMD Radeon Pro 5500M, AMD Radeon Pro 5500M, PCIe, 4 GB
Display: Color LCD, 3072 x 1920 Retina, Main, MirrorOff, Online
Display: HP 27w, 1920 x 1080 (1080p FHD - Full High Definition), MirrorOff, Online
Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, DDR4, 2667 MHz, Micron, 8ATF1G64HZ-2G6E1
Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, DDR4, 2667 MHz, Micron, 8ATF1G64HZ-2G6E1
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x7BF), wl0: Jul 26 2024 22:36:01 version 9.30.514.0.32.5.94 FWID 01-68d7ff80
AirPort:
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB3.1 Hub
USB Device: USB3.0 Card Reader
USB Device: USB31Bus
USB Device: USB2.1 Hub
USB Device: USB C Video Adaptor
USB Device: Trust Input Device
USB Device: T2Bus
USB Device: composite_device
USB Device: Touch Bar Backlight
USB Device: Touch Bar Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 63.5
Thunderbolt Bus: MacBook Pro, Apple Inc., 63.5

@google-oss-bot google-oss-bot removed the blocked: customer-response Waiting for customer response, e.g. more information was requested. label Nov 1, 2024
@StaffordInnovations
Copy link
Author

If I should manually add the ios and android elements from the flutter firebase project I can discard all my changes in git. It might have something to do with the flutter config file. My original thought was a difference in the project id or something like that but then I found the package errors

@SelaseKay
Copy link
Contributor

SelaseKay commented Nov 1, 2024

I suspect this may be a misconfiguration on your end. Can you create a complete minimal repo with steps to reproduce this issue? Kindly share the link here once you're done.

@SelaseKay SelaseKay added blocked: customer-response Waiting for customer response, e.g. more information was requested. and removed Needs Attention This issue needs maintainer attention. labels Nov 1, 2024
@StaffordInnovations
Copy link
Author

I suspect this may be a misconfiguration on your end. Can you create a complete minimal repo with steps to reproduce this issue? Kindly share the link here once you're done.

My github desktop is having issues uploading at the moment. The steps consist of creating a new flutter app, following the instructions on console.firebase.google.com for "add firebase to your flutter app" using flutterfire configure --project=kohnen2025 adding
`import 'package:firebase_core/firebase_core.dart';
import 'firebase_options.dart';

// ...

await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);`

to main.dart with firebase_core: ^3.6.0 in pubspec.yaml

I can try to upload later

@google-oss-bot google-oss-bot added Needs Attention This issue needs maintainer attention. and removed blocked: customer-response Waiting for customer response, e.g. more information was requested. labels Nov 1, 2024
@russellwheatley
Copy link
Member

@StaffordInnovations - have you enabled Swift package manager? To disable run:

flutter config --no-enable-swift-package-manager

Open a new terminal, do usual clean flutter clean and try to build

@russellwheatley russellwheatley added blocked: customer-response Waiting for customer response, e.g. more information was requested. Needs Attention This issue needs maintainer attention. and removed Needs Attention This issue needs maintainer attention. labels Nov 1, 2024
@StaffordInnovations
Copy link
Author

@StaffordInnovations - have you enabled Swift package manager? To disable run:

flutter config --no-enable-swift-package-manager

Open a new terminal, do usual clean flutter clean and try to build

didn't help :( technically it should have been disabled since I was on stable and not main but still manually tried turning it off then fully restarted Android Studio and my computer before deleting podfile.lock and doing the clean steps

@google-oss-bot google-oss-bot removed the blocked: customer-response Waiting for customer response, e.g. more information was requested. label Nov 1, 2024
@StaffordInnovations
Copy link
Author

I suspect this may be a misconfiguration on your end. Can you create a complete minimal repo with steps to reproduce this issue? Kindly share the link here once you're done.

Hi Selase please see below for the link to the github package for just a basic flutter app that's not working properly

https://github.com/StaffordInnovations/firebase_play

@SelaseKay
Copy link
Contributor

Hi @StaffordInnovations, thanks for sharing. I was able to successfully build and launch your project. The crash appears to be caused by an invalid Firebase app name containing spaces (NGT life). You have to use a valid name(NGT_life). Let me know if this resolves your issue.

@SelaseKay SelaseKay added blocked: customer-response Waiting for customer response, e.g. more information was requested. and removed Needs Attention This issue needs maintainer attention. labels Nov 4, 2024
@StaffordInnovations
Copy link
Author

Hi @StaffordInnovations, thanks for sharing. I was able to successfully build and launch your project. The crash appears to be caused by an invalid Firebase app name containing spaces (NGT life). You have to use a valid name(NGT_life). Let me know if this resolves your issue.

Hi Selase, it looks like it's the firebase config tool that ends up causing an issue in my case because of the length of my bundle id. I've actually had the firebase project for a long time so it wasn't the project name, although I went ahead and changed it to a _ instead of a space

I had to run
flutterfire configure -a"com.example.app"
and ensure there were no conflicts in the apps on the firebase console (which I had to manually add the android app)

instead of

flutterfire configure --project=app

@SelaseKay SelaseKay added resolution: user This was a user issue, e.g. invalid configuration or code. and removed blocked: customer-response Waiting for customer response, e.g. more information was requested. labels Nov 4, 2024
@garrygk
Copy link

garrygk commented Nov 10, 2024

Hey @StaffordInnovations , I'm facing the same issue as you and following this thread, it's a bit unclear what the fix was for you. Do you mind sharing?
I'm getting the "Package Loading (Xcode): Missing package product 'FirebaseAppCheck'" errors on multiple FIrebase packages. I can't find any solutions online and this thread is the only one that seems to be similar.

@StaffordInnovations
Copy link
Author

Hey @StaffordInnovations , I'm facing the same issue as you and following this thread, it's a bit unclear what the fix was for you. Do you mind sharing? I'm getting the "Package Loading (Xcode): Missing package product 'FirebaseAppCheck'" errors on multiple FIrebase packages. I can't find any solutions online and this thread is the only one that seems to be similar.

Hi Garry, so it was a configuration issue, basically conflict between my firebase project naming and the app. So I would say the first step is to make sure everything matches on your firebase console and the flutter app. Because my app name was longer (ie.staffordinnovations.app) I had to manually do use the flutterfire configure as I mentioned above.

This issue was kind of similar maybe it could help?

#13563

There's always the updating cocoa pods, deleting/reinstalling or the good ole pod cache clean --all followed by flutter clean flutter pub get,

@garrygk
Copy link

garrygk commented Nov 19, 2024

Hey @StaffordInnovations , thank you for your response! It was definitely a configuration issue, I ended up deleting my iOS folder and re-generated it and it worked fine afterwards :)

@firebase firebase locked and limited conversation to collaborators Dec 5, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
platform: ios Issues / PRs which are specifically for iOS. plugin: core resolution: user This was a user issue, e.g. invalid configuration or code. type: bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants