(iOS) SIGABRT on device (emulator works fine)
See original GitHub issuedyld`__abort_with_payload:
0x1047c2f14 <+0>: mov x16, #0x209
0x1047c2f18 <+4>: svc #0x80
-> 0x1047c2f1c <+8>: b.lo 0x1047c2f34 ; <+32>
0x1047c2f20 <+12>: stp x29, x30, [sp, #-0x10]!
0x1047c2f24 <+16>: mov x29, sp
0x1047c2f28 <+20>: bl 0x1047c25b0 ; cerror_nocancel
0x1047c2f2c <+24>: mov sp, x29
0x1047c2f30 <+28>: ldp x29, x30, [sp], #0x10
0x1047c2f34 <+32>: ret
dyld: Library not loaded: @rpath/InputMask.framework/InputMask Referenced from: /var/containers/Bundle/Application/7852D8F9-46F3-4952-B0BF-5CD16AA12084/Test.app/Test Reason: image not found (lldb)
Create a clean app:
react-native init Test
cd Test
yarn add react-native-text-input-mask
react-native link react-native-text-input-mask
open ./ios/Test.xcodeproj
… add TextInputMask in App.js and run.
Issue Analytics
- State:
- Created 6 years ago
- Comments:6
Top Results From Across the Web
Thread 5 : SIGABRT error while running the app in my device ...
It is because you are using a microphone in your application without getting privacy access from the user.
Read more >how do i fix the sigabrt error? | Apple Developer Forums
To recap, an app crashes with the SIGABRT error whenever an exception (a fatal error) is raised and no recovery is possible, such...
Read more >Thread 1: signal SIGABRT issue when loading onto iPhone
The build of the application works fine, and a build and run in the iPhone 11 Pro Max (my device) simulator also works...
Read more >SIGABRT Error when running on an iOS device but not in ...
Just looking at the error check if you have written the filename correctly when you created the URL. Simulator is key insensitive but...
Read more >App distributed via TestFlight crashes on launch - Using Swift
The app runs fine in the simulator and on a device when launched directly from Xcode. When installed via TestFlight, the app crashes ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yeah, it always good idea to look into official docs. In my case, a trick was to enable build option
Embed Swift Standard Libraries
@maksugr ok will do )