Kelvin Njeri
Kelvin Njeri

Reputation: 159

Thread 1: signal SIGABRT

I get the above error when I run the simulation for my Xcode project This appears in the O__abort_with_payload file

dyld`__abort_with_payload:
    0x10aae66f8 <+0>:  movl   $0x2000209, %eax          ; imm = 0x2000209 
    0x10aae66fd <+5>:  movq   %rcx, %r10
    0x10aae6700 <+8>:  syscall 
->  0x10aae6702 <+10>: jae    0x10aae670c               ; <+20>
    0x10aae6704 <+12>: movq   %rax, %rdi
    0x10aae6707 <+15>: jmp    0x10aae6014               ; cerror_nocancel
    0x10aae670c <+20>: retq   
    0x10aae670d <+21>: nop    
    0x10aae670e <+22>: nop    
    0x10aae670f <+23>: nop    

the error appears on the line "-> 0x10aae6702 <+10>: jae 0x10aae670c ; <+20>"

There's also a message on the console

dyld: Library not loaded: @rpath/AdobeCreativeSDKCore.framework/AdobeCreativeSDKCore
  Referenced from: /Users/kelvinnjeri/Library/Developer/CoreSimulator/Devices/0B163356-1560-479A-9CC0-2EC04084C5E3/data/Containers/Bundle/Application/FA936BDF-9607-4810-AEA5-F97A2EEFCA14/CloudiTv11.app/CloudiTv11
  Reason: image not found
(lldb) 

error message

I have the 'AdobeCreativeSDKCore' and 'AdobeCreativeSDKimages' installed as a framework, the project built but the error came up

podfile

On a separate occasion, I also tried to manually include the Frameworks in my main project files and use a bridging header file to bridge it.

SDK in project files

Upvotes: 6

Views: 7783

Answers (3)

Muhammad Tameem Rafay
Muhammad Tameem Rafay

Reputation: 4585

*make sure

install builds only is unchecked and based on dependency analysis is checked in both embeded frameworks and copy pod resources

enter image description here

enter image description here

Upvotes: 1

Mert Doe
Mert Doe

Reputation: 578

For me unlink react-native-crop-image-picker and react-native-input-test-mask solved the issue.

Upvotes: -1

Cory
Cory

Reputation: 351

It’s because you are using a custom framework so you need to put it inside the Embedded Binaries in the section General. Select the frameworks NOT the bundle, Unselect Copy items if it was and select Create groups.

Steps screenshoted

Enjoy !

Upvotes: 5

Related Questions