-
Notifications
You must be signed in to change notification settings - Fork 20
Description
App crash on Payment Success on Sandbox. App crash started after updating to latest razorpay version.
Razorpay pod Version :
in pubspec.yaml file. razorpay_flutter: ^1.4.0
In Podlock file:
- razorpay-pod (1.4.6)
- razorpay_flutter (1.1.10):
- Flutter
- razorpay-pod
- razorpay_flutter (1.1.10):
Below is my some snippet of Podfile.
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
# Fix for BoringSSL-GRPC '-G' flag issue
if ['BoringSSL-GRPC', 'gRPC-Core'].include?(target.name)
# Remove the problematic flag
config.build_settings['OTHER_CFLAGS'] = config.build_settings['OTHER_CFLAGS'].to_a.reject { |f| f == '-G' }
config.build_settings['OTHER_CXXFLAGS'] = config.build_settings['OTHER_CXXFLAGS'].to_a.reject { |f| f == '-G' }
end
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
# Fix for some potential architecture issues
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = ''
config.build_settings['SWIFT_VERSION'] = '5.0'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone'
end
end
end
Xcode Version :
Using Xcode 16.1
What you did:
Making payment in Sandbox mode
What happened:
App crash with below crash report
Distributor ID: com.apple.TestFlight
Hardware Model: iPhone17,5
AppStoreTools: 17A323
AppVariant: 1:iPhone17,5:18
Beta: YES
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Date/Time: 2025-10-29 11:01:42.7914 +0530
Launch Time: 2025-10-29 11:00:36.3575 +0530
OS Version: iPhone OS 18.6 (22G86)
Release Type: User
Baseband Version: 1.04.02
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Reason: -[(dynamic class) %s]: unrecognized selector sent to instance 0x10f0aa420
Termination Reason: SIGNAL 6 Abort trap: 6
Terminating Process: Runner [55116]
Triggered by Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x192fb40c0 __exceptionPreprocess + 164 (NSException.m:249)
1 libobjc.A.dylib 0x19044dabc objc_exception_throw + 88 (objc-exception.mm:356)
2 CoreFoundation 0x19301e4c0 -[NSObject(NSObject) doesNotRecognizeSelector:] + 364 (NSObject.m:162)
3 CoreFoundation 0x192ec88bc forwarding + 1492 (NSForwarding.m:3612)
4 CoreFoundation 0x192ec8940 CF_forwarding_prep_0 + 96 (:-1)
5 Razorpay 0x105b04ee8 InternalRazorpay.paymentSuccess(str:dictVerification:) + 220 (InternalRazorpay.swift:232)
6 Razorpay 0x105b0cd18 protocol witness for RazorpayCheckoutVCDelegate.paymentSuccess(str:dictVerification:) in conformance InternalRazorpay + 16 (/:0)
7 Razorpay 0x105b0cd18 RazorpayCheckoutVC.onSuccess(withData:) + 632 (RazorpayCheckout+JSBridge.swift:639)
8 Razorpay 0x105b14820 specialized RazorpayCheckoutVC.userContentController(:didReceive:) + 3208 (RazorpayCheckout+JSBridge.swift:75)
9 Razorpay 0x105b0e8b4 RazorpayCheckoutVC.userContentController(:didReceive:) + 8 (/:0)
10 Razorpay 0x105b0e8b4 @objc RazorpayCheckoutVC.userContentController(:didReceive:) + 68
11 WebKit 0x1a94c2378 ScriptMessageHandlerDelegate::didPostMessage(WebKit::WebPageProxy&, WebKit::FrameInfoData&&, API::ContentWorld&, WebCore::SerializedScriptValue&) + 308 (WKUserContentController.mm:159)
12 WebKit 0x1a9a5e644 WebKit::WebUserContentControllerProxy::didPostMessage(WTF::ObjectIdentifierGeneric<WebKit::WebPageProxyIdentifierType, WTF::ObjectIdentifierMainThreadAccessTraits, unsigned long... + 984 (WebUserContentControllerProxy.cpp:422)
13 WebKit 0x1a94c44d8 WebKit::WebUserContentControllerProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) + 648 (WebUserContentControllerProxyMessageReceiver.cpp:48)
14 WebKit 0x1a8f7bf40 IPC::MessageReceiverMap::dispatchMessage(IPC::Connection&, IPC::Decoder&) + 264 (MessageReceiverMap.cpp:129)
15 WebKit 0x1a906ac7c WebKit::WebProcessProxy::dispatchMessage(IPC::Connection&, IPC::Decoder&) + 40 (WebProcessProxy.cpp:1219)
16 WebKit 0x1a906a3b4 WebKit::WebProcessProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) + 1608 (WebProcessProxyMessageReceiver.cpp:195)
17 WebKit 0x1a8f7b298 IPC::Connection::dispatchMessage(WTF::UniqueRefIPC::Decoder) + 268 (Connection.cpp:1430)
18 WebKit 0x1a8f7adc4 IPC::Connection::dispatchIncomingMessages() + 528 (Connection.cpp:1546)
19 JavaScriptCore 0x1aa41fb00 WTF::RunLoop::performWork() + 524 (RunLoop.cpp:147)
20 JavaScriptCore 0x1aa41f744 WTF::RunLoop::performWork(void*) + 36 (RunLoopCF.cpp:46)
21 CoreFoundation 0x192ea992c CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 28 (CFRunLoop.c:1970)
22 CoreFoundation 0x192ea9744 __CFRunLoopDoSource0 + 172 (CFRunLoop.c:2014)
23 CoreFoundation 0x192ea95a0 __CFRunLoopDoSources0 + 232 (CFRunLoop.c:2051)
24 CoreFoundation 0x192ea9f20 __CFRunLoopRun + 840 (CFRunLoop.c:2969)
25 CoreFoundation 0x192eabadc CFRunLoopRunSpecific + 572 (CFRunLoop.c:3434)
26 GraphicsServices 0x1dfcd1454 GSEventRunModal + 168 (GSEvent.c:2196)
27 UIKitCore 0x1958cd274 -[UIApplication run] + 816 (UIApplication.m:3845)
28 UIKitCore 0x195898a28 UIApplicationMain + 336 (UIApplication.m:5540)
29 UIKitCore 0x19597a168 UIApplicationMain(:::_:) + 104 (UIKit.swift:565)
30 Runner 0x104e747a4 $sSo21UIApplicationDelegateP5UIKitE4mainyyFZ6Runner03AppB0C_Tgm5 + 28 (/:6)
31 Runner 0x104e747a4 static AppDelegate.$main() + 28 (AppDelegate.swift:0)
32 Runner 0x104e747a4 main + 120
33 dyld 0x1b993df08 start + 6040 (dyldMain.cpp:1450)
Thread 0 name:
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x00000001e3d101dc __pthread_kill + 8 (:-1)
1 libsystem_pthread.dylib 0x000000021d353c60 pthread_kill + 268 (pthread.c:1721)
2 libsystem_c.dylib 0x000000019aef20ac abort + 124 (abort.c:122)
3 libc++abi.dylib 0x000000021d27d5a0 abort_message + 132 (abort_message.cpp:78)
4 libc++abi.dylib 0x000000021d26bf10 demangling_terminate_handler() + 344 (cxa_default_handlers.cpp:77)
5 libobjc.A.dylib 0x000000019044fbf8 objc_terminate() + 156 (objc-exception.mm:496)
6 FirebaseCrashlytics 0x00000001057aa498 FIRCLSTerminateHandler() + 340 (FIRCLSException.mm:466)
7 libc++abi.dylib 0x000000021d27c8b4 std::__terminate(void ()()) + 16 (cxa_handlers.cpp:59)
8 libc++abi.dylib 0x000000021d27fe1c __cxxabiv1::failed_throw(__cxxabiv1::__cxa_exception) + 88 (cxa_exception.cpp:152)
9 libc++abi.dylib 0x000000021d27fdc4 __cxa_throw + 92 (cxa_exception.cpp:299)
10 libobjc.A.dylib 0x000000019044dc24 objc_exception_throw + 448 (objc-exception.mm:385)
11 CoreFoundation 0x000000019301e4c0 -[NSObject(NSObject) doesNotRecognizeSelector:] + 364 (NSObject.m:162)
12 CoreFoundation 0x0000000192ec88bc forwarding + 1492 (NSForwarding.m:3612)
13 CoreFoundation 0x0000000192ec8940 CF_forwarding_prep_0 + 96 (:-1)
14 Razorpay 0x0000000105b04ee8 InternalRazorpay.paymentSuccess(str:dictVerification:) + 220 (InternalRazorpay.swift:232)
15 Razorpay 0x0000000105b0cd18 protocol witness for RazorpayCheckoutVCDelegate.paymentSuccess(str:dictVerification:) in conformance InternalRazorpay + 16 (/:0)
16 Razorpay 0x0000000105b0cd18 RazorpayCheckoutVC.onSuccess(withData:) + 632 (RazorpayCheckout+JSBridge.swift:639)
17 Razorpay 0x0000000105b14820 specialized RazorpayCheckoutVC.userContentController(:didReceive:) + 3208 (RazorpayCheckout+JSBridge.swift:75)
18 Razorpay 0x0000000105b0e8b4 RazorpayCheckoutVC.userContentController(:didReceive:) + 8 (/:0)
19 Razorpay 0x0000000105b0e8b4 @objc RazorpayCheckoutVC.userContentController(:didReceive:) + 68
20 WebKit 0x00000001a94c2378 ScriptMessageHandlerDelegate::didPostMessage(WebKit::WebPageProxy&, WebKit::FrameInfoData&&, API::ContentWorld&, WebCore::SerializedScriptValue&) + 308 (WKUserContentController.mm:159)
21 WebKit 0x00000001a9a5e644 WebKit::WebUserContentControllerProxy::didPostMessage(WTF::ObjectIdentifierGeneric<WebKit::WebPageProxyIdentifierType, WTF::ObjectIdentifierMainThreadAccessTraits, unsigned long... + 984 (WebUserContentControllerProxy.cpp:422)
22 WebKit 0x00000001a94c44d8 WebKit::WebUserContentControllerProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) + 648 (WebUserContentControllerProxyMessageReceiver.cpp:48)
23 WebKit 0x00000001a8f7bf40 IPC::MessageReceiverMap::dispatchMessage(IPC::Connection&, IPC::Decoder&) + 264 (MessageReceiverMap.cpp:129)
24 WebKit 0x00000001a906ac7c WebKit::WebProcessProxy::dispatchMessage(IPC::Connection&, IPC::Decoder&) + 40 (WebProcessProxy.cpp:1219)
25 WebKit 0x00000001a906a3b4 WebKit::WebProcessProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) + 1608 (WebProcessProxyMessageReceiver.cpp:195)
26 WebKit 0x00000001a8f7b298 IPC::Connection::dispatchMessage(WTF::UniqueRefIPC::Decoder) + 268 (Connection.cpp:1430)
27 WebKit 0x00000001a8f7adc4 IPC::Connection::dispatchIncomingMessages() + 528 (Connection.cpp:1546)
28 JavaScriptCore 0x00000001aa41fb00 WTF::RunLoop::performWork() + 524 (RunLoop.cpp:147)
29 JavaScriptCore 0x00000001aa41f744 WTF::RunLoop::performWork(void*) + 36 (RunLoopCF.cpp:46)
30 CoreFoundation 0x0000000192ea992c CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 28 (CFRunLoop.c:1970)
31 CoreFoundation 0x0000000192ea9744 __CFRunLoopDoSource0 + 172 (CFRunLoop.c:2014)
32 CoreFoundation 0x0000000192ea95a0 __CFRunLoopDoSources0 + 232 (CFRunLoop.c:2051)
33 CoreFoundation 0x0000000192ea9f20 __CFRunLoopRun + 840 (CFRunLoop.c:2969)
34 CoreFoundation 0x0000000192eabadc CFRunLoopRunSpecific + 572 (CFRunLoop.c:3434)
35 GraphicsServices 0x00000001dfcd1454 GSEventRunModal + 168 (GSEvent.c:2196)
36 UIKitCore 0x00000001958cd274 -[UIApplication run] + 816 (UIApplication.m:3845)
37 UIKitCore 0x0000000195898a28 UIApplicationMain + 336 (UIApplication.m:5540)
38 UIKitCore 0x000000019597a168 UIApplicationMain(::::) + 104 (UIKit.swift:565)
39 Runner 0x0000000104e747a4 $sSo21UIApplicationDelegateP5UIKitE4mainyyFZ6Runner03AppB0C_Tgm5 + 28 (/:6)
40 Runner 0x0000000104e747a4 static AppDelegate.$main() + 28 (AppDelegate.swift:0)
41 Runner 0x0000000104e747a4 main + 120
42 dyld 0x00000001b993df08 start + 6040 (dyldMain.cpp:1450)
Thread 1:
0 libsystem_pthread.dylib 0x000000021d34caa4 start_wqthread + 0 (:-1)
Thread 2:
0 libsystem_pthread.dylib 0x000000021d34caa4 start_wqthread + 0 (:-1)
Thread 3:
0 libsystem_pthread.dylib 0x000000021d34caa4 start_wqthread + 0 (:-1)
Thread 4 name:
Thread 4:
0 libsystem_kernel.dylib 0x00000001e3d05ce4 mach_msg2_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001e3d0939c mach_msg2_internal + 76 (mach_msg.c:201)
2 libsystem_kernel.dylib 0x00000001e3d092b8 mach_msg_overwrite + 428 (mach_msg.c:0)
3 libsystem_kernel.dylib 0x00000001e3d09100 mach_msg + 24 (mach_msg.c:323)
4 CoreFoundation 0x0000000192eab7a0 __CFRunLoopServiceMachPort + 160 (CFRunLoop.c:2637)
5 CoreFoundation 0x0000000192eaa090 __CFRunLoopRun + 1208 (CFRunLoop.c:3021)
6 CoreFoundation 0x0000000192eabadc CFRunLoopRunSpecific + 572 (CFRunLoop.c:3434)
7 Foundation 0x0000000191b2279c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212 (NSRunLoop.m:375)
8 Foundation 0x0000000191b28020 -[NSRunLoop(NSRunLoop) runUntilDate:] + 64 (NSRunLoop.m:422)
9 UIKitCore 0x00000001958b756c -[UIEventFetcher threadMain] + 424 (UIEventFetcher.m:1351)
10 Foundation 0x0000000191b88804 NSThread__start + 732 (NSThread.m:991)
11 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
12 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 5 name:
Thread 5:
0 libsystem_kernel.dylib 0x00000001e3d05ce4 mach_msg2_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001e3d0939c mach_msg2_internal + 76 (mach_msg.c:201)
2 libsystem_kernel.dylib 0x00000001e3d092b8 mach_msg_overwrite + 428 (mach_msg.c:0)
3 libsystem_kernel.dylib 0x00000001e3d09100 mach_msg + 24 (mach_msg.c:323)
4 CoreFoundation 0x0000000192eab7a0 __CFRunLoopServiceMachPort + 160 (CFRunLoop.c:2637)
5 CoreFoundation 0x0000000192eaa090 __CFRunLoopRun + 1208 (CFRunLoop.c:3021)
6 CoreFoundation 0x0000000192eabadc CFRunLoopRunSpecific + 572 (CFRunLoop.c:3434)
7 Flutter 0x000000010867e798 fml::MessageLoopDarwin::Run() + 88 (message_loop_darwin.mm:51)
8 Flutter 0x000000010867e478 fml::MessageLoopImpl::DoRun() + 28 (message_loop_impl.cc:94)
9 Flutter 0x000000010867e478 fml::MessageLoop::Run() + 32 (message_loop.cc:49)
10 Flutter 0x000000010867e478 fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const + 160 (thread.cc:154)
11 Flutter 0x000000010867e478 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::Threa... + 160 (invoke.h:403)
12 Flutter 0x000000010867e478 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:... + 160 (invoke.h:488)
13 Flutter 0x000000010867e478 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::T... + 160 (function.h:185)
14 Flutter 0x000000010867e478 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(... + 180 (function.h:359)
15 Flutter 0x000000010867e188 std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const + 20 (function.h:512)
16 Flutter 0x000000010867e188 std::_fl::function<void ()>::operator()() const + 20 (function.h:1187)
17 Flutter 0x000000010867e188 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const + 20 (thread.cc:76)
18 Flutter 0x000000010867e188 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36 (thread.cc:73)
19 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
20 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 6 name:
Thread 6:
0 libsystem_kernel.dylib 0x00000001e3d05ce4 mach_msg2_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001e3d0939c mach_msg2_internal + 76 (mach_msg.c:201)
2 libsystem_kernel.dylib 0x00000001e3d092b8 mach_msg_overwrite + 428 (mach_msg.c:0)
3 libsystem_kernel.dylib 0x00000001e3d09100 mach_msg + 24 (mach_msg.c:323)
4 CoreFoundation 0x0000000192eab7a0 __CFRunLoopServiceMachPort + 160 (CFRunLoop.c:2637)
5 CoreFoundation 0x0000000192eaa090 __CFRunLoopRun + 1208 (CFRunLoop.c:3021)
6 CoreFoundation 0x0000000192eabadc CFRunLoopRunSpecific + 572 (CFRunLoop.c:3434)
7 Flutter 0x000000010867e798 fml::MessageLoopDarwin::Run() + 88 (message_loop_darwin.mm:51)
8 Flutter 0x000000010867e478 fml::MessageLoopImpl::DoRun() + 28 (message_loop_impl.cc:94)
9 Flutter 0x000000010867e478 fml::MessageLoop::Run() + 32 (message_loop.cc:49)
10 Flutter 0x000000010867e478 fml::Thread::Thread(std::_fl::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0::operator()() const + 160 (thread.cc:154)
11 Flutter 0x000000010867e478 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::Threa... + 160 (invoke.h:403)
12 Flutter 0x000000010867e478 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:... + 160 (invoke.h:488)
13 Flutter 0x000000010867e478 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::T... + 160 (function.h:185)
14 Flutter 0x000000010867e478 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(... + 180 (function.h:359)
15 Flutter 0x000000010867e188 std::_fl::__function::__value_func<void ()>::operator()abi:v15000 const + 20 (function.h:512)
16 Flutter 0x000000010867e188 std::_fl::function<void ()>::operator()() const + 20 (function.h:1187)
17 Flutter 0x000000010867e188 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::operator()(void*) const + 20 (thread.cc:76)
18 Flutter 0x000000010867e188 fml::ThreadHandle::ThreadHandle(std::_fl::function<void ()>&&)::$_0::__invoke(void*) + 36 (thread.cc:73)
19 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
20 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 7 name:
Thread 7:
0 libsystem_kernel.dylib 0x00000001e3d0b438 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000021d34de50 _pthread_cond_wait + 984 (pthread_cond.c:862)
2 Flutter 0x000000010865b75c std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*) + 4 (__threading_support:335)
3 Flutter 0x000000010865b75c std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&) + 20 (condition_variable.cpp:46)
4 Flutter 0x000000010867785c void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0) + 44 (__mutex_base:398)
5 Flutter 0x000000010867785c fml::ConcurrentMessageLoop::WorkerMain() + 56 (concurrent_message_loop.cc:75)
6 Flutter 0x000000010867785c fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 252 (concurrent_message_loop.cc:20)
7 Flutter 0x000000010867785c decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$... + 252 (invoke.h:403)
8 Flutter 0x000000010867785c 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(u... + 252 (thread:284)
9 Flutter 0x000000010867785c 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::Concurre... + 340 (thread:295)
10 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
11 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 8 name:
Thread 8:
0 libsystem_kernel.dylib 0x00000001e3d0b438 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000021d34de50 _pthread_cond_wait + 984 (pthread_cond.c:862)
2 Flutter 0x000000010865b75c std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*) + 4 (__threading_support:335)
3 Flutter 0x000000010865b75c std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&) + 20 (condition_variable.cpp:46)
4 Flutter 0x000000010867785c void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0) + 44 (__mutex_base:398)
5 Flutter 0x000000010867785c fml::ConcurrentMessageLoop::WorkerMain() + 56 (concurrent_message_loop.cc:75)
6 Flutter 0x000000010867785c fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 252 (concurrent_message_loop.cc:20)
7 Flutter 0x000000010867785c decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$... + 252 (invoke.h:403)
8 Flutter 0x000000010867785c 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(u... + 252 (thread:284)
9 Flutter 0x000000010867785c 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::Concurre... + 340 (thread:295)
10 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
11 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 9 name:
Thread 9:
0 libsystem_kernel.dylib 0x00000001e3d0b438 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000021d34de50 _pthread_cond_wait + 984 (pthread_cond.c:862)
2 Flutter 0x000000010865b75c std::_fl::__libcpp_condvar_wait[abi:v15000](_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*) + 4 (__threading_support:335)
3 Flutter 0x000000010865b75c std::_fl::condition_variable::wait(std::_fl::unique_lockstd::_fl::mutex&) + 20 (condition_variable.cpp:46)
4 Flutter 0x000000010867785c void std::_fl::condition_variable::waitfml::ConcurrentMessageLoop::WorkerMain()::$_0(std::_fl::unique_lockstd::_fl::mutex&, fml::ConcurrentMessageLoop::WorkerMain()::$_0) + 44 (__mutex_base:398)
5 Flutter 0x000000010867785c fml::ConcurrentMessageLoop::WorkerMain() + 56 (concurrent_message_loop.cc:75)
6 Flutter 0x000000010867785c fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 252 (concurrent_message_loop.cc:20)
7 Flutter 0x000000010867785c decltype(std::declval<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0>()()) std::fl::__invoke[abi:v15000]<fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$... + 252 (invoke.h:403)
8 Flutter 0x000000010867785c 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(u... + 252 (thread:284)
9 Flutter 0x000000010867785c 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::Concurre... + 340 (thread:295)
10 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
11 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 10 name:
Thread 10:
0 libsystem_kernel.dylib 0x00000001e3d0c768 kevent + 8 (:-1)
1 Flutter 0x0000000108b7e1f8 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 364 (eventhandler_macos.cc:459)
2 Flutter 0x0000000108ba9ff8 dart::bin::ThreadStart(void*) + 88 (thread_macos.cc:65)
3 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
4 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 11 name:
Thread 11:
0 libsystem_kernel.dylib 0x00000001e3d05ce4 mach_msg2_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001e3d0939c mach_msg2_internal + 76 (mach_msg.c:201)
2 libsystem_kernel.dylib 0x00000001e3d092b8 mach_msg_overwrite + 428 (mach_msg.c:0)
3 libsystem_kernel.dylib 0x00000001e3d09100 mach_msg + 24 (mach_msg.c:323)
4 FirebaseCrashlytics 0x00000001057b3518 FIRCLSMachExceptionReadMessage + 56 (FIRCLSMachException.c:196)
5 FirebaseCrashlytics 0x00000001057b3518 FIRCLSMachExceptionServer + 104 (FIRCLSMachException.c:172)
6 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
7 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 12 name:
Thread 12:
0 libsystem_kernel.dylib 0x00000001e3d05ce4 mach_msg2_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001e3d0939c mach_msg2_internal + 76 (mach_msg.c:201)
2 libsystem_kernel.dylib 0x00000001e3d092b8 mach_msg_overwrite + 428 (mach_msg.c:0)
3 libsystem_kernel.dylib 0x00000001e3d09100 mach_msg + 24 (mach_msg.c:323)
4 CoreFoundation 0x0000000192eab7a0 __CFRunLoopServiceMachPort + 160 (CFRunLoop.c:2637)
5 CoreFoundation 0x0000000192eaa090 __CFRunLoopRun + 1208 (CFRunLoop.c:3021)
6 CoreFoundation 0x0000000192eabadc CFRunLoopRunSpecific + 572 (CFRunLoop.c:3434)
7 CFNetwork 0x00000001944d9db8 +[__CFN_CoreSchedulingSetRunnable _run:] + 416 (CoreSchedulingSet.mm:1473)
8 Foundation 0x0000000191b88804 NSThread__start + 732 (NSThread.m:991)
9 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
10 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 13 name:
Thread 13:
0 libsystem_kernel.dylib 0x00000001e3d0b438 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000021d34de7c _pthread_cond_wait + 1028 (pthread_cond.c:862)
2 Flutter 0x0000000108bf5f44 dart::TimedWait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, long long) + 60 (synchronization_posix.cc:118)
3 Flutter 0x0000000108bf5f44 dart::ConditionVariable::WaitMicros(dart::Mutex*, long long) + 116 (synchronization_posix.cc:147)
4 Flutter 0x0000000108cb5f64 dart::ThreadPool::Worker::Sleep(long long) + 16 (thread_pool.h:93)
5 Flutter 0x0000000108cb5f64 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 456 (thread_pool.cc:227)
6 Flutter 0x0000000108cb5f64 dart::ThreadPool::Worker::Main(unsigned long) + 664 (thread_pool.cc:363)
7 Flutter 0x0000000108c984d4 dart::ThreadStart(void*) + 268 (os_thread_macos.cc:94)
8 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
9 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 14 name:
Thread 14:
0 libsystem_kernel.dylib 0x00000001e3d0b438 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000021d34de50 _pthread_cond_wait + 984 (pthread_cond.c:862)
2 JavaScriptCore 0x00000001aa45d0d8 scavenger_thread_main + 1364 (pas_scavenger.c:359)
3 libsystem_pthread.dylib 0x000000021d34f344 _pthread_start + 136 (pthread.c:931)
4 libsystem_pthread.dylib 0x000000021d34cab8 thread_start + 8 (:-1)
Thread 15:
0 libsystem_pthread.dylib 0x000000021d34caa4 start_wqthread + 0 (:-1)
Thread 16:
0 libsystem_pthread.dylib 0x000000021d34caa4 start_wqthread + 0 (:-1)
Thread 17:
0 libsystem_pthread.dylib 0x000000021d34caa4 start_wqthread + 0 (:-1)
Thread 18:
0 libsystem_pthread.dylib 0x000000021d34caa4 start_wqthread + 0 (:-1)
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x000000021d281fdb x5: 0x000000016af90520 x6: 0x000000000000006e x7: 0x47b7b71aa12ffb38
x8: 0x2a5dac47b72e812d x9: 0x2a5dac464ab147ad x10: 0x0000000000000051 x11: 0x000000000000000b
x12: 0x000000000000000b x13: 0x0000000193355494 x14: 0x0000000000000001 x15: 0xffffffffb00007ff
x16: 0x0000000000000148 x17: 0x00000001fd9fc680 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x0000000000000103 x21: 0x00000001fd9fc760 x22: 0x0000000000000007 x23: 0x00000001057d968a
x24: 0x0000000000000000 x25: 0x0000000000000068 x26: 0x000000016af91660 x27: 0x00000000000003d8
x28: 0x00000001ff526e38 fp: 0x000000016af90490 lr: 0x000000021d353c60
sp: 0x000000016af90470 pc: 0x00000001e3d101dc cpsr: 0x40000000
esr: 0x56000080 Address size fault
Binary Images:
0x104e6c000 - 0x105043fff Runner arm64 /var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Runner
0x1051f0000 - 0x1051fbfff CFNetworkSDK arm64 <53e9529b313f336e8d1fadddc508a2a0> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/CFNetworkSDK.framework/CFNetworkSDK
0x10520c000 - 0x105217fff CashfreePG arm64 <6a72b8e9bb3939c698fbe0458bf881a3> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/CashfreePG.framework/CashfreePG
0x10523c000 - 0x105253fff CashfreeAnalyticsSDK arm64 <1db45e9a722130398bac401cb8b90918> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/CashfreeAnalyticsSDK.framework/CashfreeAnalyticsSDK
0x10526c000 - 0x105273fff FirebaseCoreExtension arm64 <6e6800d29c913034b58eb6cd4b0576ba> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseCoreExtension.framework/FirebaseCoreExtension
0x105284000 - 0x10528bfff nanopb arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/nanopb.framework/nanopb
0x10529c000 - 0x1052abfff FBLPromises arm64 <3314021d9efa3da99842d19546894cdc> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FBLPromises.framework/FBLPromises
0x1052cc000 - 0x1052d3fff package_info_plus arm64 <99db2671aaf53162b92d632b9d7e1d6c> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/package_info_plus.framework/package_info_plus
0x105300000 - 0x105313fff FirebaseCore arm64 <8e6e228825d0361e93f80d6eb424ed10> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseCore.framework/FirebaseCore
0x105470000 - 0x1054d3fff CashfreePGCoreSDK arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/CashfreePGCoreSDK.framework/CashfreePGCoreSDK
0x105514000 - 0x10551ffff FirebaseRemoteConfigInterop arm64 <7b056bea95f136f4b63cac5b09345e64> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseRemoteConfigInterop.framework/FirebaseRemoteConfigInterop
0x105538000 - 0x105543fff OrderedSet arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/OrderedSet.framework/OrderedSet
0x10556c000 - 0x105587fff FirebaseCoreInternal arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseCoreInternal.framework/FirebaseCoreInternal
0x1055c4000 - 0x1055cffff app_tracking_transparency arm64 <5e30a4682522384c841485af421097c1> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/app_tracking_transparency.framework/app_tracking_transparency
0x1055f0000 - 0x105687fff CashfreePGUISDK arm64 <3d5e57d015583db79b4986966364894c> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/CashfreePGUISDK.framework/CashfreePGUISDK
0x1056cc000 - 0x1056e3fff FirebaseInstallations arm64 <3f5abecfc7353a3fa6319e4e86cbeb6c> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseInstallations.framework/FirebaseInstallations
0x10570c000 - 0x10571ffff flutter_cashfree_pg_sdk arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/flutter_cashfree_pg_sdk.framework/flutter_cashfree_pg_sdk
0x105754000 - 0x105773fff GoogleUtilities arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x10579c000 - 0x1057ebfff FirebaseCrashlytics arm64 <80a2ce106a553a00a9335dff3bd90b3c> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseCrashlytics.framework/FirebaseCrashlytics
0x10586c000 - 0x10589ffff FirebaseMessaging arm64 <6d983fc21ea2363787e881a2404804d9> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseMessaging.framework/FirebaseMessaging
0x1058ec000 - 0x10590bfff FirebaseSessions arm64 <9b8c852458753ce9abc862afbff6b520> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/FirebaseSessions.framework/FirebaseSessions
0x105948000 - 0x10596ffff GoogleDataTransport arm64 <08b9c01fb9db355baa0bded317459f1e> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/GoogleDataTransport.framework/GoogleDataTransport
0x1059ac000 - 0x1059bffff Promises arm64 <06948440ce08334bbd049f0075fa0847> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/Promises.framework/Promises
0x1059e4000 - 0x1059f3fff flutter_local_notifications arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/flutter_local_notifications.framework/flutter_local_notifications
0x105a0c000 - 0x105a17fff fluttertoast arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/fluttertoast.framework/fluttertoast
0x105a30000 - 0x105a4bfff Stripe arm64 <1df8b1e7a4743accaffbd0a7f57f6232> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/Stripe.framework/Stripe
0x105a7c000 - 0x105a87fff geolocator_apple arm64 <427178e9ed2d3dbfac2cd0acd35d5517> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/geolocator_apple.framework/geolocator_apple
0x105aa4000 - 0x105ab7fff image_picker_ios arm64 <8e83a3016a9337678e6b1a2447a93a5d> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/image_picker_ios.framework/image_picker_ios
0x105af8000 - 0x105b7bfff Razorpay arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/Razorpay.framework/Razorpay
0x105c0c000 - 0x105c17fff libobjc-trampolines.dylib arm64e /private/preboot/Cryptexes/OS/usr/lib/libobjc-trampolines.dylib
0x105c34000 - 0x105c3ffff path_provider_foundation arm64 <4b60a8fb143b34bd998d226d06b43afa> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/path_provider_foundation.framework/path_provider_foundation
0x105c5c000 - 0x105c67fff razorpay_flutter arm64 <2fbcbde89f183b4cb5d4287fdd100f3b> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/razorpay_flutter.framework/razorpay_flutter
0x105cb4000 - 0x105cc7fff shared_preferences_foundation arm64 <1c4c8bb687da37f2bbd6233cd41e75f9> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/shared_preferences_foundation.framework/shared_preferences_foundation
0x105d14000 - 0x105d67fff StripeApplePay arm64 <58948d95329f349f804c2700b1a119a1> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/StripeApplePay.framework/StripeApplePay
0x105e24000 - 0x105e33fff url_launcher_ios arm64 <500d53ef66b23a36bc0a984e8af0eb36> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/url_launcher_ios.framework/url_launcher_ios
0x105e68000 - 0x105e83fff sqflite_darwin arm64 <980a9509f7de39dfbb591d9ea9320f19> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/sqflite_darwin.framework/sqflite_darwin
0x105ee4000 - 0x105ef7fff video_player_avfoundation arm64 <0d9663b983f536e58d7b2cc9670f916d> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/video_player_avfoundation.framework/video_player_avfoundation
0x105fc4000 - 0x106053fff StripeCore arm64 <913ad0f29d363fa489af88981d45a488> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/StripeCore.framework/StripeCore
0x10616c000 - 0x1061dffff StripePaymentsUI arm64 <133aa40e6b3a3cdea193190b9c25c44c> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/StripePaymentsUI.framework/StripePaymentsUI
0x1062b8000 - 0x106333fff StripeUICore arm64 <4c61252b63153e0898b6dfc47bd4c280> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/StripeUICore.framework/StripeUICore
0x1065e0000 - 0x106767fff StripeFinancialConnections arm64 <1987d99571e73f6aba58948f7d0544a0> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/StripeFinancialConnections.framework/StripeFinancialConnections
0x106a6c000 - 0x106af3fff stripe_ios arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/stripe_ios.framework/stripe_ios
0x106cbc000 - 0x106da3fff flutter_inappwebview_ios arm64 <54a507aef3a331f88b90a18ce3c4942c> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/flutter_inappwebview_ios.framework/flutter_inappwebview_ios
0x1070dc000 - 0x10734bfff StripePaymentSheet arm64 <3ce76182df2639a4a9e82a725159fd98> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/StripePaymentSheet.framework/StripePaymentSheet
0x10775c000 - 0x1078ebfff StripePayments arm64 /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/StripePayments.framework/StripePayments
0x1085ec000 - 0x108ea7fff Flutter arm64 <4c4c444355553144a1942736321a049f> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/Flutter.framework/Flutter
0x10d7e4000 - 0x10e32bfff App arm64 <5a8a6ba6460c35118ac77b70bdc39ec9> /private/var/containers/Bundle/Application/47B04FB6-2ACA-4FAF-8848-FBBF73BD062F/Runner.app/Frameworks/App.framework/App
0x19041c000 - 0x19046dbb3 libobjc.A.dylib arm64e /usr/lib/libobjc.A.dylib
0x191b13000 - 0x19278705f Foundation arm64e /System/Library/Frameworks/Foundation.framework/Foundation
0x192e9a000 - 0x193416fff CoreFoundation arm64e /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x19443a000 - 0x1947ff35f CFNetwork arm64e <271cab2fd622384c8a7f2b5857119e0d> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x195798000 - 0x1976da55f UIKitCore arm64e <5e794caa41623ff6861e45f29f6b8ac0> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x19ae7b000 - 0x19aefa6c3 libsystem_c.dylib arm64e <335cd87d234b3fc182db943350d31a88> /usr/lib/system/libsystem_c.dylib
0x1a8f08000 - 0x1aa411d9f WebKit arm64e <38f840de4cb93015b3cb931934d315b8> /System/Library/Frameworks/WebKit.framework/WebKit
0x1aa412000 - 0x1abd2517f JavaScriptCore arm64e /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1b98ff000 - 0x1b999987b dyld arm64e /usr/lib/dyld
0x1dfcd0000 - 0x1dfcd8c7f GraphicsServices arm64e /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1e3d05000 - 0x1e3d3eebf libsystem_kernel.dylib arm64e /usr/lib/system/libsystem_kernel.dylib
0x21d267000 - 0x21d284fff libc++abi.dylib arm64e /usr/lib/libc++abi.dylib
0x21d34c000 - 0x21d3583f3 libsystem_pthread.dylib arm64e <1ee1922008593cbcbdebdf37ca2e8e4f> /usr/lib/system/libsystem_pthread.dylib
EOF
Steps To Reproduce
Provide a detailed list of steps that reproduce the issue.
When Click on Success button on sandbox mode. After that app crashed.
Below is my flutter code.
_razorpay = Razorpay();
if (apiService.baseUrl.startsWith("devUrl")) {
Stripe.publishableKey =
"Sandbox_Key";
} else {
Stripe.publishableKey =
"LIVE_Key";
}
_razorpay?.on(Razorpay.EVENT_PAYMENT_SUCCESS, _handlePaymentSuccess);
_razorpay?.on(Razorpay.EVENT_PAYMENT_ERROR, _handlePaymentError);
var options = {
'key': clientId,
'amount': amountInPaisa, //in paise.
'name': customerName,
'order_id': rzpPayId, // Generate order_id using Orders API
'description': selectedGroup,
'timeout': 300, // in seconds
'prefill': {'contact': customerPhone, 'email': customerEmail}
};
_razorpay?.open(options);
void _handlePaymentSuccess(PaymentSuccessResponse response) {
// Do something when payment succeeds
}
void _handlePaymentError(PaymentFailureResponse response) {
// Do something when payment fails
}