我正在尝试在these instructions之后为iPhone使用Soundcloud API包装器,现在我收到此错误:
target specifies product type 'com.apple.product-type.framework', but there's no such product type for the 'iphoneos' platform
关于如何解决这个问题的任何想法?
答案 0 :(得分:3)
SoundCloud API有两个产品:
SoundCloudAPI.framework
(适用于Mac OS X的框架)libSoundCloudAPI.a
(适用于iOS的静态库)如果您要为iOS构建应用,则需要将libSoundCloudAPI.a 仅添加为直接依赖项。您已将框架添加为依赖项,这就是您收到此错误的原因。