Skip to content

[MacOS Intel] callAsyncJavaScript causes the entire app to crash #2619

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

Open
1 of 2 tasks
sbis04 opened this issue May 12, 2025 · 7 comments
Open
1 of 2 tasks

[MacOS Intel] callAsyncJavaScript causes the entire app to crash #2619

sbis04 opened this issue May 12, 2025 · 7 comments
Labels
bug Something isn't working

Comments

@sbis04
Copy link

sbis04 commented May 12, 2025

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

Using callAsyncJavaScript causes the entire app to crash. But this just happens on the Intel-based macOS systems, works fine on macOS with Apple Silicon and Windows systems.

NOTE: This is only reproducible on the release build (debug mode works just fine).

Expected Behavior

The callAsyncJavaScript method should work on Intel-based macOS systems.

Steps with code example to reproduce

Steps with code example to reproduce
// Paste your code here

Stacktrace/Logs

MacOS Crash Stacktrace
Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Codes:       0x0000000000000001, 0x0000000000000000

Termination Reason:    Namespace SIGNAL, Code 11 Segmentation fault: 11
Terminating Process:   exc handler [13792]

VM Region Info: 0 is not in any region.  Bytes before following region: 4532932608
      REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      UNUSED SPACE AT START
--->  
      __TEXT                      10e2f1000-10ebe5000    [ 9168K] r-x/r-x SM=COW  ...S/FlutterFlow

Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   ???                           	               0x0 ???
1   flutter_inappwebview_macos    	       0x110346bcc InAppWebView.callAsyncJavaScript(functionBody:arguments:contentWorld:completionHandler:) + 284
2   flutter_inappwebview_macos    	       0x1103a350c WebViewChannelDelegate.handle(_:result:) + 23916
3   flutter_inappwebview_macos    	       0x1103157cc partial apply for implicit closure #2 in implicit closure #1 in ChannelDelegate.init(channel:) + 28
4   flutter_inappwebview_macos    	       0x110315845 thunk for @escaping @callee_guaranteed (@guaranteed FlutterMethodCall, @guaranteed @escaping @callee_guaranteed (@in_guaranteed Any?) -> ()) -> () + 101
5   FlutterMacOS                  	       0x112c2130d 0x11219d000 + 11027213
6   FlutterMacOS                  	       0x1121b41aa 0x11219d000 + 94634
7   FlutterMacOS                  	       0x112ad1125 0x11219d000 + 9650469
8   FlutterMacOS                  	       0x112ae479a 0x11219d000 + 9729946
9   FlutterMacOS                  	       0x112ae5098 0x11219d000 + 9732248
10  FlutterMacOS                  	       0x112ae1c21 0x11219d000 + 9718817
11  FlutterMacOS                  	       0x112ac8b60 0x11219d000 + 9616224
12  FlutterMacOS                  	       0x1121b7054 0x11219d000 + 106580
13  FlutterMacOS                  	       0x1121b7200 0x11219d000 + 107008
14  libdispatch.dylib             	    0x7ff81331fd91 _dispatch_call_block_and_release + 12
15  libdispatch.dylib             	    0x7ff813321033 _dispatch_client_callout + 8
16  libdispatch.dylib             	    0x7ff81332dfcf _dispatch_main_queue_drain + 954
17  libdispatch.dylib             	    0x7ff81332dc07 _dispatch_main_queue_callback_4CF + 31
18  CoreFoundation                	    0x7ff8135dd125 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
19  CoreFoundation                	    0x7ff81359ce4f __CFRunLoopRun + 2452
20  CoreFoundation                	    0x7ff81359be51 CFRunLoopRunSpecific + 560
21  HIToolbox                     	    0x7ff81d02af3d RunCurrentEventLoopInMode + 292
22  HIToolbox                     	    0x7ff81d02ad4e ReceiveNextEventCommon + 657
23  HIToolbox                     	    0x7ff81d02aaa8 _BlockUntilNextEventMatchingListInModeWithFilter + 64
24  AppKit                        	    0x7ff81663b9d8 _DPSNextEvent + 858
25  AppKit                        	    0x7ff81663a882 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1214
26  AppKit                        	    0x7ff81662cef7 -[NSApplication run] + 586
27  AppKit                        	    0x7ff816601111 NSApplicationMain + 817
28  FlutterFlow                   	       0x10e2f54dc main + 28
29  dyld                          	    0x7ff813167418 start + 1896

Flutter version

3.27.3

Operating System, Device-specific and/or Tool

Hardware:
MacBook Pro (16 inch, 2019)
2.6 GHz 6-Core Intel Core i7

Operating System
macOS Ventura (Version 13.7.5)

Plugin version

6.1.5

Additional information

No response

Self grab

  • I'm ready to work on this issue!
@sbis04 sbis04 added the bug Something isn't working label May 12, 2025
@ksokolovskyi
Copy link

ksokolovskyi commented May 14, 2025

Hi @sbis04, thanks a lot for reporting this issue. My teammate and I tried to reproduce this issue but were unable to do so. Below, I share the source code used to reproduce the issue and recordings.

ARM Intel
arm.mov
intel.mov
Source Code
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';

void main() {
  runApp(const App());
}

class App extends StatelessWidget {
  const App({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: WebViewScreen(),
      ),
    );
  }
}

class WebViewScreen extends StatefulWidget {
  const WebViewScreen({super.key});

  @override
  State<WebViewScreen> createState() => _WebViewScreenState();
}

class _WebViewScreenState extends State<WebViewScreen> {
  final _settings = InAppWebViewSettings(isInspectable: kDebugMode);

  final _isCreated = ValueNotifier(false);

  InAppWebViewController? _webViewController;

  @override
  void dispose() {
    _isCreated.dispose();
    _webViewController?.dispose();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return Column(
      mainAxisAlignment: MainAxisAlignment.center,
      crossAxisAlignment: CrossAxisAlignment.center,
      children: [
        Padding(
          padding: const EdgeInsets.all(15),
          child: ConstrainedBox(
            constraints: BoxConstraints(maxWidth: 500, maxHeight: 500),
            child: InAppWebView(
              initialUrlRequest: URLRequest(
                url: WebUri('https://flutter.dev'),
              ),
              initialSettings: _settings,
              onWebViewCreated: (controller) {
                _isCreated.value = true;
                _webViewController = controller;
              },
              onConsoleMessage: (controller, consoleMessage) {
                if (kDebugMode) {
                  print(consoleMessage);
                }
              },
            ),
          ),
        ),
        Row(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Padding(
              padding: const EdgeInsets.only(bottom: 15),
              child: ValueListenableBuilder(
                  valueListenable: _isCreated,
                  builder: (context, isLoaded, _) {
                    return ElevatedButton(
                      onPressed: isLoaded ? _callAsyncJavaScript : null,
                      child: Text('callAsyncJavaScript'),
                    );
                  }),
            ),
          ],
        ),
      ],
    );
  }

  Future<void> _callAsyncJavaScript() async {
    final result = await _webViewController!.callAsyncJavaScript(
      functionBody: '''
var p = new Promise(resolve => window.setTimeout(() => resolve(x), 2000));
await p;
return p;
''',
      arguments: {'x': 123456},
    );

    print('RESULT: ${result?.value} (${result?.value?.runtimeType})');
  }
}
Device specs and tools
  • MacBook Pro 2020, 2 GHz Quad-Core Intel Core i5
  • MacOS Sequoia 15.3.2
  • Flutter v3.29.2
  • flutter_inappwebview v6.1.5

