目标指定产品类型“com.apple.product-type.framework”

发布于 2024-11-10 16:09:54 字数 270 浏览 3 评论 0原文

我正在尝试按照这些说明使用适用于 iPhone 的 Soundcloud API 包装器,现在我收到此错误:

目标指定产品类型“com.apple.product-type.framework”,但“iphoneos”平台没有此类产品类型

如何解决此问题的任何想法吗?

I'm trying to use a Soundcloud API wrapper for the iPhone following these instructions and now I'm getting this error:

target specifies product type 'com.apple.product-type.framework', but there's no such product type for the 'iphoneos' platform

Any ideas on how to solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那小子欠揍 2024-11-17 16:09:54

SoundCloud API 有两个产品:

  • SoundCloudAPI.framework(一个框架,适用于 Mac OS X)
  • libSoundCloudAPI.a(一个静态库,适用于 iOS

)对于 iOS 应用程序,您需要添加 libSoundCloudAPI.a only 作为直接依赖项。您也将框架添加为依赖项,这就是您收到此错误的原因。

The SoundCloud API has two products:

  • SoundCloudAPI.framework (a framework, for Mac OS X)
  • libSoundCloudAPI.a (a static library, for iOS)

If you're building an app for iOS you need to add libSoundCloudAPI.a only as a direct dependency. You've added the framework as a dependency too, which is why you're getting this error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文