0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CocoaPods導入 framework not found FBSDKCoreKit への対処法

Posted at

問題点

Firebaseと連携させたFacebookログイン機能をもつアプリ実装中の出来事です。

CocoaPodsを導入しても、『おい、frameworkが見つからんぞ』
と4時間ほど怒られていたので、備忘録もかねて、記録しておきます。
間違い等あれば、ご指摘頂けると幸いです。

エラーの内容
ld: framework not found FBSDKCoreKit for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)

解決策

- Podfileのコメントアウト( platform :iOS,'13.4' )を解除した(明示的に記述した)。 - Project名 -> TARGETS -> Link Binary With Libraries -> +ボタンから、使用したいframeworkを明示的に取り込む。

参考資料

- https://guides.cocoapods.org/syntax/podfile.html#platform - https://ja.coder.work/so/ios/1813234 - https://stackoverflow.com/questions/30663180/no-such-module-parse
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?