Could you please share the minimal reproducible example that causes the crash on your side?
Thanks in advance!

@sbis04
Copy link
Author

sbis04 commented May 14, 2025

@ksokolovskyi Sorry, I missed a very important info, this is only reproducible in the release build (debug mode works just fine).

@ksokolovskyi
Copy link

@sbis04, thanks a lot for that information!
May I ask you to try to run the sample code I provided in a previous comment and verify that it causes a crash on your side?

@ksokolovskyi
Copy link

Hi @sbis04, my teammate with an Intel Mac tried the sample again in the release mode, and the crash didn't happen.

release_mode_intel.mov

@nohackjustnoobb
Copy link

Hi @ksokolovskyi, I tested your sample code on my machine, and the app is crashing even in debug mode.

Here’s my setup:

  • Device: MacBook Air (M2)
  • macOS version: 15.5
  • Flutter version: 3.32.0
  • Plugin version: 6.1.5
Crash Log
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Incident Identifier: 0816BF4A-AA2C-4C23-B33E-467B11A986A8
CrashReporter Key:   8DBB1369-DB54-5D00-E5D7-3E4D4323F773
Hardware Model:      Mac14,2
Process:             Runner [38718]
Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/6908D68F-FE66-4B59-83C5-AC39BE785E1A/data/Containers/Bundle/Application/E45DA818-8049-46CC-A881-BCD9683B0177/Runner.app/Runner
Identifier:          com.example.jsTest
Version:             0.1.0 (0.1.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd_sim [33949]
Coalition:           com.apple.CoreSimulator.SimDevice.6908D68F-FE66-4B59-83C5-AC39BE785E1A [118539]
Responsible Process: SimulatorTrampoline [1205]

Date/Time:           2025-06-04 03:59:35.8630 +0900
Launch Time:         2025-06-04 03:59:25.1838 +0900
OS Version:          macOS 15.5 (24F74)
Release Type:        User
Report Version:      104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Codes: 0x0000000000000001, 0x0000000000000000
VM Region Info: 0 is not in any region.  Bytes before following region: 4331143168
      REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      UNUSED SPACE AT START
--->  
      __TEXT                      102280000-102284000    [   16K] r-x/r-x SM=COW  /Users/USER/Library/Developer/CoreSimulator/Devices/6908D68F-FE66-4B59-83C5-AC39BE785E1A/data/Containers/Bundle/Application/E45DA818-8049-46CC-A881-BCD9683B0177/Runner.app/Runner
Termination Reason: SIGNAL 11 Segmentation fault: 11
Terminating Process: exc handler [38718]

Triggered by Thread:  0

Kernel Triage:
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter


Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   ???                           	               0x0 ???
1   flutter_inappwebview_ios      	       0x102a369c0 InAppWebView.callAsyncJavaScript(functionBody:arguments:contentWorld:completionHandler:) + 424 (InAppWebView.swift:1483)
2   flutter_inappwebview_ios      	       0x102b02cac WebViewChannelDelegate.handle(_:result:) + 51152 (WebViewChannelDelegate.swift:439)
3   flutter_inappwebview_ios      	       0x1029ad91c implicit closure #2 in implicit closure #1 in ChannelDelegate.init(channel:) + 96 (ChannelDelegate.swift:16)
4   flutter_inappwebview_ios      	       0x1029ad9b4 thunk for @escaping @callee_guaranteed (@guaranteed FlutterMethodCall, @guaranteed @escaping @callee_guaranteed (@in_guaranteed Any?) -> ()) -> () + 136
5   Flutter                       	       0x1060a8d90 __45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke + 164
6   Flutter                       	       0x105bf4274 invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>) + 108
7   libdispatch.dylib             	       0x18017c788 _dispatch_call_block_and_release + 24
8   libdispatch.dylib             	       0x180197278 _dispatch_client_callout + 12
9   libdispatch.dylib             	       0x1801b2fcc <deduplicated_symbol> + 24
10  libdispatch.dylib             	       0x18018c1c4 _dispatch_main_queue_drain + 1184
11  libdispatch.dylib             	       0x18018bd14 _dispatch_main_queue_callback_4CF + 40
12  CoreFoundation                	       0x180427fec __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
13  CoreFoundation                	       0x1804229f8 __CFRunLoopRun + 1920
14  CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
15  GraphicsServices              	       0x190f62d00 GSEventRunModal + 164
16  UIKitCore                     	       0x185bcec98 -[UIApplication _run] + 796
17  UIKitCore                     	       0x185bd3064 UIApplicationMain + 124
18  UIKitCore                     	       0x184f9ad6c 0x184d72000 + 2264428
19  Runner.debug.dylib            	       0x1022b7344 static UIApplicationDelegate.main() + 120
20  Runner.debug.dylib            	       0x1022b72bc static AppDelegate.$main() + 44
21  Runner.debug.dylib            	       0x1022b73c0 __debug_main_executable_dylib_entry_point + 28 (AppDelegate.swift:5)
22  ???                           	       0x1023d13d8 ???
23  dyld                          	       0x1024c6b98 start + 6076

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

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

Thread 3:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	       0x102328b70 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x102339fac mach_msg2_internal + 72
2   libsystem_kernel.dylib        	       0x102330c28 mach_msg_overwrite + 480
3   libsystem_kernel.dylib        	       0x102328ed8 mach_msg + 20
4   CoreFoundation                	       0x180427d14 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1804226f4 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
7   Foundation                    	       0x180f22ddc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8   Foundation                    	       0x180f22ffc -[NSRunLoop(NSRunLoop) runUntilDate:] + 60
9   UIKitCore                     	       0x185c7c724 -[UIEventFetcher threadMain] + 408
10  Foundation                    	       0x180f49b98 __NSThread__start__ + 716
11  libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 4:
0   libsystem_pthread.dylib       	       0x102395984 start_wqthread + 0

