线程1:信号SIGABRT

时间:2017-01-26 17:19:46

标签: sdk swift3 adobe ios-simulator

当我为Xcode项目运行模拟时出现上述错误 这出现在O__abort_with_payload文件

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    

错误出现在“ - >&gt; 0x10aae6702&lt; + 10&gt;:jae 0x10aae670c;&lt; + 20&gt;”

控制台上还有一条消息

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

我安装了'AdobeCreativeSDKCore'和'AdobeCreativeSDKimages'作为框架,项目已经构建但错误出现了

podfile

在另一个场合,我还尝试在我的主项目文件中手动包含Frameworks,并使用桥接头文件来桥接它。

SDK in project files

3 个答案:

答案 0 :(得分:5)

这是因为您正在使用自定义框架,因此您需要将它放在常规部分的嵌入式二进制文件中。选择框架而不是捆绑包,取消选择复制项目(如果是),然后选择创建组。

Steps screenshoted

享受!

答案 1 :(得分:0)

对我来说,取消链接react-native-crop-image-picker和react-native-input-test-mask即可解决问题。

答案 2 :(得分:0)

*确保

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