Thread 5:: io.flutter.1.raster
0   libsystem_kernel.dylib        	       0x102328b70 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x102339fac mach_msg2_internal + 72
2   libsystem_kernel.dylib        	       0x102330c28 mach_msg_overwrite + 480
3   libsystem_kernel.dylib        	       0x102328ed8 mach_msg + 20
4   CoreFoundation                	       0x180427d14 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1804226f4 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
7   Flutter                       	       0x105c22438 fml::MessageLoopDarwin::Run() + 88
8   Flutter                       	       0x105c1b804 fml::MessageLoopImpl::DoRun() + 40
9   Flutter                       	       0x105c210d0 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()() + 184
10  Flutter                       	       0x105c20da4 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36
11  libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 6:: io.flutter.1.io
0   libsystem_kernel.dylib        	       0x102328b70 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x102339fac mach_msg2_internal + 72
2   libsystem_kernel.dylib        	       0x102330c28 mach_msg_overwrite + 480
3   libsystem_kernel.dylib        	       0x102328ed8 mach_msg + 20
4   CoreFoundation                	       0x180427d14 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1804226f4 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
7   Flutter                       	       0x105c22438 fml::MessageLoopDarwin::Run() + 88
8   Flutter                       	       0x105c1b804 fml::MessageLoopImpl::DoRun() + 40
9   Flutter                       	       0x105c210d0 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()() + 184
10  Flutter                       	       0x105c20da4 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36
11  libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 7:: io.flutter.1.profiler
0   libsystem_kernel.dylib        	       0x102328b70 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x102339fac mach_msg2_internal + 72
2   libsystem_kernel.dylib        	       0x102330c28 mach_msg_overwrite + 480
3   libsystem_kernel.dylib        	       0x102328ed8 mach_msg + 20
4   CoreFoundation                	       0x180427d14 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1804226f4 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
7   Flutter                       	       0x105c22438 fml::MessageLoopDarwin::Run() + 88
8   Flutter                       	       0x105c1b804 fml::MessageLoopImpl::DoRun() + 40
9   Flutter                       	       0x105c210d0 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()() + 184
10  Flutter                       	       0x105c20da4 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36
11  libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 8:: io.worker.1
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aab8 _pthread_cond_wait + 976
2   Flutter                       	       0x105bf8958 std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x105c17e34 fml::ConcurrentMessageLoop::WorkerMain() + 140
4   Flutter                       	       0x105c18760 void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 212
5   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 9:: io.worker.2
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aab8 _pthread_cond_wait + 976
2   Flutter                       	       0x105bf8958 std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x105c17e34 fml::ConcurrentMessageLoop::WorkerMain() + 140
4   Flutter                       	       0x105c18760 void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 212
5   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 10:: io.worker.3
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aab8 _pthread_cond_wait + 976
2   Flutter                       	       0x105bf8958 std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x105c17e34 fml::ConcurrentMessageLoop::WorkerMain() + 140
4   Flutter                       	       0x105c18760 void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 212
5   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 11:: io.worker.4
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aab8 _pthread_cond_wait + 976
2   Flutter                       	       0x105bf8958 std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&) + 24
3   Flutter                       	       0x105c17e34 fml::ConcurrentMessageLoop::WorkerMain() + 140
4   Flutter                       	       0x105c18760 void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*) + 212
5   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 12:: dart:io EventHandler
0   libsystem_kernel.dylib        	       0x10232e670 kevent + 8
1   Flutter                       	       0x10606476c dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 300
2   Flutter                       	       0x1060808c4 dart::bin::ThreadStart(void*) + 88
3   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
4   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 13:: Dart Profiler ThreadInterrupter
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aae4 _pthread_cond_wait + 1020
2   Flutter                       	       0x1060cbfb4 dart::ConditionVariable::WaitMicros(dart::Mutex*, long long) + 112
3   Flutter                       	       0x106228f60 dart::ThreadInterrupter::ThreadMain(unsigned long) + 328
4   Flutter                       	       0x1061e0990 dart::ThreadStart(void*) + 204
5   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 14:: Dart Profiler SampleBlockProcessor
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aae4 _pthread_cond_wait + 1020
2   Flutter                       	       0x1060cbfb4 dart::ConditionVariable::WaitMicros(dart::Mutex*, long long) + 112
3   Flutter                       	       0x1061e54d8 dart::SampleBlockProcessor::ThreadMain(unsigned long) + 292
4   Flutter                       	       0x1061e0990 dart::ThreadStart(void*) + 204
5   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
6   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 15:: DartWorker
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aae4 _pthread_cond_wait + 1020
2   Flutter                       	       0x1060cbfb4 dart::ConditionVariable::WaitMicros(dart::Mutex*, long long) + 112
3   Flutter                       	       0x10612a1f8 dart::MutatorThreadPool::OnEnterIdleLocked(dart::MutexLocker*, dart::ThreadPool::Worker*) + 152
4   Flutter                       	       0x106229b58 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 124
5   Flutter                       	       0x106229e30 dart::ThreadPool::Worker::Main(unsigned long) + 116
6   Flutter                       	       0x1061e0990 dart::ThreadStart(void*) + 204
7   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
8   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 16:: JavaScriptCore libpas scavenger
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aab8 _pthread_cond_wait + 976
2   JavaScriptCore                	       0x199737ae8 scavenger_thread_main + 1176
3   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
4   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 17:: DartWorker
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aae4 _pthread_cond_wait + 1020
2   Flutter                       	       0x1060cbfb4 dart::ConditionVariable::WaitMicros(dart::Mutex*, long long) + 112
3   Flutter                       	       0x106229cd8 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 508
4   Flutter                       	       0x106229e30 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x1061e0990 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x102395998 thread_start + 8

Thread 18:: DartWorker
0   libsystem_kernel.dylib        	       0x10232c014 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x10239aae4 _pthread_cond_wait + 1020
2   Flutter                       	       0x1060cbfb4 dart::ConditionVariable::WaitMicros(dart::Mutex*, long long) + 112
3   Flutter                       	       0x106229cd8 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 508
4   Flutter                       	       0x106229e30 dart::ThreadPool::Worker::Main(unsigned long) + 116
5   Flutter                       	       0x1061e0990 dart::ThreadStart(void*) + 204
6   libsystem_pthread.dylib       	       0x10239a5f0 _pthread_start + 104
7   libsystem_pthread.dylib       	       0x102395998 thread_start + 8


Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0xc00000000000005e   x1: 0x40006000029333a0   x2: 0x0000600003502890   x3: 0x0000000000000000
    x4: 0x0000600002138050   x5: 0x0000000102a63028   x6: 0x0000600000c13f00   x7: 0x0000000000000000
    x8: 0x0000000000000000   x9: 0x0000000000000000  x10: 0x0000deaddead0000  x11: 0x0000000000000030
   x12: 0x0000600000000430  x13: 0x00000000001ff800  x14: 0x00000000000007fb  x15: 0x00000000a6808151
   x16: 0x0000000000000000  x17: 0x110000010326881f  x18: 0x0000000000000000  x19: 0x000000016db768a0
   x20: 0x00000001030a6c00  x21: 0x0000600000c56c70  x22: 0x0000600000c56c40  x23: 0x00000001f3c45900
   x24: 0x00000001f3c45900  x25: 0x0000600001753bc0  x26: 0x0000000000000000  x27: 0x0000000000000000
   x28: 0x0000000000000114   fp: 0x000000016db767c0   lr: 0x0000000102a367fc
    sp: 0x000000016db76700   pc: 0x0000000000000000 cpsr: 0x00001400
   far: 0x0000000000000000  esr: 0x82000006 (Instruction Abort) Translation fault

Binary Images:
       0x1024c0000 -        0x10255bfff dyld (*) <9cf0401a-a938-389e-a77d-9e9608076ccf> /usr/lib/dyld
       0x102280000 -        0x102283fff com.example.jsTest (0.1.0) <bc9614d2-15e2-3482-9456-4eabf548fb71> /Users/USER/Library/Developer/CoreSimulator/Devices/6908D68F-FE66-4B59-83C5-AC39BE785E1A/data/Containers/Bundle/Application/E45DA818-8049-46CC-A881-BCD9683B0177/Runner.app/Runner
       0x1022b4000 -        0x1022bbfff Runner.debug.dylib (*) <373ad559-1ece-3d0d-b51f-011c6fddd1c3> /Users/USER/Library/Developer/CoreSimulator/Devices/6908D68F-FE66-4B59-83C5-AC39BE785E1A/data/Containers/Bundle/Application/E45DA818-8049-46CC-A881-BCD9683B0177/Runner.app/Runner.debug.dylib
       0x102300000 -        0x10230bfff org.cocoapods.OrderedSet (6.0.3) <fd7bcc17-90f7-3324-ae5b-ea612ff8779e> /Users/USER/Library/Developer/CoreSimulator/Devices/6908D68F-FE66-4B59-83C5-AC39BE785E1A/data/Containers/Bundle/Application/E45DA818-8049-46CC-A881-BCD9683B0177/Runner.app/Frameworks/OrderedSet.framework/OrderedSet
       0x1029a8000 -        0x102b5bfff org.cocoapods.flutter-inappwebview-ios (0.0.1) <856cb751-565c-3a0d-b9fb-2a6ce1a7fed9> /Users/USER/Library/Developer/CoreSimulator/Devices/6908D68F-FE66-4B59-83C5-AC39BE785E1A/data/Containers/Bundle/Application/E45DA818-8049-46CC-A881-BCD9683B0177/Runner.app/Frameworks/flutter_inappwebview_ios.framework/flutter_inappwebview_ios
       0x105b94000 -        0x107d0ffff io.flutter.flutter (1.0) <4c4c4422-5555-3144-a18d-7705321ff9dd> /Users/USER/Library/Developer/CoreSimulator/Devices/6908D68F-FE66-4B59-83C5-AC39BE785E1A/data/Containers/Bundle/Application/E45DA818-8049-46CC-A881-BCD9683B0177/Runner.app/Frameworks/Flutter.framework/Flutter
       0x1022d4000 -        0x1022dbfff libsystem_platform.dylib (*) <93afc0a9-eec9-3f50-9339-09c7757aa50a> /usr/lib/system/libsystem_platform.dylib
       0x102328000 -        0x102363fff libsystem_kernel.dylib (*) <4068b2ee-a54f-397e-882d-c5e3a40b789a> /usr/lib/system/libsystem_kernel.dylib
       0x102394000 -        0x1023a3fff libsystem_pthread.dylib (*) <e9238785-e581-3e65-bedb-179c698d3554> /usr/lib/system/libsystem_pthread.dylib
       0x10282c000 -        0x102837fff libobjc-trampolines.dylib (*) <22dfc621-7386-3de3-87b2-9ed27c8be84d> /Volumes/VOLUME/*/libobjc-trampolines.dylib
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
       0x18017b000 -        0x1801bfb5f libdispatch.dylib (*) <7bee27fd-f519-330d-aebe-d6ace467df22> /Volumes/VOLUME/*/libdispatch.dylib
       0x180395000 -        0x1807acfff com.apple.CoreFoundation (6.9) <3d4aa1d5-03aa-3365-b767-944509b9bbfd> /Volumes/VOLUME/*/CoreFoundation.framework/CoreFoundation
       0x190f60000 -        0x190f681ff com.apple.GraphicsServices (1.0) <eeb999f0-53c2-31ce-b203-3c78fb303dab> /Volumes/VOLUME/*/GraphicsServices.framework/GraphicsServices
       0x184d72000 -        0x186adb8df com.apple.UIKitCore (1.0) <d4c23b9a-c567-3e42-86ef-697aec976159> /Volumes/VOLUME/*/UIKitCore.framework/UIKitCore
       0x18082c000 -        0x1813f18df com.apple.Foundation (6.9) <6ec60314-780a-318f-8bdb-5d173b13970e> /Volumes/VOLUME/*/Foundation.framework/Foundation
       0x1980ff000 -        0x19993123f com.apple.JavaScriptCore (8621) <5ebfe6ea-8077-3a92-9761-965c0e9ea6e6> /Volumes/VOLUME/*/JavaScriptCore.framework/JavaScriptCore

EOF

-----------
Full Report
-----------

{"app_name":"Runner","timestamp":"2025-06-04 03:59:38.00 +0900","app_version":"0.1.0","slice_uuid":"bc9614d2-15e2-3482-9456-4eabf548fb71","build_version":"0.1.0","platform":7,"bundleID":"com.example.jsTest","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 15.5 (24F74)","roots_installed":0,"name":"Runner","incident_id":"0816BF4A-AA2C-4C23-B33E-467B11A986A8"}
{
  "uptime" : 830000,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "Mac14,2",
  "coalitionID" : 118539,
  "osVersion" : {
    "train" : "macOS 15.5",
    "build" : "24F74",
    "releaseType" : "User"
  },
  "captureTime" : "2025-06-04 03:59:35.8630 +0900",
  "codeSigningMonitor" : 1,
  "incident" : "0816BF4A-AA2C-4C23-B33E-467B11A986A8",
  "pid" : 38718,
  "translated" : false,
  "cpuType" : "ARM-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2025-06-04 03:59:25.1838 +0900",
  "procStartAbsTime" : 20075507150374,
  "procExitAbsTime" : 20075761408907,
  "procName" : "Runner",
  "procPath" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Runner",
  "bundleInfo" : {"CFBundleShortVersionString":"0.1.0","CFBundleVersion":"0.1.0","CFBundleIdentifier":"com.example.jsTest"},
  "storeInfo" : {"deviceIdentifierForVendor":"C16C9D5F-7E3C-54B7-AF0F-C988F269DA3F","thirdParty":true},
  "parentProc" : "launchd_sim",
  "parentPid" : 33949,
  "coalitionName" : "com.apple.CoreSimulator.SimDevice.6908D68F-FE66-4B59-83C5-AC39BE785E1A",
  "crashReporterKey" : "8DBB1369-DB54-5D00-E5D7-3E4D4323F773",
  "appleIntelligenceStatus" : {"state":"unavailable","reasons":["selectedSiriLanguageIneligible","selectedLanguageDoesNotMatchSelectedSiriLanguage"]},
  "responsiblePid" : 1205,
  "responsibleProc" : "SimulatorTrampoline",
  "codeSigningID" : "com.example.jsTest",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 570425857,
  "codeSigningValidationCategory" : 10,
  "codeSigningTrustLevel" : 4294967295,
  "codeSigningAuxiliaryInfo" : 0,
  "bootSessionUUID" : "77C29C5E-B664-41EC-83D4-7A5EC1F0E532",
  "wakeTime" : 20264,
  "sleepWakeUUID" : "270443B2-BB21-413D-8CC7-2AFA00170E98",
  "sip" : "enabled",
  "vmRegionInfo" : "0 is not in any region.  Bytes before following region: 4331143168\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      102280000-102284000    [   16K] r-x\/r-x SM=COW  \/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Runner",
  "exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000000"},
  "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":38718},
  "ktriageinfo" : "VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\n",
  "vmregioninfo" : "0 is not in any region.  Bytes before following region: 4331143168\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      102280000-102284000    [   16K] r-x\/r-x SM=COW  \/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Runner",
  "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},
  "faultingThread" : 0,
  "threads" : [{"triggered":true,"id":32786794,"threadState":{"x":[{"value":13835058055282163806},{"value":4611791571586855840},{"value":105553171851408},{"value":0},{"value":105553151098960},{"value":4339413032,"sourceFile":"\/<compiler-generated>","symbol":"partial apply for closure #1 in InAppWebView.callAsyncJavaScript(functionBody:arguments:contentWorld:completionHandler:)","symbolLocation":0},{"value":105553128931072},{"value":0},{"value":0},{"value":0},{"value":244838346588160},{"value":48},{"value":105553116267568},{"value":2095104},{"value":2043},{"value":2793439569},{"value":0},{"value":1224979102992599071},{"value":0},{"value":6135703712},{"value":4345981952},{"value":105553129204848},{"value":105553129204800},{"value":8384698624,"symbolLocation":0,"symbol":"_dispatch_main_q"},{"value":8384698624,"symbolLocation":0,"symbol":"_dispatch_main_q"},{"value":105553140726720},{"value":0},{"value":0},{"value":276}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4339230716},"cpsr":{"value":5120},"fp":{"value":6135703488},"sp":{"value":6135703296},"esr":{"value":2181038086,"description":"(Instruction Abort) Translation fault"},"pc":{"value":0},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":0,"imageIndex":10},{"imageOffset":584128,"sourceLine":1483,"sourceFile":"InAppWebView.swift","symbol":"InAppWebView.callAsyncJavaScript(functionBody:arguments:contentWorld:completionHandler:)","imageIndex":4,"symbolLocation":424},{"imageOffset":1420460,"sourceLine":439,"sourceFile":"WebViewChannelDelegate.swift","symbol":"WebViewChannelDelegate.handle(_:result:)","imageIndex":4,"symbolLocation":51152},{"imageOffset":22812,"sourceLine":16,"sourceFile":"ChannelDelegate.swift","symbol":"implicit closure #2 in implicit closure #1 in ChannelDelegate.init(channel:)","imageIndex":4,"symbolLocation":96},{"imageOffset":22964,"sourceFile":"\/<compiler-generated>","symbol":"thunk for @escaping @callee_guaranteed (@guaranteed FlutterMethodCall, @guaranteed @escaping @callee_guaranteed (@in_guaranteed Any?) -> ()) -> ()","symbolLocation":136,"imageIndex":4},{"imageOffset":5328272,"symbol":"__45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke","symbolLocation":164,"imageIndex":5},{"imageOffset":393844,"symbol":"invocation function for block in flutter::PlatformMessageHandlerIos::HandlePlatformMessage(std::_fl::unique_ptr<flutter::PlatformMessage, std::_fl::default_delete<flutter::PlatformMessage>>)","symbolLocation":108,"imageIndex":5},{"imageOffset":6024,"symbol":"_dispatch_call_block_and_release","symbolLocation":24,"imageIndex":11},{"imageOffset":115320,"symbol":"_dispatch_client_callout","symbolLocation":12,"imageIndex":11},{"imageOffset":229324,"symbol":"<deduplicated_symbol>","symbolLocation":24,"imageIndex":11},{"imageOffset":70084,"symbol":"_dispatch_main_queue_drain","symbolLocation":1184,"imageIndex":11},{"imageOffset":68884,"symbol":"_dispatch_main_queue_callback_4CF","symbolLocation":40,"imageIndex":11},{"imageOffset":602092,"symbol":"__CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__","symbolLocation":12,"imageIndex":12},{"imageOffset":580088,"symbol":"__CFRunLoopRun","symbolLocation":1920,"imageIndex":12},{"imageOffset":577084,"symbol":"CFRunLoopRunSpecific","symbolLocation":536,"imageIndex":12},{"imageOffset":11520,"symbol":"GSEventRunModal","symbolLocation":164,"imageIndex":13},{"imageOffset":15060120,"symbol":"-[UIApplication _run]","symbolLocation":796,"imageIndex":14},{"imageOffset":15077476,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":14},{"imageOffset":2264428,"imageIndex":14},{"imageOffset":13124,"sourceFile":"\/<compiler-generated>","symbol":"static UIApplicationDelegate.main()","symbolLocation":120,"imageIndex":2},{"imageOffset":12988,"sourceFile":"\/<compiler-generated>","symbol":"static AppDelegate.$main()","symbolLocation":44,"imageIndex":2},{"imageOffset":13248,"sourceLine":5,"sourceFile":"AppDelegate.swift","symbol":"__debug_main_executable_dylib_entry_point","imageIndex":2,"symbolLocation":28},{"imageOffset":4332524504,"imageIndex":10},{"imageOffset":27544,"symbol":"start","symbolLocation":6076,"imageIndex":0}]},{"id":32786867,"frames":[{"imageOffset":6532,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"x":[{"value":6136295424},{"value":7431},{"value":6135758848},{"value":0},{"value":409602},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6136295424},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4332280196},"far":{"value":0}}},{"id":32786870,"frames":[{"imageOffset":6532,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"x":[{"value":6138015744},{"value":10243},{"value":6137479168},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6138015744},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4332280196},"far":{"value":0}}},{"id":32786872,"name":"com.apple.uikit.eventfetch-thread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":65983582568448},{"value":0},{"value":65983582568448},{"value":2},{"value":4294967295},{"value":0},{"value":17179869184},{"value":0},{"value":2},{"value":0},{"value":0},{"value":15363},{"value":3072},{"value":18446744073709551569},{"value":2},{"value":0},{"value":4294967295},{"value":2},{"value":65983582568448},{"value":0},{"value":65983582568448},{"value":6139157896},{"value":8589934592},{"value":21592279046},{"value":18446744073709550527},{"value":4412409862,"symbolLocation":6941990,"symbol":"kDartIsolateSnapshotData"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4331904940},"cpsr":{"value":4096},"fp":{"value":6139157744},"sp":{"value":6139157664},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331834224},"far":{"value":0}},"frames":[{"imageOffset":2928,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":7},{"imageOffset":73644,"symbol":"mach_msg2_internal","symbolLocation":72,"imageIndex":7},{"imageOffset":35880,"symbol":"mach_msg_overwrite","symbolLocation":480,"imageIndex":7},{"imageOffset":3800,"symbol":"mach_msg","symbolLocation":20,"imageIndex":7},{"imageOffset":601364,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":12},{"imageOffset":579316,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":12},{"imageOffset":577084,"symbol":"CFRunLoopRunSpecific","symbolLocation":536,"imageIndex":12},{"imageOffset":7302620,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":15},{"imageOffset":7303164,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":15},{"imageOffset":15771428,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":408,"imageIndex":14},{"imageOffset":7461784,"symbol":"__NSThread__start__","symbolLocation":716,"imageIndex":15},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786873,"frames":[{"imageOffset":6532,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"x":[{"value":6139736064},{"value":21255},{"value":6139199488},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6139736064},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4332280196},"far":{"value":0}}},{"id":32786885,"name":"io.flutter.1.raster","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":133053791862784},{"value":0},{"value":133053791862784},{"value":2},{"value":4294967295},{"value":0},{"value":17179869184},{"value":0},{"value":2},{"value":0},{"value":0},{"value":30979},{"value":3072},{"value":18446744073709551569},{"value":1099511628034},{"value":0},{"value":4294967295},{"value":2},{"value":133053791862784},{"value":0},{"value":133053791862784},{"value":6141878280},{"value":8589934592},{"value":21592279046},{"value":18446744073709550527},{"value":4412409862,"symbolLocation":6941990,"symbol":"kDartIsolateSnapshotData"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4331904940},"cpsr":{"value":4096},"fp":{"value":6141878128},"sp":{"value":6141878048},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331834224},"far":{"value":0}},"frames":[{"imageOffset":2928,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":7},{"imageOffset":73644,"symbol":"mach_msg2_internal","symbolLocation":72,"imageIndex":7},{"imageOffset":35880,"symbol":"mach_msg_overwrite","symbolLocation":480,"imageIndex":7},{"imageOffset":3800,"symbol":"mach_msg","symbolLocation":20,"imageIndex":7},{"imageOffset":601364,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":12},{"imageOffset":579316,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":12},{"imageOffset":577084,"symbol":"CFRunLoopRunSpecific","symbolLocation":536,"imageIndex":12},{"imageOffset":582712,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":88,"imageIndex":5},{"imageOffset":555012,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":40,"imageIndex":5},{"imageOffset":577744,"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()()","symbolLocation":184,"imageIndex":5},{"imageOffset":576932,"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","symbolLocation":36,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786886,"name":"io.flutter.1.io","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":128655745351680},{"value":0},{"value":128655745351680},{"value":2},{"value":4294967295},{"value":0},{"value":17179869184},{"value":0},{"value":2},{"value":0},{"value":0},{"value":29955},{"value":3072},{"value":18446744073709551569},{"value":2},{"value":0},{"value":4294967295},{"value":2},{"value":128655745351680},{"value":0},{"value":128655745351680},{"value":6144024584},{"value":8589934592},{"value":21592279046},{"value":18446744073709550527},{"value":4412409862,"symbolLocation":6941990,"symbol":"kDartIsolateSnapshotData"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4331904940},"cpsr":{"value":4096},"fp":{"value":6144024432},"sp":{"value":6144024352},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331834224},"far":{"value":0}},"frames":[{"imageOffset":2928,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":7},{"imageOffset":73644,"symbol":"mach_msg2_internal","symbolLocation":72,"imageIndex":7},{"imageOffset":35880,"symbol":"mach_msg_overwrite","symbolLocation":480,"imageIndex":7},{"imageOffset":3800,"symbol":"mach_msg","symbolLocation":20,"imageIndex":7},{"imageOffset":601364,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":12},{"imageOffset":579316,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":12},{"imageOffset":577084,"symbol":"CFRunLoopRunSpecific","symbolLocation":536,"imageIndex":12},{"imageOffset":582712,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":88,"imageIndex":5},{"imageOffset":555012,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":40,"imageIndex":5},{"imageOffset":577744,"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()()","symbolLocation":184,"imageIndex":5},{"imageOffset":576932,"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","symbolLocation":36,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786887,"name":"io.flutter.1.profiler","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":112163070935040},{"value":0},{"value":112163070935040},{"value":2},{"value":4294967295},{"value":0},{"value":17179869184},{"value":0},{"value":2},{"value":0},{"value":0},{"value":26115},{"value":3072},{"value":18446744073709551569},{"value":2},{"value":0},{"value":4294967295},{"value":2},{"value":112163070935040},{"value":0},{"value":112163070935040},{"value":6146170888},{"value":8589934592},{"value":21592279046},{"value":18446744073709550527},{"value":4412409862,"symbolLocation":6941990,"symbol":"kDartIsolateSnapshotData"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4331904940},"cpsr":{"value":4096},"fp":{"value":6146170736},"sp":{"value":6146170656},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331834224},"far":{"value":0}},"frames":[{"imageOffset":2928,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":7},{"imageOffset":73644,"symbol":"mach_msg2_internal","symbolLocation":72,"imageIndex":7},{"imageOffset":35880,"symbol":"mach_msg_overwrite","symbolLocation":480,"imageIndex":7},{"imageOffset":3800,"symbol":"mach_msg","symbolLocation":20,"imageIndex":7},{"imageOffset":601364,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":12},{"imageOffset":579316,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":12},{"imageOffset":577084,"symbol":"CFRunLoopRunSpecific","symbolLocation":536,"imageIndex":12},{"imageOffset":582712,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":88,"imageIndex":5},{"imageOffset":555012,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":40,"imageIndex":5},{"imageOffset":577744,"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()()","symbolLocation":184,"imageIndex":5},{"imageOffset":576932,"symbol":"fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*)","symbolLocation":36,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786888,"name":"io.worker.1","threadState":{"x":[{"value":4},{"value":0},{"value":1024},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6146747864},{"value":0},{"value":0},{"value":2},{"value":2},{"value":0},{"value":0},{"value":0},{"value":305},{"value":232},{"value":0},{"value":4343277896},{"value":4343277960},{"value":6146748640},{"value":0},{"value":0},{"value":1024},{"value":1025},{"value":1280},{"value":1},{"value":105553118502144}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332300984},"cpsr":{"value":1610616832},"fp":{"value":6146747984},"sp":{"value":6146747840},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27320,"symbol":"_pthread_cond_wait","symbolLocation":976,"imageIndex":8},{"imageOffset":411992,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":5},{"imageOffset":540212,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":140,"imageIndex":5},{"imageOffset":542560,"symbol":"void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":212,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786889,"name":"io.worker.2","threadState":{"x":[{"value":4},{"value":0},{"value":1024},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6147321304},{"value":0},{"value":0},{"value":2},{"value":2},{"value":0},{"value":0},{"value":0},{"value":305},{"value":88},{"value":0},{"value":4343277896},{"value":4343277960},{"value":6147322080},{"value":0},{"value":0},{"value":1024},{"value":1024},{"value":2048},{"value":1},{"value":105553118497536}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332300984},"cpsr":{"value":1610616832},"fp":{"value":6147321424},"sp":{"value":6147321280},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27320,"symbol":"_pthread_cond_wait","symbolLocation":976,"imageIndex":8},{"imageOffset":411992,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":5},{"imageOffset":540212,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":140,"imageIndex":5},{"imageOffset":542560,"symbol":"void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":212,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786890,"name":"io.worker.3","threadState":{"x":[{"value":4},{"value":0},{"value":1024},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6147894744},{"value":0},{"value":0},{"value":2},{"value":2},{"value":0},{"value":0},{"value":0},{"value":305},{"value":65},{"value":0},{"value":4343277896},{"value":4343277960},{"value":6147895520},{"value":0},{"value":0},{"value":1024},{"value":1024},{"value":1792},{"value":1},{"value":105553118496800}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332300984},"cpsr":{"value":1610616832},"fp":{"value":6147894864},"sp":{"value":6147894720},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27320,"symbol":"_pthread_cond_wait","symbolLocation":976,"imageIndex":8},{"imageOffset":411992,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":5},{"imageOffset":540212,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":140,"imageIndex":5},{"imageOffset":542560,"symbol":"void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":212,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786891,"name":"io.worker.4","threadState":{"x":[{"value":260},{"value":0},{"value":1024},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6148468184},{"value":0},{"value":0},{"value":2},{"value":2},{"value":0},{"value":0},{"value":0},{"value":305},{"value":139},{"value":0},{"value":4343277896},{"value":4343277960},{"value":6148468960},{"value":0},{"value":0},{"value":1024},{"value":1024},{"value":1536},{"value":1},{"value":105553118499168}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332300984},"cpsr":{"value":1610616832},"fp":{"value":6148468304},"sp":{"value":6148468160},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27320,"symbol":"_pthread_cond_wait","symbolLocation":976,"imageIndex":8},{"imageOffset":411992,"symbol":"std::_fl::condition_variable::wait(std::_fl::unique_lock<std::_fl::mutex>&)","symbolLocation":24,"imageIndex":5},{"imageOffset":540212,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":140,"imageIndex":5},{"imageOffset":542560,"symbol":"void* std::_fl::__thread_proxy[abi:nn210000]<std::_fl::tuple<std::_fl::unique_ptr<std::_fl::__thread_struct, std::_fl::default_delete<std::_fl::__thread_struct>>, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>>(void*)","symbolLocation":212,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786892,"name":"dart:io EventHandler","threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":6149565720},{"value":16},{"value":6149564680},{"value":0},{"value":0},{"value":284000000},{"value":110},{"value":24},{"value":3},{"value":0},{"value":58624},{"value":58368},{"value":0},{"value":363},{"value":250688651191552},{"value":0},{"value":105553156232160},{"value":6149564680},{"value":67108864},{"value":2147483647},{"value":274877907},{"value":4294966296},{"value":1000000},{"value":1213217294},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4396042092},"cpsr":{"value":536875008},"fp":{"value":6149566320},"sp":{"value":6149564656},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331857520},"far":{"value":0}},"frames":[{"imageOffset":26224,"symbol":"kevent","symbolLocation":8,"imageIndex":7},{"imageOffset":5048172,"symbol":"dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long)","symbolLocation":300,"imageIndex":5},{"imageOffset":5163204,"symbol":"dart::bin::ThreadStart(void*)","symbolLocation":88,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786893,"name":"Dart Profiler ThreadInterrupter","threadState":{"x":[{"value":316},{"value":0},{"value":273408},{"value":0},{"value":0},{"value":160},{"value":0},{"value":1000000},{"value":274689},{"value":0},{"value":1280},{"value":5497558140162},{"value":5497558140162},{"value":1280},{"value":0},{"value":5497558140160},{"value":305},{"value":1178676465250560},{"value":0},{"value":105553162541312},{"value":105553162541384},{"value":1},{"value":1000000},{"value":0},{"value":273408},{"value":274689},{"value":274944},{"value":4426862592,"symbolLocation":3816,"symbol":"dart::Symbols::symbol_handles_"},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332301028},"cpsr":{"value":2684358656},"fp":{"value":6150662800},"sp":{"value":6150662656},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27364,"symbol":"_pthread_cond_wait","symbolLocation":1020,"imageIndex":8},{"imageOffset":5472180,"symbol":"dart::ConditionVariable::WaitMicros(dart::Mutex*, long long)","symbolLocation":112,"imageIndex":5},{"imageOffset":6901600,"symbol":"dart::ThreadInterrupter::ThreadMain(unsigned long)","symbolLocation":328,"imageIndex":5},{"imageOffset":6605200,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786894,"name":"Dart Profiler SampleBlockProcessor","threadState":{"x":[{"value":260},{"value":0},{"value":256},{"value":0},{"value":0},{"value":160},{"value":0},{"value":100000000},{"value":24321},{"value":0},{"value":0},{"value":2},{"value":2},{"value":0},{"value":0},{"value":0},{"value":305},{"value":105553156169888},{"value":0},{"value":105553162437376},{"value":105553162437448},{"value":1},{"value":100000000},{"value":0},{"value":256},{"value":24321},{"value":24576},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332301028},"cpsr":{"value":2684358656},"fp":{"value":6151760528},"sp":{"value":6151760384},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27364,"symbol":"_pthread_cond_wait","symbolLocation":1020,"imageIndex":8},{"imageOffset":5472180,"symbol":"dart::ConditionVariable::WaitMicros(dart::Mutex*, long long)","symbolLocation":112,"imageIndex":5},{"imageOffset":6624472,"symbol":"dart::SampleBlockProcessor::ThreadMain(unsigned long)","symbolLocation":292,"imageIndex":5},{"imageOffset":6605200,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786898,"name":"DartWorker","threadState":{"x":[{"value":260},{"value":0},{"value":58624},{"value":0},{"value":0},{"value":160},{"value":61},{"value":0},{"value":58625},{"value":0},{"value":768},{"value":3298534884098},{"value":3298534884098},{"value":768},{"value":0},{"value":3298534884096},{"value":305},{"value":58},{"value":0},{"value":4335902680},{"value":105553156233936},{"value":1},{"value":0},{"value":61},{"value":58624},{"value":58625},{"value":58880},{"value":4426862592,"symbolLocation":3816,"symbol":"dart::Symbols::symbol_handles_"},{"value":1000}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332301028},"cpsr":{"value":2684358656},"fp":{"value":6155053552},"sp":{"value":6155053408},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27364,"symbol":"_pthread_cond_wait","symbolLocation":1020,"imageIndex":8},{"imageOffset":5472180,"symbol":"dart::ConditionVariable::WaitMicros(dart::Mutex*, long long)","symbolLocation":112,"imageIndex":5},{"imageOffset":5857784,"symbol":"dart::MutatorThreadPool::OnEnterIdleLocked(dart::MutexLocker*, dart::ThreadPool::Worker*)","symbolLocation":152,"imageIndex":5},{"imageOffset":6904664,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":124,"imageIndex":5},{"imageOffset":6905392,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":5},{"imageOffset":6605200,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32786974,"name":"JavaScriptCore libpas scavenger","threadState":{"x":[{"value":260},{"value":0},{"value":11008},{"value":0},{"value":0},{"value":160},{"value":0},{"value":99999008},{"value":6156725928},{"value":0},{"value":0},{"value":2},{"value":2},{"value":0},{"value":0},{"value":0},{"value":305},{"value":0},{"value":0},{"value":4757973056},{"value":4757973120},{"value":6156726496},{"value":99999008},{"value":0},{"value":11008},{"value":11009},{"value":11264},{"value":8393973760,"symbolLocation":7888,"symbol":"pas_compact_expendable_memory_header"},{"value":8393965568,"symbolLocation":4900,"symbol":"jit_common_primitive_heap_support"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332300984},"cpsr":{"value":1610616832},"fp":{"value":6156726048},"sp":{"value":6156725904},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27320,"symbol":"_pthread_cond_wait","symbolLocation":976,"imageIndex":8},{"imageOffset":23300840,"symbol":"scavenger_thread_main","symbolLocation":1176,"imageIndex":16},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32787744,"name":"DartWorker","threadState":{"x":[{"value":260},{"value":0},{"value":512},{"value":0},{"value":0},{"value":160},{"value":4},{"value":986704000},{"value":513},{"value":0},{"value":512},{"value":2199023256066},{"value":2199023256066},{"value":512},{"value":0},{"value":2199023256064},{"value":305},{"value":28},{"value":0},{"value":4343282104},{"value":105553156114064},{"value":1},{"value":986704000},{"value":4},{"value":512},{"value":513},{"value":768},{"value":4426862592,"symbolLocation":3816,"symbol":"dart::Symbols::symbol_handles_"},{"value":1000}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332301028},"cpsr":{"value":2684358656},"fp":{"value":6137391680},"sp":{"value":6137391536},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27364,"symbol":"_pthread_cond_wait","symbolLocation":1020,"imageIndex":8},{"imageOffset":5472180,"symbol":"dart::ConditionVariable::WaitMicros(dart::Mutex*, long long)","symbolLocation":112,"imageIndex":5},{"imageOffset":6905048,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":508,"imageIndex":5},{"imageOffset":6905392,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":5},{"imageOffset":6605200,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]},{"id":32787782,"name":"DartWorker","threadState":{"x":[{"value":260},{"value":0},{"value":512},{"value":0},{"value":0},{"value":160},{"value":5},{"value":0},{"value":513},{"value":0},{"value":512},{"value":2199023256066},{"value":2199023256066},{"value":512},{"value":0},{"value":2199023256064},{"value":305},{"value":77},{"value":0},{"value":4343282104},{"value":105553156142448},{"value":1},{"value":0},{"value":5},{"value":512},{"value":513},{"value":768},{"value":4426862592,"symbolLocation":3816,"symbol":"dart::Symbols::symbol_handles_"},{"value":1000}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4332301028},"cpsr":{"value":2684358656},"fp":{"value":6156151360},"sp":{"value":6156151216},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4331847700},"far":{"value":0}},"frames":[{"imageOffset":16404,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":7},{"imageOffset":27364,"symbol":"_pthread_cond_wait","symbolLocation":1020,"imageIndex":8},{"imageOffset":5472180,"symbol":"dart::ConditionVariable::WaitMicros(dart::Mutex*, long long)","symbolLocation":112,"imageIndex":5},{"imageOffset":6905048,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":508,"imageIndex":5},{"imageOffset":6905392,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":116,"imageIndex":5},{"imageOffset":6605200,"symbol":"dart::ThreadStart(void*)","symbolLocation":204,"imageIndex":5},{"imageOffset":26096,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":8},{"imageOffset":6552,"symbol":"thread_start","symbolLocation":8,"imageIndex":8}]}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 4333502464,
    "size" : 638976,
    "uuid" : "9cf0401a-a938-389e-a77d-9e9608076ccf",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4331143168,
    "CFBundleShortVersionString" : "0.1.0",
    "CFBundleIdentifier" : "com.example.jsTest",
    "size" : 16384,
    "uuid" : "bc9614d2-15e2-3482-9456-4eabf548fb71",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Runner",
    "name" : "Runner",
    "CFBundleVersion" : "0.1.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4331356160,
    "size" : 32768,
    "uuid" : "373ad559-1ece-3d0d-b51f-011c6fddd1c3",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Runner.debug.dylib",
    "name" : "Runner.debug.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4331667456,
    "CFBundleShortVersionString" : "6.0.3",
    "CFBundleIdentifier" : "org.cocoapods.OrderedSet",
    "size" : 49152,
    "uuid" : "fd7bcc17-90f7-3324-ae5b-ea612ff8779e",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Frameworks\/OrderedSet.framework\/OrderedSet",
    "name" : "OrderedSet",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4338647040,
    "CFBundleShortVersionString" : "0.0.1",
    "CFBundleIdentifier" : "org.cocoapods.flutter-inappwebview-ios",
    "size" : 1785856,
    "uuid" : "856cb751-565c-3a0d-b9fb-2a6ce1a7fed9",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Frameworks\/flutter_inappwebview_ios.framework\/flutter_inappwebview_ios",
    "name" : "flutter_inappwebview_ios",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4390993920,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "io.flutter.flutter",
    "size" : 35110912,
    "uuid" : "4c4c4422-5555-3144-a18d-7705321ff9dd",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/6908D68F-FE66-4B59-83C5-AC39BE785E1A\/data\/Containers\/Bundle\/Application\/E45DA818-8049-46CC-A881-BCD9683B0177\/Runner.app\/Frameworks\/Flutter.framework\/Flutter",
    "name" : "Flutter",
    "CFBundleVersion" : "1.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4331487232,
    "size" : 32768,
    "uuid" : "93afc0a9-eec9-3f50-9339-09c7757aa50a",
    "path" : "\/usr\/lib\/system\/libsystem_platform.dylib",
    "name" : "libsystem_platform.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4331831296,
    "size" : 245760,
    "uuid" : "4068b2ee-a54f-397e-882d-c5e3a40b789a",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4332273664,
    "size" : 65536,
    "uuid" : "e9238785-e581-3e65-bedb-179c698d3554",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4337090560,
    "size" : 49152,
    "uuid" : "22dfc621-7386-3de3-87b2-9ed27c8be84d",
    "path" : "\/Volumes\/VOLUME\/*\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6444003328,
    "size" : 281440,
    "uuid" : "7bee27fd-f519-330d-aebe-d6ace467df22",
    "path" : "\/Volumes\/VOLUME\/*\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6446206976,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 4292608,
    "uuid" : "3d4aa1d5-03aa-3365-b767-944509b9bbfd",
    "path" : "\/Volumes\/VOLUME\/*\/CoreFoundation.framework\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "3423"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6727008256,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.GraphicsServices",
    "size" : 33280,
    "uuid" : "eeb999f0-53c2-31ce-b203-3c78fb303dab",
    "path" : "\/Volumes\/VOLUME\/*\/GraphicsServices.framework\/GraphicsServices",
    "name" : "GraphicsServices",
    "CFBundleVersion" : "1.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6523658240,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.UIKitCore",
    "size" : 30841056,
    "uuid" : "d4c23b9a-c567-3e42-86ef-697aec976159",
    "path" : "\/Volumes\/VOLUME\/*\/UIKitCore.framework\/UIKitCore",
    "name" : "UIKitCore",
    "CFBundleVersion" : "8444.1.105"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6451019776,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.Foundation",
    "size" : 12343520,
    "uuid" : "6ec60314-780a-318f-8bdb-5d173b13970e",
    "path" : "\/Volumes\/VOLUME\/*\/Foundation.framework\/Foundation",
    "name" : "Foundation",
    "CFBundleVersion" : "3423"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6846148608,
    "CFBundleShortVersionString" : "8621",
    "CFBundleIdentifier" : "com.apple.JavaScriptCore",
    "size" : 25371200,
    "uuid" : "5ebfe6ea-8077-3a92-9761-965c0e9ea6e6",
    "path" : "\/Volumes\/VOLUME\/*\/JavaScriptCore.framework\/JavaScriptCore",
    "name" : "JavaScriptCore",
    "CFBundleVersion" : "8621.1.15.10.7"
  }
],
  "sharedCache" : {
  "base" : 6442450944,
  "size" : 3904126976,
  "uuid" : "d7935c61-2b81-3e07-8664-21f38963502b"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.6G resident=0K(0%) swapped_out_or_unallocated=1.6G(100%)\nWritable regions: Total=2.0G written=1944K(0%) resident=1944K(0%) swapped_out=0K(0%) unallocated=2.0G(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                          128K        5 \nFoundation                          16K        1 \nIOSurface                         83.4M       10 \nJS JIT generated code            512.0M        3 \nKernel Alloc Once                   32K        1 \nMALLOC                           599.5M       46 \nMALLOC guard page                  128K        8 \nSTACK GUARD                       56.3M       19 \nStack                             25.1M       21 \nVM_ALLOCATE                      121.7M      296 \nVM_ALLOCATE (reserved)           512.0M        1         reserved VM address space (unallocated)\nWebKit Malloc                    192.5M       15 \n__DATA                            31.5M      778 \n__DATA_CONST                      93.5M      797 \n__DATA_DIRTY                        91K       11 \n__FONT_DATA                        2352        1 \n__LINKEDIT                       702.5M       11 \n__OBJC_RO                         61.2M        1 \n__OBJC_RW                         2723K        1 \n__TEXT                           913.8M      811 \n__TPRO_CONST                       148K        2 \ndyld private memory                2.5G       20 \nmapped file                      103.5M       29 \npage table in kernel              1944K        1 \nshared memory                       16K        1 \n===========                     =======  ======= \nTOTAL                              6.4G     2891 \nTOTAL, minus reserved VM space     5.9G     2891 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "queue" : "com.apple.main-thread"
  }
},
  "logWritingSignature" : "ebbe2a53307193b379f2ec7371a7bb47445990f1",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "5ffde50ce2aacd000d47a95f",
      "factorPackIds" : {

      },
      "deploymentId" : 240000473
    },
    {
      "rolloutId" : "661464ecda55e5192b100804",
      "factorPackIds" : {

      },
      "deploymentId" : 240000005
    }
  ],
  "experiments" : [
    {
      "treatmentId" : "4cfb9672-7b7b-42d8-a7dc-b675ffa2f5dc",
      "experimentId" : "67f46877b1ea9f1f114b8d0b",
      "deploymentId" : 400000001
    }
  ]
}
}
2025-06-04.03-49-33.mp4

@nohackjustnoobb
Copy link

Just a quick update. I tested the app on the iOS 18.0 simulator, and it works fine there.
The earlier crash I mentioned happened while running on the iOS 18.4 simulator (debug mode).

Seems like the issue might be specific to certain iOS versions.

@extrame
Copy link

extrame commented Jun 4, 2025

My situation is "the app compiled by iOS 18.5 platform will crash in 18.1, 17.6 and 17.5 emulator and real machine."

And I resolve the problem by change callAsyncJavaScript to evaluateJavascript.

It's weird

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants